Is Quantum Search Practical?

Total Page:16

File Type:pdf, Size:1020Kb

Is Quantum Search Practical? Q UANTUM C OMPUTING IS QUANTUM SEARCH PRACTICAL? Gauging a quantum algorithm’s practical significance requires weighing it against the best conventional techniques applied to useful instances of the same problem. The authors show that several commonly suggested applications of Grover’s quantum search algorithm fail to offer computational improvements over the best conventional algorithms. ome researchers suggest achieving mas- polynomial-time algorithm for number factoring sive speedups in computing by exploiting is known, and the security of the RSA code used quantum-mechanical effects such as su- on the Internet relies on this problem’s difficulty. perposition (quantum parallelism) and If a large and error-tolerant quantum computer Sentanglement.1 A quantum algorithm typically were available today, running Shor’s algorithm on consists of applying quantum gates to quantum it could compromise e-commerce. states, but because the input to the algorithm Lov Grover’s quantum search algorithm is also might be normal classical bits (or nonquantum), widely studied. It must compete with advanced it only affects the selection of quantum gates. Af- classical search techniques in applications that use ter all the gates are applied, quantum measure- parallel processing3 or exploit problem structure, ment is performed, producing the algorithm’s often implicitly. Despite its promise, though, it is nonquantum output. Deutsch’s algorithm, for in- by no means clear whether, or how soon, quantum stance, solves a certain artificial problem in fewer computing methods will offer better performance steps than any classical (nonquantum) algorithm, in useful applications.4 Traditional complexity and its relative speedup grows with the problem analysis of Grover’s algorithm doesn’t consider the size. However, Charles Bennett and his col- complexity of processing the so-called oracle leagues2 have shown that quantum algorithms are queries—that is, certain questions with yes or no unlikely to solve NP-complete problems in poly- answers. The query process is simply treated as a nomial time, although more modest speedups re- black box, thus making Grover’s algorithm appeal- main possible. Peter Shor designed a fast (poly- ing because it needs fewer queries than classical nomial-time) quantum algorithm for number search. However, with sufficiently time-consuming factoring—a key problem in cryptography that query processing, Grover’s algorithm can become isn’t believed to be NP-complete. No classical nearly as slow as a simple (exhaustive) classical search. In this article, we identify requirements for 1521-9615/05/$20.00 © 2005 IEEE Grover’s algorithm to be useful in practice: Copublished by the IEEE CS and the AIP GEORGE F. V IAMONTES, IGOR L. MARKOV, AND JOHN P. H AYES 1. A search application S where classical meth- University of Michigan ods don’t provide sufficient scalability. 2. An instantiation Q(S) of Grover’s search for 22 COMPUTING IN SCIENCE & ENGINEERING Grover’s Quantum Search Algorithm evaluated on a superposition of all database items. Addi- rover’s quantum algorithm searches for a subset of tionally, converting classical search criteria to quantum cir- Gitems in an unstructured set of N items.1 The algo- cuits often entails a moderate overhead, and the quantum rithm incorporates the search criteria in the form of a black- predicate’s complexity can offset the reduction in the num- box predicate that can be evaluated on any items in the ber of queries. set. The complexity of this evaluation (query) varies de- Figure A shows a high-level circuit representation of pending on the search criteria. With conventional algo- Grover’s algorithm. (See related research2,3 for more de- rithms, searching an unstructured set of N items requires tailed circuits.) The algorithm’s first step is to initialize ⑁(N) queries in the worst case. In the quantum domain, log(N) qubits, each with a value of |0ñ. These qubits are however, Grover’s algorithm can perform unstructured then placed into an equal superposition of all values from 0 search by making only O(N ) queries, a quadratic to N – 1 (encoded in binary) by applying one Hadamard speedup over the classical case. This improvement is con- gate on each input qubit. Because the superposition con- tingent on the assumption that the search predicate can be continued on p. 24 R iterations |0 Iteratively increase the . Measure qubits to Create an equal probability amplitudes log(N) . retrieve one of the superposition of of index states which qubits matching indices . indices to N items match the search criteria probabilistically |0 Workspace qubits Black-box Predicate: Is f(x) = 1? Search criteria Repeat to find multiple matching indices Figure A. A high-level circuit depiction of Grover’s quantum search algorithm. S with an asymptotic worst-case runtime, a given criterion. (See the “Grover’s Quantum which is less than that of any classical algo- Search Algorithm” sidebar for a more detailed de- rithm C(S) for S. scription of this algorithm and its implementa- 3. A Q(S) with an actual runtime for practical tion.) For any N-element database, it takes instances of S, which is less than that of any ~NM/ evaluations of the search criterion C(S). (queries to an oracle) on database elements, whereas classical algorithms provably need at least Yet, we also show that real-life database applications ~N evaluations for some inputs. rarely satisfy these requirements. We also describe a To search a (large) database used in a particular simulation methodology for evaluating potential application S, Grover’s algorithm must be supplied speedups of quantum computation for specific in- with two different kinds of inputs that depend on stances of S. We demonstrate that search problems S: often contain a great deal of structure, which sug- gests several directions for future research. · the database, including its read-access mech- anism, and Quantum Search · the search criteria, Grover’s quantum algorithm1,5,6 searches an un- structured database to find M records that satisfy each of which is specified by a black-box predicate MAY/JUNE 2005 23 continued from p. 23 ⎢π ⎥ tains bit strings, they’re thought of as indices to the N items ⎢ arcsin() M / N ⎥ R = rather than as the items themselves. ⎢ 4 ⎥ . ⎣⎢ ⎦⎥ The next step is to iteratively increase the probability am- plitudes of those indices in the superposition that match Grover’s algorithm also exhibits a periodic behavior, and af- the search criteria. The key component of each iteration is ter the amplitudes of sought elements peak, they start de- querying the black-box predicate. We can view the predi- creasing. cate abstractly as a function f(x) that returns 1 if the index x In the final step, quantum measurement is applied to matches the search criteria and 0 otherwise. Assuming that each of the log(N) qubits, producing a single bit string. The the predicate can be evaluated on the superposition of in- larger a bit string’s amplitude, the more likely the bit string dices, a single query then evaluates the predicate on all in- is to be observed. dices simultaneously. In conjunction with extra gates and When M items match the search criteria in a particular qubits (or workspace qubits), the indices for which f(x) = 1 search problem, then Grover’s algorithm produces one of can be marked by rotating their phases by ␲ radians. To them. Each item is equally likely to appear because the in- capitalize on this distinction, additional gates are applied to version about the mean process increases the probability increase the probability amplitudes of marked indices and amplitudes of matching items equally. If all such items must decrease the probability amplitudes of unmarked indices. be found, Grover’s algorithm might have to be repeated Mathematically, this transformation is a form of inversion more than M times, potentially returning some items more about the mean. It can be illustrated on sample input than once. On the other hand, classical deterministic search {–1/2, 1/2, 1/2, 1/2} with mean 1/4, where inversion about techniques avoid such duplication and might be more suit- mean produces {1, 0, 0, 0}. Both vectors in the example able in applications in which M is a significant fraction of N. have norm 1. In general, the inversion about mean is a uni- tary transformation. One of Grover’s insights was that it can References be implemented with fairly small quantum circuits. 1. L.K. Grover, “Quantum Mechanics Helps in Searching for a Needle in a In the case in which only one element out of N satisfies Haystack,” Physical Rev. Letters, vol. 79, no. 2, 1997, pp. 325– 328. the search criterion, each iteration of Grover’s algorithm in- 2. M.A. Nielsen and I.L. Chuang, Quantum Computation and Quantum In- creases the amplitude of this state by approximately formation, Cambridge Univ. Press, 2000. O(1/N ). Therefore, approximately N iterations are re- 3. G.F. Viamontes, I.L. Markov, and J.P. Hayes, “More Efficient Gate-Level quired to maximize the probability that a quantum mea- Simulation of Quantum Circuits,” Quantum Information Processing, vol. surement will yield the sought index (bit string). For the 2, no. 5, 2003, pp. 347–380. more general case with M elements satisfying the search 4. M. Boyer et al., “Tight Bounds on Quantum Searching,” Fortschritte der criteria, the optimal number of iterations4 is Physik, vol. 46, no. 4–5, 1998, pp. 493–505. or oracle p(x) that can be evaluated on any record x dex. of the database. The algorithm then looks for an x Researchers are aware of several variants of such that p(x) = 1. In this context, x can be ad- Grover’s algorithm, including those based on quan- dressed by a k bit string, and the database can con- tum circuits and different forms of adiabatic evolu- tain up to N = 2k records.
Recommended publications
  • Key Concepts for Future QIS Learners Workshop Output Published Online May 13, 2020
    Key Concepts for Future QIS Learners Workshop output published online May 13, 2020 Background and Overview On behalf of the Interagency Working Group on Workforce, Industry and Infrastructure, under the NSTC Subcommittee on Quantum Information Science (QIS), the National Science Foundation invited 25 researchers and educators to come together to deliberate on defining a core set of key concepts for future QIS learners that could provide a starting point for further curricular and educator development activities. The deliberative group included university and industry researchers, secondary school and college educators, and representatives from educational and professional organizations. The workshop participants focused on identifying concepts that could, with additional supporting resources, help prepare secondary school students to engage with QIS and provide possible pathways for broader public engagement. This workshop report identifies a set of nine Key Concepts. Each Concept is introduced with a concise overall statement, followed by a few important fundamentals. Connections to current and future technologies are included, providing relevance and context. The first Key Concept defines the field as a whole. Concepts 2-6 introduce ideas that are necessary for building an understanding of quantum information science and its applications. Concepts 7-9 provide short explanations of critical areas of study within QIS: quantum computing, quantum communication and quantum sensing. The Key Concepts are not intended to be an introductory guide to quantum information science, but rather provide a framework for future expansion and adaptation for students at different levels in computer science, mathematics, physics, and chemistry courses. As such, it is expected that educators and other community stakeholders may not yet have a working knowledge of content covered in the Key Concepts.
    [Show full text]
  • Quantum Computing: Principles and Applications
    Journal of International Technology and Information Management Volume 29 Issue 2 Article 3 2020 Quantum Computing: Principles and Applications Yoshito Kanamori University of Alaska Anchorage, [email protected] Seong-Moo Yoo University of Alabama in Huntsville, [email protected] Follow this and additional works at: https://scholarworks.lib.csusb.edu/jitim Part of the Communication Technology and New Media Commons, Computer and Systems Architecture Commons, Information Security Commons, Management Information Systems Commons, Science and Technology Studies Commons, Technology and Innovation Commons, and the Theory and Algorithms Commons Recommended Citation Kanamori, Yoshito and Yoo, Seong-Moo (2020) "Quantum Computing: Principles and Applications," Journal of International Technology and Information Management: Vol. 29 : Iss. 2 , Article 3. Available at: https://scholarworks.lib.csusb.edu/jitim/vol29/iss2/3 This Article is brought to you for free and open access by CSUSB ScholarWorks. It has been accepted for inclusion in Journal of International Technology and Information Management by an authorized editor of CSUSB ScholarWorks. For more information, please contact [email protected]. Journal of International Technology and Information Management Volume 29, Number 2 2020 Quantum Computing: Principles and Applications Yoshito Kanamori (University of Alaska Anchorage) Seong-Moo Yoo (University of Alabama in Huntsville) ABSTRACT The development of quantum computers over the past few years is one of the most significant advancements in the history of quantum computing. D-Wave quantum computer has been available for more than eight years. IBM has made its quantum computer accessible via its cloud service. Also, Microsoft, Google, Intel, and NASA have been heavily investing in the development of quantum computers and their applications.
    [Show full text]
  • Quantum Algorithms
    An Introduction to Quantum Algorithms Emma Strubell COS498 { Chawathe Spring 2011 An Introduction to Quantum Algorithms Contents Contents 1 What are quantum algorithms? 3 1.1 Background . .3 1.2 Caveats . .4 2 Mathematical representation 5 2.1 Fundamental differences . .5 2.2 Hilbert spaces and Dirac notation . .6 2.3 The qubit . .9 2.4 Quantum registers . 11 2.5 Quantum logic gates . 12 2.6 Computational complexity . 19 3 Grover's Algorithm 20 3.1 Quantum search . 20 3.2 Grover's algorithm: How it works . 22 3.3 Grover's algorithm: Worked example . 24 4 Simon's Algorithm 28 4.1 Black-box period finding . 28 4.2 Simon's algorithm: How it works . 29 4.3 Simon's Algorithm: Worked example . 32 5 Conclusion 33 References 34 Page 2 of 35 An Introduction to Quantum Algorithms 1. What are quantum algorithms? 1 What are quantum algorithms? 1.1 Background The idea of a quantum computer was first proposed in 1981 by Nobel laureate Richard Feynman, who pointed out that accurately and efficiently simulating quantum mechanical systems would be impossible on a classical computer, but that a new kind of machine, a computer itself \built of quantum mechanical elements which obey quantum mechanical laws" [1], might one day perform efficient simulations of quantum systems. Classical computers are inherently unable to simulate such a system using sub-exponential time and space complexity due to the exponential growth of the amount of data required to completely represent a quantum system. Quantum computers, on the other hand, exploit the unique, non-classical properties of the quantum systems from which they are built, allowing them to process exponentially large quantities of information in only polynomial time.
    [Show full text]
  • On Counterfactual Computation
    On Counterfactual Computation Paolo Zuliani Department of Computer Science Princeton University Princeton, NJ 08544, USA [email protected] Abstract In this paper we pursue two targets. First, showing that counterfactual computa- tion can be rigorously formalised as a quantum computation. Second, presenting a new counterfactual protocol which improve previous protocols. Counterfactual computation makes use of quantum mechanics' peculiarities to infer the outcome of a quantum com- putation without running that computation. In this paper, we first cast the definition of counterfactual protocol in the quantum programming language qGCL, thereby show- ing that counterfactual computation is an example of quantum computation. Next, we formalise in qGCL a probabilistic extension of counterfactual protocol for decision r problems (whose result is either 0 or 1). If pG denotes for protocol G the probability of obtaining result r \for free" (i.e. without running the quantum computer), then we 0 1 show that for any probabilistic protocol pG + pG ≤ 1 (as for non-probabilistic pro- 0 1 tocols). Finally, we present a probabilistic protocol K which satisfies pK + pK = 1, thus being optimal. Furthermore, the result is attained with a single insertion of the quantum computer, while it has been shown that a non-probabilistic protocol would obtain the result only in the limit (i.e. with an infinite number of insertions). 1 Introduction Counterfactuality is the fact that the sole possibility for an event to occur allows one to gain some information about that event, even though it did not actually occur. Counterfac- tual computation [4, 5] uses peculiar features of quantum mechanics to infer counterfactual statements about the result of a computation.
    [Show full text]
  • Superconducting Transmon Machines
    Quantum Computing Hardware Platforms: Superconducting Transmon Machines • CSC591/ECE592 – Quantum Computing • Fall 2020 • Professor Patrick Dreher • Research Professor, Department of Computer Science • Chief Scientist, NC State IBM Q Hub 3 November 2020 Superconducting Transmon Quantum Computers 1 5 November 2020 Patrick Dreher Outline • Introduction – Digital versus Quantum Computation • Conceptual design for superconducting transmon QC hardware platforms • Construction of qubits with electronic circuits • Superconductivity • Josephson junction and nonlinear LC circuits • Transmon design with example IBM chip layout • Working with a superconducting transmon hardware platform • Quantum Mechanics of Two State Systems - Rabi oscillations • Performance characteristics of superconducting transmon hardware • Construct the basic CNOT gate • Entangled transmons and controlled gates • Appendices • References • Quantum mechanical solution of the 2 level system 3 November 2020 Superconducting Transmon Quantum Computers 2 5 November 2020 Patrick Dreher Digital Computation Hardware Platforms Based on a Base2 Mathematics • Design principle for a digital computer is built on base2 mathematics • Identify voltage changes in electrical circuits that map base2 math into a “zero” or “one” corresponding to an on/off state • Build electrical circuits from simple on/off states that apply these basic rules to construct digital computers 3 November 2020 Superconducting Transmon Quantum Computers 3 5 November 2020 Patrick Dreher From Previous Lectures It was
    [Show full text]
  • Quantum Distributed Computing Applied to Grover's Search Algorithm
    Quantum Distributed Computing Applied to Grover’s Search Algorithm B Debabrata Goswami( ) Indian Institute of Technology Kanpur, Kanpur 208016, India [email protected] Abstract. Grover’s Algorithm√ finds a unique element in an unsorted stock of N-elements in N queries through quantum search. A single- query solution can also be designed, but with an overhead of N log2 N steps to prepare and post process the query, which is worse than the classical N/2 queries. We show here that by distributing the computing load on a set of quantum computers, we achieve better information the- oretic bounds and relaxed space scaling. Howsoever small one quantum computing node is, by virtue of networking and sharing of data, we can virtually work with a sufficiently large qubit space. Keywords: Distributed quantum computing · Grover’s quantum search · Optical networking 1 Introduction Today’s digital computer is the cumulation of technological advancements that began with the mechanical clockwork ideas of Charles Babbage in the nineteenth century. However, it is surprising that logically, the high speed modern day com- puter is not fundamentally different from its gigantic 30 ton ancestors, the first of which were built in 1941 by the German engineer Konrad Zuse. Although comput- ers nowadays have become more compact and considerably faster in their perfor- mance, their primary execution methodology has remained the same, which is to derive a computationally useful result via the manipulation and interpretation of encoded bits. The underlying mathematical principles are indistinguishable from those outlined in the visionary Church-Turing hypothesis, proposed in the year 1936, much ahead of the birth of the first computer.
    [Show full text]
  • Quantum Computing : a Gentle Introduction / Eleanor Rieffel and Wolfgang Polak
    QUANTUM COMPUTING A Gentle Introduction Eleanor Rieffel and Wolfgang Polak The MIT Press Cambridge, Massachusetts London, England ©2011 Massachusetts Institute of Technology All rights reserved. No part of this book may be reproduced in any form by any electronic or mechanical means (including photocopying, recording, or information storage and retrieval) without permission in writing from the publisher. For information about special quantity discounts, please email [email protected] This book was set in Syntax and Times Roman by Westchester Book Group. Printed and bound in the United States of America. Library of Congress Cataloging-in-Publication Data Rieffel, Eleanor, 1965– Quantum computing : a gentle introduction / Eleanor Rieffel and Wolfgang Polak. p. cm.—(Scientific and engineering computation) Includes bibliographical references and index. ISBN 978-0-262-01506-6 (hardcover : alk. paper) 1. Quantum computers. 2. Quantum theory. I. Polak, Wolfgang, 1950– II. Title. QA76.889.R54 2011 004.1—dc22 2010022682 10987654321 Contents Preface xi 1 Introduction 1 I QUANTUM BUILDING BLOCKS 7 2 Single-Qubit Quantum Systems 9 2.1 The Quantum Mechanics of Photon Polarization 9 2.1.1 A Simple Experiment 10 2.1.2 A Quantum Explanation 11 2.2 Single Quantum Bits 13 2.3 Single-Qubit Measurement 16 2.4 A Quantum Key Distribution Protocol 18 2.5 The State Space of a Single-Qubit System 21 2.5.1 Relative Phases versus Global Phases 21 2.5.2 Geometric Views of the State Space of a Single Qubit 23 2.5.3 Comments on General Quantum State Spaces
    [Show full text]
  • Conceptual Framework for Quantum Affective Computing and Its Use in Fusion of Multi-Robot Emotions
    electronics Article Conceptual Framework for Quantum Affective Computing and Its Use in Fusion of Multi-Robot Emotions Fei Yan 1 , Abdullah M. Iliyasu 2,3,∗ and Kaoru Hirota 3,4 1 School of Computer Science and Technology, Changchun University of Science and Technology, Changchun 130022, China; [email protected] 2 College of Engineering, Prince Sattam Bin Abdulaziz University, Al-Kharj 11942, Saudi Arabia 3 School of Computing, Tokyo Institute of Technology, Yokohama 226-8502, Japan; [email protected] 4 School of Automation, Beijing Institute of Technology, Beijing 100081, China * Correspondence: [email protected] Abstract: This study presents a modest attempt to interpret, formulate, and manipulate the emotion of robots within the precepts of quantum mechanics. Our proposed framework encodes emotion information as a superposition state, whilst unitary operators are used to manipulate the transition of emotion states which are subsequently recovered via appropriate quantum measurement operations. The framework described provides essential steps towards exploiting the potency of quantum mechanics in a quantum affective computing paradigm. Further, the emotions of multi-robots in a specified communication scenario are fused using quantum entanglement, thereby reducing the number of qubits required to capture the emotion states of all the robots in the environment, and therefore fewer quantum gates are needed to transform the emotion of all or part of the robots from one state to another. In addition to the mathematical rigours expected of the proposed framework, we present a few simulation-based demonstrations to illustrate its feasibility and effectiveness. This exposition is an important step in the transition of formulations of emotional intelligence to the quantum era.
    [Show full text]
  • A Game Plan for Quantum Computing
    February 2020 A game plan for quantum computing Thanks to technology advances, some companies may reap real gains from quantum computing within five years. What should you do to prepare for this next big wave in computers? by Alexandre Ménard, Ivan Ostojic, Mark Patel, and Daniel Volz Pharmaceutical companies have an abiding interest in enzymes. These proteins catalyze all kinds of biochemical interactions, often by targeting a single type of molecule with great precision. Harnessing the power of enzymes may help alleviate the major diseases of our time. Unfortunately, we don’t know the exact molecular structure of most enzymes. In principle, chemists could use computers to model these molecules in order to identify how the molecules work, but enzymes are such complex structures that most are impossible for classical computers to model. A sufficiently powerful quantum computer, however, could accurately predict in a matter of hours the properties, structure, and reactivity of such substances—an advance that could revolutionize drug development and usher in a new era in healthcare. Quantum computers have the potential to resolve problems of this complexity and magnitude across many different industries and applications, including finance, transportation, chemicals, and cybersecurity. Solving the impossible in a few hours of computing time, finding answers to problems that have bedeviled science and society for years, unlocking unprecedented capabilities for businesses of all kinds—those are the promises of quantum computing, a fundamentally different approach to computation. None of this will happen overnight. In fact, many companies and businesses won’t be able to reap significant value from quantum computing for a decade or more, although a few will see gains in the next five years.
    [Show full text]
  • Quantum Computational Complexity Theory Is to Un- Derstand the Implications of Quantum Physics to Computational Complexity Theory
    Quantum Computational Complexity John Watrous Institute for Quantum Computing and School of Computer Science University of Waterloo, Waterloo, Ontario, Canada. Article outline I. Definition of the subject and its importance II. Introduction III. The quantum circuit model IV. Polynomial-time quantum computations V. Quantum proofs VI. Quantum interactive proof systems VII. Other selected notions in quantum complexity VIII. Future directions IX. References Glossary Quantum circuit. A quantum circuit is an acyclic network of quantum gates connected by wires: the gates represent quantum operations and the wires represent the qubits on which these operations are performed. The quantum circuit model is the most commonly studied model of quantum computation. Quantum complexity class. A quantum complexity class is a collection of computational problems that are solvable by a cho- sen quantum computational model that obeys certain resource constraints. For example, BQP is the quantum complexity class of all decision problems that can be solved in polynomial time by a arXiv:0804.3401v1 [quant-ph] 21 Apr 2008 quantum computer. Quantum proof. A quantum proof is a quantum state that plays the role of a witness or certificate to a quan- tum computer that runs a verification procedure. The quantum complexity class QMA is defined by this notion: it includes all decision problems whose yes-instances are efficiently verifiable by means of quantum proofs. Quantum interactive proof system. A quantum interactive proof system is an interaction between a verifier and one or more provers, involving the processing and exchange of quantum information, whereby the provers attempt to convince the verifier of the answer to some computational problem.
    [Show full text]
  • Future Directions of Quantum Information Processing a Workshop on the Emerging Science and Technology of Quantum Computation, Communication, and Measurement
    Future Directions of Quantum Information Processing A Workshop on the Emerging Science and Technology of Quantum Computation, Communication, and Measurement Seth Lloyd, Massachusetts Institute of Technology Dirk Englund, Massachusetts Institute of Technology Workshop funded by the Basic Research Office, Office of the Assistant Prepared by Kate Klemic Ph.D. and Jeremy Zeigler Secretary of Defense for Research & Engineering. This report does not Virginia Tech Applied Research Corporation necessarily reflect the policies or positions of the US Department of Defense Preface Over the past century, science and technology have brought remarkable new capabilities to all sectors of the economy; from telecommunications, energy, and electronics to medicine, transportation and defense. Technologies that were fantasy decades ago, such as the internet and mobile devices, now inform the way we live, work, and interact with our environment. Key to this technological progress is the capacity of the global basic research community to create new knowledge and to develop new insights in science, technology, and engineering. Understanding the trajectories of this fundamental research, within the context of global challenges, empowers stakeholders to identify and seize potential opportunities. The Future Directions Workshop series, sponsored by the Basic Research Office of the Office of the Assistant Secretary of Defense for Research and Engineering, seeks to examine emerging research and engineering areas that are most likely to transform future technology capabilities. These workshops gather distinguished academic and industry researchers from the world’s top research institutions to engage in an interactive dialogue about the promises and challenges of these emerging basic research areas and how they could impact future capabilities.
    [Show full text]
  • What to Expect in the Emerging Age of Quantum Computing by Nicholas Smith and Ryan Mckenney (April 21, 2020, 5:23 PM EDT)
    Portfolio Media. Inc. | 111 West 19th Street, 5th Floor | New York, NY 10011 | www.law360.com Phone: +1 646 783 7100 | Fax: +1 646 783 7161 | [email protected] What To Expect In The Emerging Age Of Quantum Computing By Nicholas Smith and Ryan McKenney (April 21, 2020, 5:23 PM EDT) Once considered a scientific impossibility, quantum computing is now expected to have a far-reaching commercial impact thanks to an increase in investment and a myriad of new discoveries by physicists and computer scientists. Quantum computers have the potential to transform industries from auto manufacturing to pharmaceuticals to finance, but the technology has only recently moved from the laboratory to the commercial market. At the Consumer Electronics Show in Las Vegas in January, IBM Corp. announced it had struck partnerships with Daimler AG (the parent company of Mercedes-Benz) and Delta Air Lines Inc. to harness quantum computing to solve real-world issues for Nicholas Smith the two companies. Advancing electric vehicle batteries and improving route scheduling could be some of the first commercial applications for the nascent technology. Quantum Computing 101 Quantum computing marries the properties of quantum physics with advanced computer science, creating a potent combination that is immensely more powerful than classical computing. While classical computer algorithms scale exponentially, quantum computers scale polynomially. This leads to huge advantages in time, Ryan McKenney accuracy, and processing capability. Ordinary classical computers perform calculations using “bits” of information in the form of 0s and 1s, while quantum computers use quantum bits, or qubits, that can simultaneously exist as both a 0 and a 1.
    [Show full text]