Programming and Simulation of Quantum Agents

Total Page:16

File Type:pdf, Size:1020Kb

Programming and Simulation of Quantum Agents Saarland University Faculty of Natural Sciences and Technology I Department of Computer Science Diploma Thesis Programming and Simulation of Quantum Agents submitted by René Schubotz on 03/31/2007 Supervisor Dr. Matthias Klusch German Research Center for Artificial Intelligence Deduction and Multiagent Systems Advisor Dr. Matthias Klusch Reviewers Dr. Matthias Klusch Prof. Dr. Wolfgang Wahlster Statement Hereby I confirm that this thesis is my own work and that I have documented all sources used. Saarbrücken, 03/31/2007 Declaration of Consent Herewith I agree that my thesis will be made available through the library of the Computer Science Department. Saarbrücken, 03/31/2007 Contents 1 Introduction 9 2 A Quantum Computing Primer 11 2.1 Bras and Kets ....................................... 11 2.2 Quantum Bit Registers .................................. 11 2.3 Projective Measurement of Quantum Bits ....................... 12 2.4 Unitary evolution and reversibility ........................... 12 2.5 Quantum Entanglement ................................. 13 2.6 Quantum Computation ................................. 14 2.6.1 Elementary Quantum Gates ........................... 14 2.6.2 Universal Quantum Gates ............................ 15 2.7 Quantum Communication ................................ 16 2.7.1 Quantum Teleportation ............................. 16 2.7.2 Superdense Coding ................................ 18 2.7.3 No-Cloning Theorem ............................... 19 2.8 Quantum Oracles ..................................... 19 2.8.1 The Deutsch Oracle ............................... 19 2.8.2 The State Marker oracle ............................. 20 2.9 Quantum Algorithms ................................... 22 2.9.1 Grover’s Search .................................. 22 2.9.2 Quantum Pattern Matching ........................... 24 2.9.3 Quantum Associative Memory ......................... 25 3 Quantum Computers and Simulators 31 3.1 Hybrid Quantum Computers .............................. 31 3.2 Quantum Computing Design Flow ........................... 32 3.3 Quantum Computer Simulation ............................. 33 3.3.1 QuIDDPro .................................... 35 3.3.2 QCL ........................................ 35 3.3.3 libquantum .................................... 35 4 Quantum Computational Agents 37 4.1 A Conceptual Quantum Computational Agent .................... 37 4.2 QC Agents and QC Multi-Agent Systems ....................... 38 4.3 QC Agent Autonomy ................................... 40 5 Generic QC Agent Architecture QuantumInteRRap 41 6 Type-I Quantum Search Agent 47 6.1 Type-I Quantum Search Agent Architecture ...................... 48 6.2 Simulation and Benchmarking .............................. 50 1 2 CONTENTS 7 Type-II Quantum Agent for Service Selection 51 7.1 Graph Encoding and Quantum Graphs ......................... 52 7.2 I/O Signature Graphs and Service Selection ...................... 52 7.3 I/O Signature Graphs and Semantic Similarity .................... 54 7.4 Type-II Quantum Agent Architecture for Service Selection .............. 55 7.5 Simulation and Benchmarking .............................. 59 8 Conclusions 61 A Appendix 63 A.1 Examplaric Instance of QPM Algorithm ........................ 63 A.2 Examplaric Instance of Associative Quantum Memory ................ 64 A.3 Quantum Pattern Matching Scenarios ......................... 68 A.4 Libquantum Implementation of QPM Algorithm ................... 69 A.5 Libquantum Implementation of Quantum Associative Memory ........... 74 A.6 Libquantum Implementation of Controlled 2-qubit Gate ............... 79 List of Figures 2.1 Quantum teleportation scheme ............................. 16 2.2 Superdense coding scheme ................................ 18 2.3 Deutsch Oracle ...................................... 19 2.4 Circuit of a State Marker oracle ............................. 21 2.5 Reflection along |ai .................................... 21 2.6 Geometry of a Grover iteration ............................. 23 3.1 Master-slave hybrid quantum computer ........................ 31 3.2 Quantum design flow phases on a classical computer ................. 33 4.1 Conceptual QC agent on a hybrid quantum computer ................ 38 4.2 Classification of QC agents ............................... 39 5.1 QuantumInteRRap Knowledge Base .......................... 41 5.2 The QuantumInteRRap Agent Control Unit ...................... 42 5.3 QuantumInteRRap Behaviour-based Layer ....................... 43 5.4 QuantumInteRRap Local Planning Layer ....................... 43 5.5 QuantumInteRRap Cooperative Planning Layer .................... 44 5.6 QuantumInteRRap architecture ............................. 45 6.1 Conceptual hardware scheme of a Type-I QPM agent ................. 47 6.2 QuantumInteRRap architecture of a QPM based type-I quantum search agent ... 48 6.3 Comparing peak memory (a) and runtime (b) of QPM agent on quantum computing simulators ......................................... 50 7.1 Conceptual hardware scheme of a Type-II QSS agent ................. 51 7.2 Example taxonomy (a) and Web service I/O signature graph(b) ........... 52 7.3 Semantic similarity values for example request and advertisements (see how the subsumed service is pruned, although its input concepts perfectly match the request) 54 7.4 QuantumInteRRap architecture of a Type-II QSS agent ............... 55 7.5 Simple use cases for QSS agent ............................. 59 A.1 Example of amplitude distribution ........................... 63 3 4 LIST OF FIGURES List of Tables 3.1 Quantum simulators at a glance ............................. 34 4.1 Comparision of computational agents .......................... 39 6.1 (Quantum) Patterns of Behaviour for type-I QPM agent ............... 48 7.1 (Quantum) Patterns of Behaviour for type-II QSS agent ............... 56 5 6 LIST OF TABLES List of Algorithms 1 Simulated measurement of a n-qubit register ..................... 12 2 Grover’s algorithm in case of a unique solution .................... 22 3 Quantum pattern matching ............................... 24 4 Algorithm for creation of a quantum associative memory ............... 26 5 Algorithm for pattern retrieval from a quantum associative memory ........ 27 6 Building a I/O signature graph from Web service advertisement S ......... 53 7 Building a I/O signature graph from Web service request R ............. 53 7 8 LIST OF ALGORITHMS Chapter 1 Introduction Quantum computing technology based on quantum physics promises to deliver massively more powerful and faster performance for logistics, bioinformatics, cryptographic deciphering, and other applications. Quantum computing devices have been physically implemented since the late 1990’s by use of, for example, nuclear magnetic resonance, and solid state technologies. Rapid progress and current trends in nanoscale molecular engineering, as well as quantum computing research carried out across the globe could make it happen to let us see increasingly sophisticated quantum computing devices in the era 2020 to 2030. Proposed applications of quantum computation mainly focus on computational problems, such as prime factoring and database search, and cryptographic key exchange. However, the ability to distribute and manipulate entangled particles offers a new resource to aid multiparty strategic decision-making. The implied research challenge of agent based computing in such environments is how to make the most of the potential of quantum resources? Any answer to this question at the very moment will be, of course, highly speculative, although work in this direction already started. Building on the idea of quantum computational agents given in (Klu03), this thesis focuses on engineering aspects and proposes a generic architecture for quantum computational agents. Key idea is to appropriately extend one prominent generic agent architecture, namely InteRRap, to the case of computational agents that are supposed to run on a hybrid quantum computer, and that have the ability to perform quantum computation and communication. The principles of the proposed generic architecture for quantum computa- tional agents are demonstrated by means of a quantum search agent based on quantum pattern matching, and by means of a quantum agent for service selection. The remainder of this thesis is structured as follows. Chapter 2 initially delivers a brief, but self-contained introduction to the basic topics of quantum computation, and exposes the quantum circuit model (QRAM), a popular model of quantum computation. Based on QRAM, important quantum communication strategies and algorithms are explained in section 2.7, and in section 2.9 respectively. Quantum algorithms described in section 2.9 suit two purposes. First, they answer the question of how a quantum computer can be of avail for computational problems, and second they deliver the algorithmic foundations for the implementation of quantum computational agents in chapters 6 and 7. Chapter 3 envisions a hybrid quantum computer, i.e., a computing device consisting of a classical assembly that invokes and controls operations carried out on its quantum computational complement. In order to program and control such a computing device, a concep- tual layered software architecture for quantum computing design tools is described in section 3.2. Since sufficient and affordable quantum machinery is not available at the time, quantum computer simulators are indispensable tools for study and design of quantum algorithms.
Recommended publications
  • Graphical and Programming Support for Simulations of Quantum Computations
    AGH University of Science and Technology in Kraków Faculty of Computer Science, Electronics and Telecommunications Institute of Computer Science Master of Science Thesis Graphical and programming support for simulations of quantum computations Joanna Patrzyk Supervisor: dr inż. Katarzyna Rycerz Kraków 2014 OŚWIADCZENIE AUTORA PRACY Oświadczam, świadoma odpowiedzialności karnej za poświadczenie nieprawdy, że niniejszą pracę dyplomową wykonałam osobiście i samodzielnie, i nie korzystałam ze źródeł innych niż wymienione w pracy. ................................... PODPIS Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie Wydział Informatyki, Elektroniki i Telekomunikacji Katedra Informatyki Praca Magisterska Graficzne i programowe wsparcie dla symulacji obliczeń kwantowych Joanna Patrzyk Opiekun: dr inż. Katarzyna Rycerz Kraków 2014 Acknowledgements I would like to express my sincere gratitude to my supervisor, Dr Katarzyna Rycerz, for the continuous support of my M.Sc. study, for her patience, motivation, enthusiasm, and immense knowledge. Her guidance helped me a lot during my research and writing of this thesis. I would also like to thank Dr Marian Bubak, for his suggestions and valuable advices, and for provision of the materials used in this study. I would also thank Dr Włodzimierz Funika and Dr Maciej Malawski for their support and constructive remarks concerning the QuIDE simulator. My special thank goes to Bartłomiej Patrzyk for the encouragement, suggestions, ideas and a great support during this study. Abstract The field of Quantum Computing is recently rapidly developing. However before it transits from the theory into practical solutions, there is a need for simulating the quantum computations, in order to analyze them and investigate their possible applications. Today, there are many software tools which simulate quantum computers.
    [Show full text]
  • QUANTUM COMPUTER and QUANTUM ALGORITHM for TRAVELLING SALESMAN PROBLEM Utpal Roy, Sanchita Pal Chawdhury, Susmita Nayek
    ISSN: 0974-3308, VOL. 2, NO. 1, JUNE 2009 © SRIMCA 54 QUANTUM COMPUTER AND QUANTUM ALGORITHM FOR TRAVELLING SALESMAN PROBLEM Utpal Roy, Sanchita Pal Chawdhury, Susmita Nayek ABSTRACT Depending upon the extraordinary power of Quantum Computing Algorithms various branches like Quantum Cryptography, Quantum Information Technology, Quantum Teleportation have emerged [1-4]. It is thought that this power of Quantum Computing Algorithms can also be successfully applied to many combinatorial optimization problems. In this article, a class of combinatorial optimization problem is chosen as case study under Quantum Computing. These problems are widely believed to be unsolvable in polynomial time. Mostly it provides suboptimal solutions in finite time using best known classical algorithms. Travelling Salesman Problem (TSP) is one such problem to be studied here. A great deal of effort has already been devoted towards devising efficient algorithms that can solve the problem [5-18]. Moreover, the methods of finding solutions for the TSP with Artificial Neural Network and Genetic Algorithms [5-8] do not provide the exact solution to the problems for all the cases, excepting a few. A successful attempt has been made to have a deterministic solution for TSP by applying the power of Quantum Computing Algorithm. Keywords: Quantum Computing, Travelling Salesman Problem, Quantum algorithms. 1. INTRODUCTION A quantum computer is a device that can arbitrarily manipulate the quantum state of a part or itself. The field of quantum computation is largely a body of theoretical promises for some impressively fast algorithms which could be executed on quantum computers. The field of quantum computing has advanced remarkably in the past few years since Shor [1] presented his quantum mechanical algorithm for efficient prime factorization of very large numbers, potentially providing an exponential speedup over the fastness on known classical algorithm.
    [Show full text]
  • Download the 3Rd Edition of the Book of Abstracts
    Book of Abstracts 3rd BSC International Doctoral Symposium Editors Nia Alexandrov María José García Miraz Graphic and Cover Design: Cristian Opi Muro Laura Bermúdez Guerrero This is an open access book registered at UPC Commons (http://upcommons.upc.edu) under a Creative Commons license to protect its contents and increase its visibility. This book is available at http://www.bsc.es/doctoral-symposium-2016 published by: Barcelona Supercomputing Center supported by: The “Severo Ochoa Centres of Excellence" programme 3rd Edition, September 2016 Introduction ACKNOWLEDGEMENTS The BSC Education & Training team gratefully acknowledges all the PhD candidates, Postdoc researchers, experts and especially the Keynote Speaker Francisco J. Doblas-Reyes and the tutorial lecturers Vassil Alexandrov and Javier Espinosa, for contributing to this Book of Abstracts and participating in the 3rd BSC International Doctoral Symposium 2016. We also wish to expressly thank the volunteers that supported the organisation of the event: Carles Riera and Felipe Nathan De Oliveira. BSC Education & Training team [email protected] 5 Introduction 6 Introduction CONTENTS EDITORIAL COMMENT ................................................................................................ 11 WELCOME ADDRESS .................................................................................................. 13 PROGRAM .................................................................................................................... 15 KEYNOTE SPEAKER ...................................................................................................
    [Show full text]
  • Models of Quantum Computation and Quantum Programming Languages
    Models of quantum computation and quantum programming languages Jaros law Adam MISZCZAK Institute of Theoretical and Applied Informatics, Polish Academy of Sciences, Ba ltycka 5, 44-100 Gliwice, Poland The goal of the presented paper is to provide an introduction to the basic computational mod- els used in quantum information theory. We review various models of quantum Turing machine, quantum circuits and quantum random access machine (QRAM) along with their classical counter- parts. We also provide an introduction to quantum programming languages, which are developed using the QRAM model. We review the syntax of several existing quantum programming languages and discuss their features and limitations. I. INTRODUCTION of existing models of quantum computation is biased towards the models interesting for the development of Computational process must be studied using the fixed quantum programming languages. Thus we neglect some model of computational device. This paper introduces models which are not directly related to this area (e.g. the basic models of computation used in quantum in- quantum automata or topological quantum computa- formation theory. We show how these models are defined tion). by extending classical models. We start by introducing some basic facts about clas- A. Quantum information theory sical and quantum Turing machines. These models help to understand how useful quantum computing can be. It can be also used to discuss the difference between Quantum information theory is a new, fascinating field quantum and classical computation. For the sake of com- of research which aims to use quantum mechanical de- pleteness we also give a brief introduction to the main res- scription of the system to perform computational tasks.
    [Show full text]
  • One-Way Quantum Computer Simulation
    One-Way Quantum Computer Simulation Eesa Nikahd, Mahboobeh Houshmand, Morteza Saheb Zamani, Mehdi Sedighi Quantum Design Automation Lab Department of Computer Engineering and Information Technology Amirkabir University of Technology Tehran, Iran {e.nikahd, houshmand, szamani, msedighi}@aut.ac.ir Abstract— In one-way quantum computation (1WQC) model, universal quantum computations are performed using measurements to designated qubits in a highly entangled state. The choices of bases for these measurements as well as the structure of the entanglements specify a quantum algorithm. As scalable and reliable quantum computers have not been implemented yet, quantum computation simulators are the only widely available tools to design and test quantum algorithms. However, simulating the quantum computations on a standard classical computer in most cases requires exponential memory and time. In this paper, a general direct simulator for 1WQC, called OWQS, is presented. Some techniques such as qubit elimination, pattern reordering and implicit simulation of actions are used to considerably reduce the time and memory needed for the simulations. Moreover, our simulator is adjusted to simulate the measurement patterns with a generalized flow without calculating the measurement probabilities which is called extended one-way quantum computation simulator (EOWQS). Experimental results validate the feasibility of the proposed simulators and that OWQS and EOWQS are faster as compared with the well-known quantum circuit simulators, i.e., QuIDDPro and libquantum for simulating 1WQC model1. Keywords-Quantum Computing, 1WQC, Simulation 1 INTRODUCTION Quantum information [2] is an interdisciplinary field which combines quantum physics, mathematics and computer science. Quantum computers have some advantages over the classical ones, e.g., they give dramatic speedups for tasks such as integer factorization [3] and database search [4].
    [Show full text]
  • Dissertação André Silva.Pdf
    Andr´ePaulo Pires Miranda Ferreira da Silva Simulation of a Quantum Algorithm using Quantum Fourier Transforms Thesis submitted to the University of Coimbra for the degree of Master in Engineering Physics Supervisor: Prof. Dr. Maria Helena Vieira Alberto Coimbra, 2018 Esta c´opiada tese ´efornecida na condi¸c~aode que quem a consulta reconhece que os direitos de autor s~aoperten¸cado autor da tese e que nenhuma cita¸c~aoou informa¸c~ao obtida a partir dela pode ser publicada sem a refer^enciaapropriada. This copy of the thesis has been supplied on condition that anyone who consults it is understood to recognize that its copyright rests with its author and that no quotation from the thesis and no information derived from it may be published without proper acknowledgement. ii Acknowledgments O desenvolvimento desta tese foi uma aventura, no que toca a todas as ´areasnovas que tive que explorar. Sabendo que a minha forma¸c~aona ´areade computa¸c~ao qu^antica era b´asica,n~aobastou gostar do tema para suceder, foi preciso um grande esfor¸coque sozinho n~aoseria poss´ıvel. Merece uma men¸c~aoespecial, a Prof. Dra. Maria Helena Vieira Alberto. Mesmo sem ter obriga¸c~oes(nem ser a sua ´area),disponibilizou-se a ajudar-me, orientar- me e corrigir-me durante todo o esfor¸coque foi a conclus~aoda tese. Nos temas mais dif´ıceisnunca negou a disponibilidade para me ajudar. E teve sempre muita paci^enciapara me explicar os mais f´aceis.Por todo o esfor¸coe dedica¸c~ao,um muito obrigado.
    [Show full text]
  • Jquantum Manual
    A Quantum Computer Simulator Version 0.9beta — Documentation — Andreas de Vries FH Sudwestfalen¨ University of Applied Sciences, Haldener Straße 182, D-58095 Hagen, Germany e-mail: [email protected] Contents 1 About this Program 1 2 Short manual 1 2.1 Installation . 1 2.2 The structure of the work space window . 2 2.3 How to initialize a quantum register . 2 2.4 Design a circuit . 3 2.5 Run the algorithm . 3 3 Theoretical Background 4 3.1 Why quantum computers? . 4 3.2 What is quantum computation? . 5 3.3 Quantum logic . 5 3.4 Where can I get more information? . 5 1 About this Program The program jQuantum is a quantum computer simulator. It simulates the implementation of quantum circuits on a small quantum register up to about 15 qubits. Its main intention is to create images — images which may help to learn and understand quantum circuits, and which perhaps will serve as building blocks for inventing new quantum algorithms. 2 Short manual 2.1 Installation You need the Java Virtual Machine JRE 1.4.1 or higher to run jQuantum. If you do not have it, you can simply download it from http://java.sun.com. To start jQuantum, under most platforms you simply click 1 on the jar-file. If this does not work you can start the shell, change into the directory of jQuantum.jar and and type in: java -jar jQuantum.jar 2.2 The structure of the work space window After having started the program, you see the work space window (Fig.
    [Show full text]
  • Towards a Novel Environment for Simulation of Quantum Computing
    Computer Science 16 (1) 2015 http://dx.doi.org/10.7494/csci.2015.16.1.103 • Joanna Patrzyk Bartłomiej Patrzyk Katarzyna Rycerz Marian Bubak TOWARDS A NOVEL ENVIRONMENT FOR SIMULATION OF QUANTUM COMPUTING Abstract In this paper, we analyze existing quantum computer simulation techniqu- es and their realizations to minimize the impact of the exponential complexity of simulated quantum computations. As a result of this investigation, we pro- pose a quantum computer simulator with an integrated development environ- ment – QuIDE – supporting the development of algorithms for future quantum computers. The simulator simplifies building and testing quantum circuits and understanding quantum algorithms in an efficient way. The development envi- ronment provides flexibility of source code edition and ease of the graphical building of circuit diagrams. We also describe and analyze the complexity of algorithms used for simulation as well as present performance results of the simulator as well as results of its deployment during university classes. Keywords quantum computation, quantum computer simulators, development environment, quantum algorithms, SUS survey Citation Computer Science 16 (1) 2015: 103–129 103 8 kwietnia 2015 str. 1/27 104 Joanna Patrzyk, Bartłomiej Patrzyk, Katarzyna Rycerz, Marian Bubak 1. Introduction In recent years, the field of quantum computing has developed significantly. In [25] and [30], the results of experimental realizations of Shor’s Prime Factorization Algorithm [44] are presented. Moreover, the first prototypes of a quantum central processing unit were built: one realizing the von Neumann’s architecture [28] and another exploiting quantum annealing [21, 24]. Quantum computers can offer an exponential speedup compared to conventional computers [7].
    [Show full text]
  • Quantum Computer Simulation Using CUDA Alexander Smith Khashayar Khavari University of Toronto Department of Electrical and Computer Engineering
    1 Quantum Computer Simulation Using CUDA Alexander Smith Khashayar Khavari University of toronto Department of Electrical and Computer Engineering I. INTRODUCTION Quantum computing has captured the attention of many researchers in the past decade. While researchers in the fields of electrical engineering and physics have concentrated on realizing a physical machine that satisfies the criteria of a quantum computing, others in the research community are developing algorithms that can take advantage of such machines. Through exploitation of the inherit superposition observed at the quantum level, many interesting quantum algorithms (q-algorithms) have been developed. These range from simple communication between two points using super-dense coding to factorization of a large number into its prime components through Shor’s algorithm. Despite the dedication and hard work of physicists and engineers, a physically stable quantum computer is still a dream to be fulfilled. To deal with this problem and to encourage development of more q-algorithms, it has been proposed to simulate the functionality of a quantum computer using a classical one. Quantum computer simulation allows researchers to validate existing quantum algorithms without the need for a physical quantum computer. However, the inherent complexity of a quantum system results in extremely time-consuming simulations on a classical machine. In a physical quantum computer, quantum superposition of states allows the simultaneous manipulation of all possible combinations of a set of bits in a single operation, speeding up many algorithms exponentially when compared to a classical computer. This is main challenge that a classical simulator has to face. Because of this, quantum algorithms, which are supposed to reduce exponential processing times to linear ones, run more slowly than their classical counterparts when simulated.
    [Show full text]
  • Q# , a Quantum Computation Package for the .NET Platform
    Q# , a quantum computation package for the .NET platform A. S. Tolba, M. Z. Rashad, and M. A. El-Dosuky Dept. of Computer Science, Faculty of Computers and Information Sciences, Mansoura University, Mansoura, Egypt. [email protected], [email protected], [email protected] October 2007 ABSTRACT Quantum computing is a promising approach of computation that is based on equations from Quantum Mechanics. A simulator for quantum algorithms must be capable of performing heavy mathematical matrix transforms. The design of the simulator itself takes one of three forms: Quantum Turing Machine, Network Model or circuit model of connected gates or, Quantum Programming Language, yet, some simulators are hybrid. We studied previous simulators and then we adopt features from three simulators of different implementation languages, different paradigms, and for different platforms. They are Quantum Computing Language (QCL), QUASI, and Quantum Optics Toolbox for Matlab 5. Our simulator for quantum algorithms takes the form of a package or a programming library for Quantum computing, with a case study showing the ability of using it in the circuit model. The .NET is a promising platform for computing. VB.NET is an easy, high productive programming language with the full power and functionality provided by the .NET framework. It is highly readable, writeable, and flexible language, compared to another language such as C#.NET in many aspects. We adopted VB.NET although its shortage in built-in mathematical complex and matrix operations, compared to Matlab. For implementation, we first built a mathematical core of matrix operations. Then, we built a quantum core which contains: basic qubits and register operations, basic 1D, 2D, and 3D quantum gates, and multi-view visualization of the quantum state, then a window for demos to show you how to use and get the most of the package.
    [Show full text]
  • Technical University of Crete Department of Electronic and Computer Engineering
    Technical University of Crete Department of Electronic and Computer Engineering Techniques for Simulating Quantum Computers by Koufogiannakis Christos This thesis is submitted in partial fulfillment of requirements for the Diploma Degree in Electronic and Computer Engineering Committee: Samoladas Vasilis (supervisor) Dollas Apostolos Petrakis Euripides June 2004 Abstract The first algorithm of practical interest that takes advantage of quantum mechanics was proposed by Peter Shor in 1994. Shor described a polynomial time quantum algorithm for factoring integers. Factoring is considered to be a hard problem for classical computers. Indeed, the efficiency of the famous public-key cryptosystem RSA is based on the assumption that classical computers cannot factor big integers fast. On the other hand a quantum computer would be able to break the RSA system relatively easy. A number of quantum algorithms have been proposed since 1994, like Grover’s algorithm for database search, quantum cryptography and quantum teleportation. Unfortunately, current technology makes it impossible to build large scale quantum computers to run these algorithms. This is a great roadblock for those who want to test their algorithms or those who want to write new quantum algorithms. Therefore, the only way to test quantum algorithms is by simulating them on classical computers. However, the exponential state explosion makes quantum simulation a difficult task for classical computers. In this thesis we describe how Binary/Algebraic Decision Diagrams (BDDs, ADDs) can be used to simulate quantum circuits, and especially Shor’s algorithm. i Acknowledgements I would like to thank, my supervisor, Prof. Vasilis Samoladas, for introducing me to the subject of quantum computing and providing me with many constructive conversations.
    [Show full text]
  • Simulation Eines Quantencomputers
    Simulation eines Quantencomputers Bj¨orn Butscher, Hendrik Weimer Universit¨at Stuttgart 22. M¨arz 2003 1 Inhaltsverzeichnis 1 Quantencomputing – Eine Einfuhrung¨ 3 2 Simulation eines Quantencomputers 5 2.1 Implementierung des Speichers . 6 2.2 Implementierung der Gatter . 6 2.3 Messungen . 7 2.4 Der Faktorisierungsalgorithmus von Shor . 8 2.4.1 Grundlagen . 8 2.4.2 xa mod n ................................. 9 2.4.3 Quanten-Fourier-Transformation . 10 2.4.4 Klassische Nachbearbeitung . 10 2.5 Dekoh¨arenz und Fehlerkorrektur . 10 2.5.1 Dekoh¨arenz und andere Fehlerquellen . 10 2.5.2 Quanten-Fehlerkorrektur-Verfahren . 12 1 2.6 Simulation von Spin- 2 -Systemen . 12 3 Zusammenfassung und Ausblick 14 2 1 Quantencomputing – Eine Einfuhrung¨ Viele nutzliche¨ Internet-Anwendungen wie Internet-Banking, online Einkaufen oder ver- trauliche E-Mails erfordern hohe Sicherheit. Diese wird erreicht, indem Verschlusselungs-¨ verfahren eingesetzt werden, deren unbefugte Entschlusselung¨ bisher nicht in vertretbarer Zeit m¨oglich ist. Allerdings wurde in letzter Zeit mit erh¨ohter Aufmerksamkeit die Ent- wicklung von Quantencomputern verfolgt, denn diese stellen eine M¨oglichkeit dar, alle bekannten Verschlusselungsverfahren¨ anzugreifen [1]. Quantencomputer k¨onnen bestimm- te Probleme wesentlich schneller als klassische Rechner l¨osen, da durch die Ausnutzung quantenmechanischer Effekte viele Berechnungen parallel durchgefuhrt¨ werden k¨onnen. Doch wie funktioniert ein Quantencomputer genau? Klassische Computer kennen als kleinste Recheneinheit das Bit, welches die Zust¨ande 0 und 1 annehmen kann. Beim Ubergang¨ in die Welt des Quantencomputings wird die klassische Vorstellung von dis- kreten, also eindeutigen Zust¨anden aufgegeben und erlaubt, dass sich eine Speichereinheit in beiden Zust¨anden gleichzeitig befindet.
    [Show full text]