Unitary Decomposition Implemented in the Openql Programming Language for Quantum Computation A.M

Total Page:16

File Type:pdf, Size:1020Kb

Unitary Decomposition Implemented in the Openql Programming Language for Quantum Computation A.M Unitary Decomposition Implemented in the OpenQL programming language for quantum computation A.M. Krol September 13th 36 Electrical Engineering, Mathematics and Computer Sciences LB 01.010 Snijderszaal Unitary Decomposition Implemented in the OpenQL programming language for quantum computation by A.M. Krol to obtain the degree of Master of Science at the Delft University of Technology, to be defended publicly on Friday September 13, 2019 at 15:00. Student number: 4292391 Project duration: November 20, 2018 – September 13, 2019 Thesis committee: Prof. dr. ir. K. Bertels, TU Delft, supervisor Dr. I. Ashraf, TU Delft Dr. M. Möller, TU Delft Dr. Z. Al-Ars TU Delft An electronic version of this thesis is available at http://repository.tudelft.nl/. Preface In this thesis, I explain my implementation of Unitary Decomposition in OpenQL. Unitary Decomposition is an algorithm for translating a unitary matrix into many small unitary matrices, which correspond to a circuit that can be executed on a quantum computer. It is implemented in the quantum programming framework of the QCA-group at TU Delft: OpenQL, a library for Python and C++. Unitary Decomposition is a necessary part in Quantum Associative Memory, an algorithm used in Quantum Genome Sequenc- ing. The implementation is faster than other known implementations, and generates 3 ∗ 2 ∗ (2 − 1) rotation gates for an n-qubit input gate. This is not the least-known nor the theoretical minimum amount, and there are some optimizations that can still be done to make it closer to these numbers. I would like to thank my supervisor, Prof. Koen Bertels, for the great supervision and insightful feedback. And my thesis committee member, Dr. Imran Ashraf for the great answers and polite emails as response to my questions about OpenQL and QX. My other committee members, Dr. Matthias Möller and Dr. Zaid Al-Ars, I am also thankful for. I would also like to thank Aritra Sarkar, for supplying this assignment and all the good talks and useful insights and feedback. Finally, my office-mates Amitabh Yadav, for sharing the Master-thesis life and Neil Eelman, for all the great procrastination and interesting talks about everything from the history of cabbage to the weirdness of the English and Dutch languages. And everyone else in the Quantum and Computer Engineering department, who have been very nice, helpful and insightful in the ten months that I have worked here. A.M. Krol Non-student email: Delft, September 2019 iii Contents 1 Introduction 1 1.1 Problem statement and research question . 1 1.2 A ”simple” decomposition example . 1 1.3 The need for unitary decomposition . 5 1.4 Existing implementations. 6 1.5 Scope of the thesis . 6 1.6 Structure of the thesis . 7 2 Background and related works 9 2.1 Introduction and Notation . 9 2.1.1 Qubits . 9 2.1.2 Gates . 10 2.1.3 Unitary matrices . 11 2.2 Quantum Accelerator Applications. 11 2.2.1 Quantum annealing . 11 2.2.2 Gate-based computation . 12 2.3 Quantum Annealing: example of a Quantum accelerator . 12 2.3.1 Fujitsu digital annealer . 13 2.3.2 D-Wave quantum annealing . 13 2.4 Gate-based quantum computing. 14 2.4.1 Rigetti . 14 2.4.2 IBM and Qiskit . 14 2.4.3 Intel: superconducting and spin-qubit quantum processor chips. 15 2.4.4 Alibaba: Cloud Quantum Computer . 15 2.5 XanaduAI quantum machine learning . 15 2.6 Quantum Software . 16 2.6.1 Qubiter . 16 2.7 Conclusion . 16 3 How does a compiler work? 21 3.1 What is a compiler? . 21 3.2 Front End . 21 3.3 Parsing . 22 3.3.1 Lexical syntax. 22 3.3.2 Context-free syntax. 22 3.4 Type Checking . 23 3.4.1 Name resolution . 23 3.4.2 Types . 25 3.5 Code Generation . 25 3.5.1 Register Allocation . 25 3.5.2 Loops . 26 3.6 Back end . 26 3.6.1 Memory allocation and garbage collection . 27 3.6.2 Instruction selection . 27 v vi Contents 3.7 Optimization . 27 3.7.1 Loop optimizations . 28 3.7.2 Reusing repeating code . 28 3.7.3 Dead code elimination . 28 3.7.4 Loop unrolling. 28 3.7.5 Inlining . 29 3.7.6 Combining and removing instructions . 29 3.8 Different kinds of compilers . 29 3.8.1 Source-to-source compilers . 29 3.8.2 Machine code compilers . 29 3.8.3 Just-In-Time compilers . 29 3.8.4 Hardware compilers . 29 4 OpenQL 31 4.1 Quantum computers as accelerators . 31 4.2 An OpenQL program . 32 4.3 Components of an OpenQL application . 33 4.4 Compilation steps . 34 4.4.1 Decomposition . 34 4.4.2 Optimization . 35 4.4.3 Scheduling . 37 4.4.4 Mapping. 37 4.4.5 QASM Compilation . 37 4.4.6 Compilation to specific back-ends . 37 4.5 QASM . 37 4.6 Compiler structure . 38 4.6.1 openql/openql.h. 39 4.6.2 The definition of a gate . 40 4.6.3 Compilation . 40 5 Quantum Genome Sequencing 41 5.1 Genome Sequencing. 41 5.2 Quantum algorithms for genome sequencing . 43 5.2.1 Grover’s search. 43 5.2.2 Conditional Oracle call . 43 5.2.3 Quantum phone directory . 44 5.2.4 Quantum associative memory . 44 6 Unitary Decomposition Implementation 45 6.1 Advantages and disadvantages of unitary decomposition . 45 6.2 Unitary gates . 46 6.3 Quantum Logic Gates . 47 6.4 Special gates . 48 6.5 Comparison of different algorithms for unitary decomposition . 49 6.5.1 QR decomposition: Efficient decomposition of Quantum Gates . 49 6.5.2 QR decomposition (Theorem 9 from [39]). 49 6.5.3 CSD: Quantum circuits for general multi-qubit gates . 49 6.5.4 CSD and NQ: Decomposition of general quantum gates. 49 6.5.5 Theoretical lower bounds . 49 6.6 One qubit gate: ZYZ decomposition. ..
Recommended publications
  • A Tutorial Introduction to Quantum Circuit Programming in Dependently Typed Proto-Quipper
    A tutorial introduction to quantum circuit programming in dependently typed Proto-Quipper Peng Fu1, Kohei Kishida2, Neil J. Ross1, and Peter Selinger1 1 Dalhousie University, Halifax, NS, Canada ffrank-fu,neil.jr.ross,[email protected] 2 University of Illinois, Urbana-Champaign, IL, U.S.A. [email protected] Abstract. We introduce dependently typed Proto-Quipper, or Proto- Quipper-D for short, an experimental quantum circuit programming lan- guage with linear dependent types. We give several examples to illustrate how linear dependent types can help in the construction of correct quan- tum circuits. Specifically, we show how dependent types enable program- ming families of circuits, and how dependent types solve the problem of type-safe uncomputation of garbage qubits. We also discuss other lan- guage features along the way. Keywords: Quantum programming languages · Linear dependent types · Proto-Quipper-D 1 Introduction Quantum computers can in principle outperform conventional computers at cer- tain crucial tasks that underlie modern computing infrastructures. Experimental quantum computing is in its early stages and existing devices are not yet suitable for practical computing. However, several groups of researchers, in both academia and industry, are now building quantum computers (see, e.g., [2,11,16]). Quan- tum computing also raises many challenging questions for the programming lan- guage community [17]: How should we design programming languages for quan- tum computation? How should we compile and optimize quantum programs? How should we test and verify quantum programs? How should we understand the semantics of quantum programming languages? In this paper, we focus on quantum circuit programming using the linear dependently typed functional language Proto-Quipper-D.
    [Show full text]
  • Introduction to Quantum Information and Computation
    Introduction to Quantum Information and Computation Steven M. Girvin ⃝c 2019, 2020 [Compiled: May 2, 2020] Contents 1 Introduction 1 1.1 Two-Slit Experiment, Interference and Measurements . 2 1.2 Bits and Qubits . 3 1.3 Stern-Gerlach experiment: the first qubit . 8 2 Introduction to Hilbert Space 16 2.1 Linear Operators on Hilbert Space . 18 2.2 Dirac Notation for Operators . 24 2.3 Orthonormal bases for electron spin states . 25 2.4 Rotations in Hilbert Space . 29 2.5 Hilbert Space and Operators for Multiple Spins . 38 3 Two-Qubit Gates and Entanglement 43 3.1 Introduction . 43 3.2 The CNOT Gate . 44 3.3 Bell Inequalities . 51 3.4 Quantum Dense Coding . 55 3.5 No-Cloning Theorem Revisited . 59 3.6 Quantum Teleportation . 60 3.7 YET TO DO: . 61 4 Quantum Error Correction 63 4.1 An advanced topic for the experts . 68 5 Yet To Do 71 i Chapter 1 Introduction By 1895 there seemed to be nothing left to do in physics except fill out a few details. Maxwell had unified electriciy, magnetism and optics with his theory of electromagnetic waves. Thermodynamics was hugely successful well before there was any deep understanding about the properties of atoms (or even certainty about their existence!) could make accurate predictions about the efficiency of the steam engines powering the industrial revolution. By 1895, statistical mechanics was well on its way to providing a microscopic basis in terms of the random motions of atoms to explain the macroscopic predictions of thermodynamics. However over the next decade, a few careful observers (e.g.
    [Show full text]
  • Arxiv:Quant-Ph/0504183V1 25 Apr 2005 † ∗ Elsae 1,1,1] Oee,I H Rcs Fmea- Is of Above the Process the Vandalized
    Deterministic Bell State Discrimination Manu Gupta1∗ and Prasanta K. Panigrahi2† 1 Jaypee Institute of Information Technology, Noida, 201 307, India 2 Physical Research Laboratory, Navrangpura, Ahmedabad, 380 009, India We make use of local operations with two ancilla bits to deterministically distinguish all the four Bell states, without affecting the quantum channel containing these Bell states. Entangled states play a key role in the transmission and processing of quantum information [1, 2]. Using en- tangled channel, an unknown state can be teleported [3] with local unitary operations, appropriate measurement and classical communication; one can achieve entangle- ment swapping through joint measurement on two en- tangled pairs [4]. Entanglement leads to increase in the capacity of the quantum information channel, known as quantum dense coding [5]. The bipartite, maximally en- FIG. 1: Diagram depicting the circuit for Bell state discrimi- tangled Bell states provide the most transparent illustra- nator. tion of these aspects, although three particle entangled states like GHZ and W states are beginning to be em- ployed for various purposes [6, 7]. satisfactory, where the Bell state is not required further Making use of single qubit operations and the in the quantum network. Controlled-NOT gates, one can produce various entan- We present in this letter, a scheme which discriminates gled states in a quantum network [1]. It may be of inter- all the four Bell states deterministically and is able to pre- est to know the type of entangled state that is present in serve these states for further use. As LOCC alone is in- a quantum network, at various stages of quantum compu- sufficient for this purpose, we will make use of two ancilla tation and cryptographic operations, without disturbing bits, along with the entangled channels.
    [Show full text]
  • Timelike Curves Can Increase Entanglement with LOCC Subhayan Roy Moulick & Prasanta K
    www.nature.com/scientificreports OPEN Timelike curves can increase entanglement with LOCC Subhayan Roy Moulick & Prasanta K. Panigrahi We study the nature of entanglement in presence of Deutschian closed timelike curves (D-CTCs) and Received: 10 March 2016 open timelike curves (OTCs) and find that existence of such physical systems in nature would allow us to Accepted: 05 October 2016 increase entanglement using local operations and classical communication (LOCC). This is otherwise in Published: 29 November 2016 direct contradiction with the fundamental definition of entanglement. We study this problem from the perspective of Bell state discrimination, and show how D-CTCs and OTCs can unambiguously distinguish between four Bell states with LOCC, that is otherwise known to be impossible. Entanglement and Closed Timelike Curves (CTC) are perhaps the most exclusive features in quantum mechanics and general theory of relativity (GTR) respectively. Interestingly, both theories, advocate nonlocality through them. While the existence of CTCs1 is still debated upon, there is no reason for them, to not exist according to GTR2,3. CTCs come as a solution to Einstein’s field equations, which is a classical theory itself. Seminal works due to Deutsch4, Lloyd et al.5, and Allen6 have successfully ported these solutions into the framework of quantum mechanics. The formulation due to Lloyd et al., through post-selected teleportation (P-CTCs) have been also experimentally verified7. The existence of CTCs has been disturbing to some physicists, due to the paradoxes, like the grandfather par- adox or the unproven theorem paradox, that arise due to them. Deutsch resolved such paradoxes by presenting a method for finding self-consistent solutions of CTC interactions.
    [Show full text]
  • A Principle Explanation of Bell State Entanglement: Conservation Per No Preferred Reference Frame
    A Principle Explanation of Bell State Entanglement: Conservation per No Preferred Reference Frame W.M. Stuckey∗ and Michael Silbersteiny z 26 September 2020 Abstract Many in quantum foundations seek a principle explanation of Bell state entanglement. While reconstructions of quantum mechanics (QM) have been produced, the community does not find them compelling. Herein we offer a principle explanation for Bell state entanglement, i.e., conser- vation per no preferred reference frame (NPRF), such that NPRF unifies Bell state entanglement with length contraction and time dilation from special relativity (SR). What makes this a principle explanation is that it's grounded directly in phenomenology, it is an adynamical and acausal explanation that involves adynamical global constraints as opposed to dy- namical laws or causal mechanisms, and it's unifying with respect to QM and SR. 1 Introduction Many physicists in quantum information theory (QIT) are calling for \clear physical principles" [Fuchs and Stacey, 2016] to account for quantum mechanics (QM). As [Hardy, 2016] points out, \The standard axioms of [quantum theory] are rather ad hoc. Where does this structure come from?" Fuchs points to the postulates of special relativity (SR) as an example of what QIT seeks for QM [Fuchs and Stacey, 2016] and SR is a principle theory [Felline, 2011]. That is, the postulates of SR are constraints offered without a corresponding constructive explanation. In what follows, [Einstein, 1919] explains the difference between the two: We can distinguish various kinds of theories in physics. Most of them are constructive. They attempt to build up a picture of the more complex phenomena out of the materials of a relatively simple ∗Department of Physics, Elizabethtown College, Elizabethtown, PA 17022, USA yDepartment of Philosophy, Elizabethtown College, Elizabethtown, PA 17022, USA zDepartment of Philosophy, University of Maryland, College Park, MD 20742, USA 1 formal scheme from which they start out.
    [Show full text]
  • The Statistical Interpretation of Entangled States B
    The Statistical Interpretation of Entangled States B. C. Sanctuary Department of Chemistry, McGill University 801 Sherbrooke Street W Montreal, PQ, H3A 2K6, Canada Abstract Entangled EPR spin pairs can be treated using the statistical ensemble interpretation of quantum mechanics. As such the singlet state results from an ensemble of spin pairs each with an arbitrary axis of quantization. This axis acts as a quantum mechanical hidden variable. If the spins lose coherence they disentangle into a mixed state. Whether or not the EPR spin pairs retain entanglement or disentangle, however, the statistical ensemble interpretation resolves the EPR paradox and gives a mechanism for quantum “teleportation” without the need for instantaneous action-at-a-distance. Keywords: Statistical ensemble, entanglement, disentanglement, quantum correlations, EPR paradox, Bell’s inequalities, quantum non-locality and locality, coincidence detection 1. Introduction The fundamental questions of quantum mechanics (QM) are rooted in the philosophical interpretation of the wave function1. At the time these were first debated, covering the fifty or so years following the formulation of QM, the arguments were based primarily on gedanken experiments2. Today the situation has changed with numerous experiments now possible that can guide us in our search for the true nature of the microscopic world, and how The Infamous Boundary3 to the macroscopic world is breached. The current view is based upon pivotal experiments, performed by Aspect4 showing that quantum mechanics is correct and Bell’s inequalities5 are violated. From this the non-local nature of QM became firmly entrenched in physics leading to other experiments, notably those demonstrating that non-locally is fundamental to quantum “teleportation”.
    [Show full text]
  • Introduction to Quantum Information Theory
    Introduction to Quantum Information Theory Carlos Palazuelos Instituto de Ciencias Matemáticas (ICMAT) [email protected] Madrid, Spain March 2013 Contents Chapter 1. A comment on these notes 3 Chapter 2. Postulates of quantum mechanics 5 1. Postulate I and Postulate II 5 2. Postulate III 7 3. Postulate IV 9 Chapter 3. Some basic results 13 1. No-cloning theorem 13 2. Quantum teleportation 14 3. Superdense coding 15 Chapter 4. The density operators formalism 17 1. Postulates of quantum mechanics: The density operators formalism 17 2. Partial trace 19 3. The Schmidt decomposition and purifications 20 4. Definition of quantum channel and its classical capacity 21 Chapter 5. Quantum nonlocality 25 1. Bell’s result: Correlations in EPR 25 2. Tsirelson’s theorem and Grothendieck’s theorem 27 Chapter 6. Some notions about classical information theory 33 1. Shannon’s noiseless channel coding theorem 33 2. Conditional entropy and Fano’s inequality 35 3. Shannon’s noisy channel coding theorem: Random coding 38 Chapter 7. Quantum Shannon Theory 45 1. Von Neumann entropy 45 2. Schumacher’s compression theorem 48 3. Accessible Information and Holevo bound 55 4. Classical capacity of a quantum channel 58 5. A final comment about the regularization 61 Bibliography 63 1 CHAPTER 1 A comment on these notes These notes were elaborated during the first semester of 2013, while I was preparing a course on quantum information theory as a subject for the PhD programme: Investigación Matemática at Universidad Complutense de Madrid. The aim of this work is to present an accessible introduction to some topics in the field of quantum information theory for those people who do not have any background on the field.
    [Show full text]
  • Quantum and Classical Correlations in Bell Three and Four Qubits, Related to Hilbert-Schmidt Decompositions
    Quantum and classical correlations in Bell three and four qubits, related to Hilbert-Schmidt decompositions Y. Ben-Aryeh Physics Department Technion-Israel Institute of Technology, Haifa, 32000, Israel E-mail: [email protected] ABSTRACT The present work studies quantum and classical correlations in 3-qubits and 4-qubits general Bell states, produced by operating with Bn Braid operators on the computational basis of states. The analogies between the general 3- qubits and 4-qubits Bell states and that of 2-qubits Bell states are discussed. The general Bell states are shown to be maximal entangled, i.e., with quantum correlations which are lost by tracing these states over one qubit, remaining only with classical correlations. The Hilbert–Schmidt (HS) decompositions for 3-qubits general Bell states are explored by using 63 parameters. The results are in agreement with concurrence and Peres-Horodecki criterion for the special cases of bipartite system. We show that by tracing 4-qubits general Bell state, which has quantum correlations, over one qubit we get a mixed state with only classical correlations. OCIS codes: (270.0270 ) Quantum Optics; 270.5585; Quantum information; 270.5565 (Quantum communications) 1. INTRODUCTION In the present paper we use a special representation for the group Bn introduced by Artin. 1,2 We develop n-qubits states in time by the Braid operators, operating on the pairs (1,2),(2,3),(3,4) etc., consequently in time. Each pair interaction is given by the R matrix satisfying also the Yang-Baxter equation. By performing such unitary interactions on a computational -basis of n-qubits states, 3,4 we will get n-qubits entangled orthonormal general Bell basis of states.
    [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]
  • Efficient and Exact Quantum Compression
    Efficient and Exact Quantum Compression a; ;1 b;2 John H. Reif ∗ , Sukhendu Chakraborty aDepartment of Computer Science, Duke University, Durham, NC 27708-0129 bDepartment of Computer Science, Duke University, Durham, NC 27708-0129 Abstract We present a divide and conquer based algorithm for optimal quantum compression / de- compression, using O(n(log4 n) log log n) elementary quantum operations . Our result pro- vides the first quasi-linear time algorithm for asymptotically optimal (in size and fidelity) quantum compression and decompression. We also outline the quantum gate array model to bring about this compression in a quantum computer. Our method uses various classical algorithmic tools to significantly improve the bound from the previous best known bound of O(n3)(R. Cleve, D. P. DiVincenzo, Schumacher's quantum data compression as a quantum computation, Phys. Rev. A, 54, 1996, 2636-2650) for this operation. Key words: Quantum computing, quantum compression, algorithm 1 Introduction 1.1 Quantum Computation Quantum Computation (QC) is a computing model that applies quantum me- chanics to do computation. (Computations and methods not making use of quantum mechanics will be termed classical). A single molecule (or collection of .particles and/or atoms) may have n degrees of freedom known as qubits. Associated with each fixed setting X of the n qubits to boolean values is a basis state denoted a . Quantum mechanics allows for a linear superposition of these basis states to j i ∗ Corresponding author. Email addresses: [email protected] ( John H. Reif), [email protected] (Sukhendu Chakraborty). 1 The work is supported by NSF EMT Grants CCF-0523555 and CCF-0432038.
    [Show full text]
  • Einstein, Podolsky and Rosen Paradox, Bell Inequalities and the Relation to the De Broglie-Bohm Theory
    Einstein, Podolsky and Rosen Paradox, Bell Inequalities and the Relation to the de Broglie-Bohm Theory Bachelor Thesis for the degree of Bachelor of Science at the University of Vienna submitted by Partener Michael guided by Ao. Univ. Prof. Dr. Reinhold A. Bertlmann Vienna, Dezember 2011 EPR - Bell Inequalities 2 Contents 1 Introduction3 2 Einstein Podolsky Rosen Paradox3 2.1 An Example to show Incompleteness.................5 2.2 Contributions from D. Bohm and Y. Aharonov............7 3 Bell's Inequality9 3.1 Experimental Verification....................... 12 4 A new Interpretation 12 4.1 Copenhagen Interpretation....................... 12 4.2 de Broglie-Bohm Theory........................ 15 4.3 Introduction to the de Broglie-Bohm Theory............. 16 4.4 The de Broglie-Bohm Theory and the Uncertainty Relation..... 18 4.5 Reality and Nonlocality in the de Broglie-Bohm Theory....... 20 5 Criticism of the de Broglie-Bohm Theory 21 5.1 Metaphysical Debate.......................... 21 5.1.1 Ockham's Razor......................... 21 5.1.2 Asymmetry in de Broglie-Bohm Theory............ 22 5.2 Theory Immanent Debate....................... 22 5.2.1 The \Surreal Trajectory" Objection.............. 22 6 Conclusion 24 7 Appendix 25 7.1 Appendix A............................... 25 EPR - Bell Inequalities 3 1 Introduction Is quantum mechanics incomplete? Are hidden variables needed? Does spooky interaction exist? Do we need a new interpretation for quantum mechanics? Is there an equivalent interpretation to the common Copenhagen interpretation? In this work, these questions will be raised and discussed. Quantum mechanics is known to be strange and describe phenomena which do not exist in the world of classical mechanics. The first main topic is about entanglement, a correlation between two separated systems which cannot interact with each other.
    [Show full text]
  • Chapter 10 Entanglement of Quantum Systems
    Chapter 10 Entanglement of Quantum Systems At the end we want to turn to an area which arose quite recently, in the late 80ties and 90ties, which received much attention since it opens a new kind of communication which wasn't possible before. This is quantum information, quantum communication and quantum computation. The foundation came from John Bell and his famous inequalities which focused on a certain feature of the quantum states, on the so-called nonlocality or entanglement of the states. Entanglement is the basic ingredient of quantum infor- mation theory and became nowadays the most used term in quantum physics, a kind of \magic word". In this chapter we will give an introduction into the entanglement concept, into Bell inequalities and discuss finally its most exciting consequence, namely quantum teleportation. 10.1 Entanglement and Separability The term \entanglement" (\Verschr¨ankung" in the original German phrasing) was intro- duced by Erwin Schr¨odingerin 1935 in order to describe an intrinsic feature of quantum mechanics, that arises from the structure of Hilbert space, i.e. the superposition principle of the states therein. He stated that: A composite quantum system, whose subsystems are distant from each other, is in an \entangled state" if the total system is in a well defined state, but the subsystems themselves are not. To formulate this statement more rigorously let us look at systems of two components, 1 e.g. two spin 2 particles or two photons, and construct the four possible product states (eigenstates of σz), already known from Eqs. (7.43) - (7.46) j " i ⊗ j " i ; j " i ⊗ j # i ; j # i ⊗ j " i ; j # i ⊗ j # i : (10.1) These states are of the class of the so-called \separable" states, or just \product" states.
    [Show full text]