¿Cómo afecta la medición de un qubit a los otros?


21

Para representar el estado de una computadora cuántica, todos los qubits contribuyen a un vector de estado (esta es una de las principales diferencias entre la computación cuántica y la clásica según tengo entendido). Entiendo que es posible medir solo un qubit de un sistema de múltiples qubits. ¿Cómo afecta la medición de ese qubit a todo el sistema (específicamente, cómo afecta al vector de estado)?

Respuestas:


15

Hay muchas formas diferentes de ver qubits, y el formalismo vectorial de estado es solo una de ellas. En un sentido lineal-algebraico general, una medición es una proyección sobre una base. Aquí proporcionaré información con un ejemplo desde el punto de vista observable de Pauli, que es el modelo de circuito habitual de control de calidad.

En primer lugar, es interesante en qué base se proporciona el vector de estado: cada operador de medición viene con un conjunto de estados propios y cualquier medida que observe (por ejemplo , X,Y,Z,XX,XZ , etc.) determine la base que podría ser mejor para usted para escribir el vector de estado. La manera más fácil de responder a su pregunta es si sabe qué base le interesa y, lo que es más importante, si conmuta con la medición que acaba de hacer .

Entonces, por simplicidad, digamos que comienzas con dos qubits acoplados en un estado arbitrario escrito en la base Z para ambos qubits:

|ψ=a|0Z|0Z+b|0Z|1Z+c|1Z|0Z+d|1Z|1Z

Las medidas más simples posibles que podría hacer serían , que es el operador Z en el primer qubit, seguido de Z 2 , el operador Z en el segundo qubit. ¿Qué hace la medición? Proyecta el estado en uno de los estados propios. Puede pensar en esto como eliminar todas las respuestas posibles que sean inconsistentes con la que acabamos de medir. Por ejemplo, digamos que medimos Z 1 y obtenemos el resultado 1 , entonces el estado resultante que tendríamos sería:Z1ZZ2ZZ11

|ψ=1|c|2+|d|2(c|1Z|0Z+d|1Z|1Z)

Tenga en cuenta que el coeficiente en el frente es solo para la renormalización. Entonces nuestra probabilidad de medir es 1Z2=0. Tenga en cuenta que esto es diferente de la probabilidad que teníamos en el estado inicial, que era| a| 2+1|c|2+|d|2|c2||a|2+|c|2.

Suppose the next measurement you make does not commute with the previous one, however. This is trickier because you have to implement a change of basis on the state vector in order to understand the probabilities. With Pauli measurements, though, it tends to be easy since the eigenbases relate in a nice way, that is:

|0Z=12(|0X+|1X)

|1Z=12(|0X|1X)

A good way to check your understanding: What is the probability of measuring X=+1 after the Z1=1 measurement above? What is the probability if we have not made the Z1 measurement? Then a more complicated question is to look at product operators that act on both qubits at once, for instance, how does a measurement of Z1Z2=+1 affect the initial state? Here Z1Z2 measures the product of the two operators.


2
Nice and simple answer. I think it is important to note, that what you describe is only true if you a) perform projective measurements and b) you know the outcome of the measurement. Just keep in mind that in general you will need mixed states to describe the post-measurement state.
M. Stern

7

Suppose that, prior to measurement, your n-qubit system is in some state |ψH2n, where H2C2 is the Hilbert space of a single qubit. Write

|ψ=x{0,1}nux|x
for some coefficients uxC such that x|ux|2=1.
  • If you are measuring the first qubit in the standard basis, define

    |φ0=x{0,1}n1u0x|0|x,|φ1=x{0,1}n1u1x|1|x,
    and let |ψ0=|φ0/φ0|φ0 and |ψ1=|φ1/φ1|φ1. It is not too difficult to show that, if you measure the first qubit and obtain the state |0, the state of the entire system "collapses" to |ψ0, and if you obtain |1 what you obtain is |ψ1.

    This is broadly analogous to the idea of conditional probability distributions: you might think of |ψ0 as the state of the system conditioned on the first qubit being |0, and |ψ1 as the state of the system conditioned on the first qubit being |1 (except of course that the story is a bit more complicated, on account of the fact that the first qubit is not "secretly" in either the state 0 or 1).

  • The above is not strongly dependent on measuring the first qubit: we can define |φ0 and |φ1 in terms of fixing any particular bit in the bit string x to either 0 or 1, summing over only those components which are consistent with either the choice 0 or 1, and proceeding as above.

  • The above is also not strongly dependent on measuring in the standard basis, as Emily indicates. If we wish to consider measuring the first qubit in the basis |α,|β, where |α=α0|0+α1|1 and |β=β0|0+β1|1, we define

    |φ0=(|αα|In1)|ψ=x{0,1}n1(α0u0x+α1u1x)|α|x,|φ1=(|ββ|In1)|ψ=x{0,1}n1(β0u0x+β1u1x)|β|x,
    and then proceeding as above.

6

Less formally-stated than the other answers, but for beginners I like the intuitive method outlined by Prof. Vazirani in this video.

Suppose you have a general two-qbit state:

|ψ=[α00α01α10α11]=α00|00+α01|01+α10|10+α11|11

Now suppose you measure the most-significant (leftmost) qbit in the computational basis (as in, collapse it to either |0 or |1). There are two questions we might ask:

  1. What is the probability that the measured qbit collapses to |0? What about |1?
  2. What is the state of the 2-qbit system after measurement?

For the first question, the intuitive answer is this: take the sum of squares of all amplitudes associated with the value for which you want to find the probability of collapse. So, if you want to know the probability of the measured qbit collapsing to |0, you'd look at the amplitudes associated with cases |00 and |01, because those are the cases where the measured qbit is |0. Thus:

P[|0]=|α00|2+|α01|2

Similarly, for |1 you look at the amplitudes associated with cases |10 and |11, so:

P[|1]=|α10|2+|α11|2

As for the state of the 2-qbit system after measurement, what you do is cross out all the components of the superposition which are inconsistent with the answer you got. So, if you measured |0, then the state after measurement is:

|ψ=α00|00+α01|01+α10|10+α11|11=α00|00+α01|01

However, this state is not normalized - the sum of squares does not add up to 1, and so you have to normalize it:

|ψ=α00|00+α01|01|α00|2+|α01|2

Similarly, if you measured |1 then you'd get:

|ψ=α00|00+α01|01+α10|10+α11|11=α10|10+α11|11

Normalized:

|ψ=α10|10+α11|11|α10|2+|α11|2

And that's how you calculate the action of measuring one qbit in a multi-qbit state, in the simplest case!

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.