Probabilities and the Qubit States
Learn how we can rotate the qubit state and calculate the angle that represents a certain probability.
We'll cover the following...
Let’s look at our transformation in action.
Rotating the qubit state
from math import pi# Define state |0>initial_state = [1, 0]# Redefine the quantum circuitqc = QuantumCircuit(1)# Initialise the 0th qubit in the state `initial_state`qc.initialize(initial_state, 0)# Rotate the state by a quarter of a half circle.qc.ry(pi/4,0)# Tell Qiskit how to simulate our circuitbackend = Aer.get_backend('statevector_simulator')# execute the qcresults = execute(qc,backend).result().get_counts()# plot the resultsplot_histogram(results)
The Qiskit QuantumCircuit
object provides the ry
function in line 13. The ry
function is for gate. Since it rotates the qubit around the y-axis of the quantum system, this function takes the angle , in radians, as the first parameter. The value of 2*pi
denotes a full rotation of 360°. The second parameter of the function is the position of the qubit to apply the gate to.
However, we should be cautious. The angle does not stop when it “reaches” the state . We can rotate our qubit state beyond it. Then, rather than increasing the probability of measuring 1
, you decrease it.
The gate is easily reversible. We apply another gate with as the parameter.
We started with the goal to increase the casino’s chance to win by 10%. What is 10% in terms of the angle ?
denotes the angle between the basis state and ...