Book Image

Quantum Computing Algorithms

By : Barry Burd
5 (1)
Book Image

Quantum Computing Algorithms

5 (1)
By: Barry Burd

Overview of this book

Navigate the quantum computing spectrum with this book, bridging the gap between abstract, math-heavy texts and math-avoidant beginner guides. Unlike intermediate-level books that often leave gaps in comprehension, this all-encompassing guide offers the missing links you need to truly understand the subject. Balancing intuition and rigor, this book empowers you to become a master of quantum algorithms. No longer confined to canned examples, you'll acquire the skills necessary to craft your own quantum code. Quantum Computing Algorithms is organized into four sections to build your expertise progressively. The first section lays the foundation with essential quantum concepts, ensuring that you grasp qubits, their representation, and their transformations. Moving to quantum algorithms, the second section focuses on pivotal algorithms — specifically, quantum key distribution and teleportation. The third section demonstrates the transformative power of algorithms that outpace classical computation and makes way for the fourth section, helping you to expand your horizons by exploring alternative quantum computing models. By the end of this book, quantum algorithms will cease to be mystifying as you make this knowledge your asset and enter a new era of computation, where you have the power to shape the code of reality.
Table of Contents (19 chapters)
Free Chapter
2
Part 1 Nuts and Bolts
7
Part 2 Making Qubits Work for You
10
Part 3 Quantum Computing Algorithms
14
Part 4 Beyond Gate-Based Quantum Computing

Qubits and Qiskit

Chapter 1, New Ways to Think about Bits, introduced Jupyter notebooks and showed you how to multiply matrices in Python. In this chapter, we’ll up the ante with Qiskit code for qubits. We’ll write code to create qubits, modify qubits’ values using quantum operators, measure qubits, and then display the results.

Creating and running a quantum circuit

To create your first quantum computing program, follow these steps:

  1. Create a new Jupyter notebook by following Steps 1 through 3 in the Matrices in Python section in Chapter 1, New Ways to Think about Bits.
  2. In the cell at the top of the notebook, copy the following code, and then press Shift + Enter:
    from qiskit import QuantumRegister, \
        ClassicalRegister, QuantumCircuit
    qReg = QuantumRegister(1, 'q')
    cReg = ClassicalRegister(1, 'c')
    circuit = QuantumCircuit(qReg, cReg)
    circuit.h(qReg[0])
    circuit.measure(qReg[0], cReg[0])
    display(circuit...