Basic Quantum Circuit: States of Individual Qubits

AI Thread Summary
The discussion focuses on understanding the controlled-NOT (CNOT) gate's action on qubits within a quantum circuit. The CNOT gate does not alter the state of the control qubit but inverts the target qubit's state when the control qubit is "1." The participants emphasize the importance of considering entanglement, noting that entangled qubits do not have individual states until measured, and the overall system state must be described collectively. There is confusion regarding the dimensionality of the resulting vector after applying the CNOT gate, as the expected state should reside in an 8-dimensional space rather than a 16-dimensional one. The final state after the first barrier is identified as |q_2q_1q_0⟩ = (1/√2)(|000⟩ + |011⟩), with ongoing uncertainty about the measurement outcomes.
cwill53
Messages
220
Reaction score
40
Homework Statement
For the teleportation quantum circuit below starting with ##|000\rangle## as ##|q_2 q_1 q_0\rangle##:

A. Reproduce the quantum circuit in QISKIT with the result. (screenshot the results)

B. Label both the quantum and classical registers after each operation as previously shown in the recorded notes.

C. Store the Step 1b measurement result in the 0th classical qubit and store Step 3 measurement result in the 1st classical qubit. How should we modify the conditional CNOT and Z-gates in Step 1b and Step 3 so it will produce the same result? Reproduce in QISKIT.

D. For this example, why is the state of the original electron destroyed? How is it related to the no-cloning theorem? If Alice’s state was ##|0\rangle## , do we need quantum teleportation to transfer the state?
Relevant Equations
$$|0\rangle=\begin{bmatrix}
1\\
0
\end{bmatrix}$$

$$|1\rangle=\begin{bmatrix}
0\\
1
\end{bmatrix}$$

$$H=\frac{1}{\sqrt{2}}\begin{bmatrix}
1 & 1\\
1& -1
\end{bmatrix}$$

$$U_{\textup{XOR}}=\begin{bmatrix}
1 & 0 &0 &0 \\
0& 1& 0 &0 \\
0 &0 & 0 & 1\\
0& 0 & 1 & 0
\end{bmatrix}$$

$$I=\begin{bmatrix}
1 &0 \\
0& 1
\end{bmatrix}$$

$$Z=\begin{bmatrix}
1 &0 \\
0& -1
\end{bmatrix}$$
I have done part A so far below, but I'm a bit behind on my reading, so I don't quite understand the action of the controlled-NOT gate on a single qubit.
composer.png


What I have so written so far for part B is:

Let ##\mathcal{H}=(\mathbb{C}^2)^{\otimes 3}##. Let ##|\psi _{q_i}\rangle_k## , ##(i\in\left \{ 0,1,2 \right \})## be the state of the ##i##-th qubit in the register after the action of the ##k##-th gate along the wire carrying the ##i##-th qubit. Since the initial state of each qubit is ##|0\rangle=\begin{bmatrix}
1 & 0
\end{bmatrix}^T##, we have

$$

|\psi _{q_1}\rangle_1=H|0\rangle=\frac{1}{\sqrt{2}}\begin{bmatrix}
1 & 1\\
1& -1
\end{bmatrix}\begin{bmatrix}
1\\
0
\end{bmatrix}=\frac{1}{\sqrt{2}}\begin{bmatrix}
1\\
1
\end{bmatrix}
$$

Since I'm behind on my readings, I'm a bit confused as to the action of the controlled-NOT gate and how it changes both the state of the control and target qubit. I was hoping someone could walk me through this problem.
 
Physics news on Phys.org
cwill53 said:
Since I'm behind on my readings, I'm a bit confused as to the action of the controlled-NOT gate and how it changes both the state of the control and target qubit. I was hoping someone could walk me through this problem.

Entanglements not withstanding, the CNOT does not change the control qubit. They will invert the state of the target qubit for conditions where the control bit is "high" or "up" or "1" (your choice of the symbol set).

The reason I say "entanglements not withstanding", is that entangled qubits don't really have individual states. Instead, until measured, the entangled system of qubits has a single state that can be described by all of the possible qubits state combinations and their probabilities.

In this case, the possible combinations of xy are 00, 01, 10, and 11.
If the probabilities of these four states are a, b, c, and d respectively, then the state of the system is specified as: a00> + b01> + c10> + d11>
applying CNOT with x as control and y as target, you would get: a00> + b01> + d10> + c11>

