Modern Computer Architecture and Organization, by Jim Ledin. Published by Packt Publishing.
Work through the example quantum program at https://qiskit.org/documentation/tutorials/fundamentals/1_getting_started_with_qiskit.html. This example creates a quantum circuit containing three qubits that implements a Greenberger–Horne–Zeilinger (GHZ) state. The GHZ state exhibits key properties of quantum entanglement. Execute the code in a simulation environment on your computer.
Start an Anaconda prompt console. Type anaconda in the Windows search box and click on Anaconda prompt when it appears in the search list. A console window will appear.
conda activate qiskitenv
python
import numpy as np
from qiskit import *
circ.h(0)
circ.cx(0,1)
circ.cx(0,2)
meas = QuantumCircuit(3, 3) meas.barrier(range(3)) meas.measure(range(3),range(3))
qc = circ + meas
5. Display the circuit onscreen:
qc.draw()
The output of this command should appear as follows:
qc.draw() ┌───┐ ░ ┌─┐ q_0: |0>┤ H ├──■────■───░─┤M├────── └───┘┌─┴─┐ │ ░ └╥┘┌─┐ q_1: |0>─────┤ X ├──┼───░──╫─┤M├─── └───┘┌─┴─┐ ░ ║ └╥┘┌─┐ q_2: |0>──────────┤ X ├─░──╫──╫─┤M├ └───┘ ░ ║ ║ └╥┘ c_0: 0 ═══════════════════╩══╬══╬═ ║ ║ c_1: 0 ══════════════════════╩══╬═ ║ c_2: 0 ═════════════════════════╩═
```
7. Retrieve and display the count of the number of times each bit pattern resulted from a simulation run:
result_sim = job_sim.result() counts_sim = result_sim.get_counts(qc) counts_sim
You should see results similar (but not identical) to these:
counts_sim {‘000’: 527, ‘111’: 497}
```