Basic Quantum Circuit: States of Individual Qubits

In summary, the conversation discusses the action of the controlled-NOT gate on a single qubit and how it affects the control and target qubit. It is noted that entangled qubits do not have individual states and their state can only be fully described by all possible qubits state combinations and their probabilities. The conversation also touches on the computation of the individual qubit probabilities and the confusion it can cause when dealing with entangled systems.
  • #1
cwill53
220
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
  • #2
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:
  • Like
Likes cwill53
  • #3
.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.
 
  • #4
.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.
 

FAQ: Basic Quantum Circuit: States of Individual Qubits

What is a qubit and how does it differ from a classical bit?

A qubit, or quantum bit, is the fundamental unit of quantum information. Unlike a classical bit which can be either 0 or 1, a qubit can exist in a superposition of both states simultaneously. This means a qubit can be represented as |ψ⟩ = α|0⟩ + β|1⟩, where α and β are complex numbers that determine the probability amplitudes of the qubit being in state |0⟩ or |1⟩, respectively.

How is the state of an individual qubit represented mathematically?

The state of an individual qubit is represented as a vector in a two-dimensional complex vector space. This vector is often written in the form |ψ⟩ = α|0⟩ + β|1⟩, where |0⟩ and |1⟩ are the basis states and α, β are complex numbers satisfying the normalization condition |α|^2 + |β|^2 = 1. This ensures that the total probability of all possible states is 1.

What is superposition in the context of qubits?

Superposition is a fundamental principle of quantum mechanics where a qubit can exist in a combination of both the |0⟩ and |1⟩ states simultaneously. This is different from a classical bit which can only be in one state at a time. Superposition allows quantum computers to process a vast amount of possibilities simultaneously, providing a significant computational advantage for certain tasks.

What is the significance of the Bloch Sphere in quantum computing?

The Bloch Sphere is a geometrical representation of the pure state space of a single qubit. Any pure state of a qubit can be represented as a point on the surface of the Bloch Sphere. The north and south poles of the sphere represent the basis states |0⟩ and |1⟩, respectively, while any other point on the sphere represents a superposition of these states. This visualization helps in understanding the state of a qubit and the effects of quantum gates applied to it.

How are measurements performed on a qubit?

Measurements in quantum computing collapse the state of a qubit to one of the basis states, either |0⟩ or |1⟩. The outcome is probabilistic, with the probabilities determined by the amplitudes of the qubit's state before measurement. For a qubit in state |ψ⟩ = α|0⟩ + β|1⟩, the probability of measuring the qubit in state |0⟩ is |α|^2, and the

Similar threads

Replies
1
Views
1K
Replies
1
Views
1K
Replies
3
Views
2K
Replies
3
Views
1K
Replies
3
Views
2K
Replies
1
Views
1K
Replies
1
Views
2K
Back
Top