Bell States in Quantum Computing

Total Page:16

File Type:pdf, Size:1020Kb

Bell States in Quantum Computing Bell States in Quantum Computing George Samuels, Paul Mahon, Debarshi Dutta, Sheetal Vasant Nikam, Lewis Westfall, Sukun Li, Avery Leider and Charles C. Tappert Pace University Pleasantville, NY 10570, USA Email:flw19277w, dd50506n, pm07433n, sn07217n, gsamuels, aleider, [email protected] Abstract—The rise of Quantum Computing in the industry begets a closer analysis of the topic and its methods. Quantum computers are not limited to the two states 0 and 1; rather, they encode information as quantum bits, or qubits, which can exist in superposition and can be entangled. Understanding the entanglement of qubits requires an understanding of the Bell states. The rst Bell state(Φ +), has been widely studied and is prominent in quantum computing literature. However, the other three (Φ-, Ψ+, Ψ-), are relatively untouched by researchers Fig. 1. Qubit verse Classical Bit since Quantum Computers have only recently been available for research that could test them. Years of theoretical research has not been backed by experiments due to the lack of available each qubit is in a situation that cannot be explained without technology. Now with its availability from companies like IBM we have the resources to test and work with all four Bell states, quantum mechanics. Qubits represent atoms, ions, photons further developing Quantum Computing as a strong pillar in or electrons and their respective control devices that are computing. working together to act as computer memory and a processor. Index Terms—quantum, qubit, Bell state, IBM Because a quantum computer can contain these multiple states simultaneously, it has the potential to be millions of times I. INTRODUCTION more powerful than today’s most powerful supercomputers [3]. Quantum Computing is a method that not many people Understanding what qubits are and how they are represented can articulate or even imagine. What is Quantum Comput- now helps us, as we look to understand Bell states. One Bell ing? What is it used for? How do developers interact with state can be defined as a maximally entangled quantum state these computers? During the course of our studies these of two qubits. The qubits are seen as a spatially separated questions and more will be addressed. Quantum Computing . Quantum entanglement can be understood by breaking it is known as the process of assembling instructions called down in simply terms. It can be imagined as if a person’s quantum programs which are capable of running on a quantum hair is tangled, the two strains of hair are now connected computer. These instructions can be written in either Python as one; however, these strains can be separated once more or JavaScript,both have a variety of Quantum Computation creating two parts. In the quantum space these strains are libraries [1]. For this project in particular we will use Python not simply taken apart once they are entangled. Due to the to write programs that will be complied on a local machine, entanglement, measurement of one qubit will assign one of two and ran on IBMs cloud quantum computer which is for public possible values to the other qubit instantly, where the values use. A vital asset in understanding Quantum Computing is are assigned depends on which Bell state the two qubits are knowing about classical computation. Classical computation in. are illustrated by classical bits, which are seen as singular Bell states can also be measured, the Bell measurement is strings of 1 or 0. The bits of 1 or 0 are representing Boolean an important concept in quantum information science: It is values of true or false. a joint quantum-mechanical measurement of two qubits that The basic entity of quantum information is a qubit or a determines which of the four Bell states the two qubits are in. quantum bit. Qubits can represent a 1, a 0 or both at once, The four Bell states are in contrast to the binary digits used in classical computing 2 3 [2]. Consider the electron in a hydrogen atom. It can be in its 1 + 1 1 6 0 7 ground state (i.e. an s orbital) or in an excited state. If this Φ = p (j00i + j11i) = p 6 7 were a classical system, we could store a bit of information 2 2 4 0 5 in the state of the electron: ground = 0, excited = 1. The 1 qubits are usually thought to be spatially separated. The greater 2 3 the distance apart each are, the more each exhibit perfect 1 correlation even though there is no way to tell which state − 1 6 0 7 Φ = p (j00i − j11i) = 6 7 2 4 0 5 Thanks to the IBM Faculty Award that made this research possible. −1 Once we created the virtual environment, installing the 2 3 0 Qiskit libraries with the Python package management system + 1 6 1 7 (PIP) followed. We now had our programming environment Ψ = p (j01i + j10i) = 6 7 2 4 1 5 setup with the necessary libraries installed. 0 The next step was to clone the open source code project 2 3 from Github, a code sourcing repository (repo). This code 0 is a combination of efforts from IBM and other research − 1 6 1 7 Ψ = p (j01i − j10i) = 6 7 institutions. Microsoft Windows systems required the instal- 2 4 −1 5 lation of the Github client prior to pulling the code from 0 GitHub. Github was already installed on our Mac systems. Each state can be achieved based on the polarization of a The team also cloned the Qiskit tutorial repo from Github single photon (spin up, spin down). The states (Φ) and (Ψ) that provided us with help files and configuration templates are represented by the polarization of the photon, either being (Qconfig.py.template). horizontal or vertical. The polarization being the same are IBM has taken the first initiative to build a quantum represented by the Greek symbol (Φ), while the polarization computer for research [7] and they have provided access to being opposites are shown as the Geek symbol (Ψ) [4]. this computer through an application programming interface These two divisions are subdivided by the rotational state. (API). For the Qiskit project, our team needed a token (code) The rotations include the positive horizontal state, negative to access this API for our code testing. To get the code, we horizontal state, positive vertical state, and negative vertical logged in to IBM Q experience site [8] and generated an API state. The public computers at IBM now allow full exploration token. This token was subsequently entered in to the Qiskit into all four Bell states, where previously researchers and configuration file for access to the IBM quantum computer via computer scientist were limited to one Bell state. the API. Finally, Jupyter Notebook was launched through the Ana- II. PROJECT REQUIREMENTS conda Navigator and loaded the Qiskit home page (in- To setup our Quantum Information System Kit (Qiskit) dex.ipynb). development environment we used both Microsoft Windows • IBM’s QISKit and Apple Mac configurations. • Q-Experience API key Our team selected Jupyter Notebook for the Integrated • Anaconda Development Environment (IDE) platform. Jupyter Notebook • Python is an cross-platform, open source application that is based on • Jupyter Notebook a server-client structure to enable an interactive programming • Slack for QISKit experience for Python [5].Jupyter Notebook is highly suited • Understanding of entangled states [9] to data science and also works well as a presentation tool. Our team used the Anaconda distribution of Python, which III. LITERATURE REVIEW includes the Jupyter Notebook IDE, for our programming A review of the literature available on quantum computing interpreter. Anaconda is a popular distribution of Python reveals that the focus of the research thus far has been on the for data science and suited this project well [6]. The main first bell state (Φ +). This can be attributed to the fact that the advantage of using the Anaconda distribution is that it comes technology which was used to analyze the Bell states has been with a package manager (conda) that seamlessly installs key made available only relatively recently. In fact, prior to 2017 packages out of the box that were needed for our Qiskit the research on Bell states was largely hypothetical. Liao [10] project. The libraries needed for this project are as shown: has investigated entanglement generated from polar molecules 1) IBM IBMQuantumExperience of two-dimensional rotation in a static electric field. The 2) Numpy concurrence is used to estimate the degree of entanglement. 3) Scipy Parallel and perpendicular application of the electric field to 4) Matplotlib the inter-molecular direction reveals two overlapping features, Anaconda also has a graphical user interface, Anaconda Navi- which corresponds to the existence of Bell-like states. The gator, that enables our team to launch applications and manage characteristics of Bell-like states and overlapping concurrences these conda packages. are kept independent of the modulation of dipolefield and To setup our Qiskit Development Environment (QDE) we dipoledipole interactions. The Bell-like states however do first downloaded the Anaconda distribution of Python at ana- not coexist in other field directions, which signifies non- conda.com. After verifying the installation, we created our overlapping concurrences. Dissimilar suppressed concurrences Qiskit virtual environment with the Anaconda tool (conda occur due to different energy structures for the two specific create). The virtual environment enabled us to isolate the field directions. Friis, Marty et all [11] has characterized Python libraries and package installations from the local entangled states of a registry of twenty individually controlled computer systems. qubits. Each qubit was encoded into the electronic state of a trapped atomic ion. Entanglement is generated during the out- and 1 of-equilibrium dynamics of an Ising-type Hamiltonian, which j1i top (j0i − j1i) was built through laser fields.
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]
  • 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]
  • 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]
  • Ross Duncan 10 YEARS of ZX
    Introduction to the ZX-calculus Ross Duncan 10 YEARS OF ZX The story in 3 parts : 1 : Introduction to the ZX-calculus (past 10+ years) 2 : Completeness of ZX-calculus (past ~1 year) (Simon Perdrix) 3 : The ZH-calculus (next 10 years!) (Miriam Backens) What is the ZX-calculus? 1. Formal Theory for quantum computing • Diagrammatic syntax for representing quantum processes • Axioms expressing equalities between diagrams • Sound interpretation of diagrams as linear maps What is the ZX-calculus? 2. A graph rewriting system • A language of labelled graphs • Rewrite rules expressing equations • “Compute” by double push-out rewriting What is the ZX-calculus? 3. A particular class of tensor networks • Index free diagrammatic presentation • Simple contraction rules • Transformation laws between different presentations of the same tensor What is the ZX-calculus? 4. Categorical algebraic theory • A PROP whose morphisms are diagrams • Distributive laws between: • Frobenius algebras • Hopf Algebras • Abelian groups • Some other axioms What is the ZX-calculus? 5. Intermediate representation for quantum programs • Architecture independent • Formal theory of “program” transformations • Suggestive of more basic operations than the usual unitary gates 0. Motivations Transistors are shrinking 10000 1000 100 Feature Size (nm) Log-scale Feature 1972 1988 2005 2016 10 1 1970 1980 1990 2000 2010 2020 Transistors are shrinking 10000 1000 100 Feature Size (nm) Log-scale Feature 1972 1988 2005 2016 10 Quantum effects become important 1 1970 1980 1990 2000 2010 2020 Quantum Computing • IDEA: exploit quantum effects for computation • Fast algorithms (Shor, Grover) • Simulate physical systems (chemistry, materials) • Novel cryptographic protocols (QKD, blind computing) • …. and more.
    [Show full text]
  • 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.
    [Show full text]