In the sense that the state of x goes from (a+b)0> + (c+d)1> to (a+b)0> + (d+c)1>, x (the control qubit) does not change states.

In contrast, y (the target qubit) will go from (a+c)0> + (b+d)1> to (a+d)0> + (b+c)1>.

But you need to exercise caution when computing the individual qubit probabilities of an entangled system because only the system description a00> + b01> + c10> + d11> fully describes the system state.
 
Last edited:
.Scott said:
Entanglements not withstanding, the CNOT does not change the control qubit. They will invert the state of the target qubit for conditions where the control bit is "high" or "up" or "1" (your choice of the symbol set).

The reason I say "entanglements not withstanding", is that entangled qubits don't really have individual states. Instead, until measured, the entangled system of qubits has a single state that can be described by all of the possible qubits state combinations and their probabilities.

In this case, the possible combinations of xy are 00, 01, 10, and 11.
If the probabilities of these four states are a, b, c, and d respectively, then the state of the system is specified as: a00> + b01> + c10> + d11>
applying CNOT with x as control and y as target, you would get: a00> + b01> + d10> + c11>

In the sense that the state of x goes from (a+b)0> + (c+d)1> to (a+b)0> + (d+c)1>, x (the control qubit) does not change states.

In contrast, y (the target qubit) will go from (a+c)0> + (b+d)1> to (a+d)0> + (b+c)1>.

But you need to exercise caution when computing the individual qubit probabilities of an entangled system because only the system description a00> + b01> + c10> + d11> fully describes the system state.
I'm still pretty confused as to what exactly I need to do for this problem. I'm trying to figure out what the state of the entire system should be after Step 1a, but it doesn't quite make sense to me. I have

$$

|\psi _{1a}\rangle=(I\otimes_K I)U_{\textup{CNOT}}(H|0 \rangle\otimes_K|0 \rangle )\otimes_KU_{\textup{CNOT}}(II|0 \rangle\otimes_KH|0 \rangle )
$$

but when I actually compute this I get a 16-dimensional vector, when I know the entangled system should live in an 8-dimensional vector space.
 
.Scott said:
Entanglements not withstanding, the CNOT does not change the control qubit. They will invert the state of the target qubit for conditions where the control bit is "high" or "up" or "1" (your choice of the symbol set).

The reason I say "entanglements not withstanding", is that entangled qubits don't really have individual states. Instead, until measured, the entangled system of qubits has a single state that can be described by all of the possible qubits state combinations and their probabilities.

In this case, the possible combinations of xy are 00, 01, 10, and 11.
If the probabilities of these four states are a, b, c, and d respectively, then the state of the system is specified as: a00> + b01> + c10> + d11>
applying CNOT with x as control and y as target, you would get: a00> + b01> + d10> + c11>

In the sense that the state of x goes from (a+b)0> + (c+d)1> to (a+b)0> + (d+c)1>, x (the control qubit) does not change states.

In contrast, y (the target qubit) will go from (a+c)0> + (b+d)1> to (a+d)0> + (b+c)1>.

But you need to exercise caution when computing the individual qubit probabilities of an entangled system because only the system description a00> + b01> + c10> + d11> fully describes the system state.
I've figured out the state of the system at the first barrier. It's
$$|q_2q_1q_0\rangle=\frac{1}{\sqrt{2}}(|000\rangle+|011\rangle)$$
I'm stuck trying to find what happens to the state of the system and what's read onto the classical register as a result of the measurement of the state in the first time slice after the first barrier.
 
Thread 'Help with Time-Independent Perturbation Theory "Good" States Proof'
(Disclaimer: this is not a HW question. I am self-studying, and this felt like the type of question I've seen in this forum. If there is somewhere better for me to share this doubt, please let me know and I'll transfer it right away.) I am currently reviewing Chapter 7 of Introduction to QM by Griffiths. I have been stuck for an hour or so trying to understand the last paragraph of this proof (pls check the attached file). It claims that we can express Ψ_{γ}(0) as a linear combination of...
Thread 'Stacked blocks & pulley system'
I've posted my attempt at a solution but I haven't gone through the whole process of putting together equations 1 -4 yet as I wanted to clarify if I'm on the right path My doubt lies in the formulation of equation 4 - the force equation for the stacked block. Since we don't know the acceleration of the masses and we don't know if mass M is heavy enough to cause m2 to slide, do we leave F_{12x} undetermined and not equate this to \mu_{s} F_{N} ? Are all the equations considering all...
Back
Top