Computing For The Curious Pdf: Quantum Chemistry And
# Teleport the quantum state qc.barrier() qc.cx(0, 1) qc.h(0) qc.cx(1, 2) qc.cz(0, 2)
# Prepare the EPR pair qc.h(1) qc.cx(1, 2) quantum chemistry and computing for the curious pdf
# Simulate the circuit simulator = Aer.get_backend('qasm_simulator') job = execute(qc, simulator, shots=1024) result = job.result() # Teleport the quantum state qc