Calculating the Posterior Probability
Learn how we can calculate the posterior probability.
We'll cover the following...
- Calculating the posterior probability for a modifier smaller than 1.0
- Calculating the posterior probability for a modifier greater than 1.0
- Refilling the aux_full qubit
- Including the measurement into the circuit
- Calculating the posterior of a female passenger with a first class ticket
- The parameterized quantum circuit
We use the controlled -gate to calculate the posterior probability.
Calculating the posterior probability for a modifier smaller than 1.0
Press + to interact
for step in range(0, len(modifiers)):if sorted_modifiers[step] > 1:# TO BE IMPLEMENTEDpasselse:# apply modifier to the target qubitqc.cry(prob_to_angle(1-sorted_modifiers[step]), target, step*2)qc.cx(step*2,target)
If the modifier is below in the code block after line 6, we need to reduce the target probability by a portion of in line 8. The target
qubit acts as the control qubit. In states when the target
qubit is 1
, we separate a part of 1−modifier and set the controlled qubit to 1. The controlled qubit has the index step*2
. The for
step is 0, and the index of this qubit is 0, too. This qubit acts as a trunk
. We do not work with it anymore.
The controlled rotation does not change the value of the control qubit. Thus, the target
-qubit is 1
in both parts. The following CNOT-gate in line ...