Bagaimana pengukuran satu qubit memengaruhi yang lain?

21

Untuk mewakili keadaan komputer kuantum, semua qubit berkontribusi pada satu vektor keadaan (ini adalah salah satu perbedaan utama antara komputasi kuantum dan klasik seperti yang saya pahami). Pemahaman saya adalah bahwa itu mungkin untuk mengukur hanya satu qubit dari sistem multi qubit. Bagaimana mengukur bahwa satu qubit memengaruhi keseluruhan sistem (khususnya, bagaimana hal itu memengaruhi vektor keadaan)?

heather
sumber

Jawaban:

15

Ada banyak cara berbeda dalam memandang qubit, dan formalisme vektor negara hanyalah salah satunya. Dalam pengertian linear-aljabar umum pengukuran diukur ke atas dasar. Di sini saya akan memberikan wawasan dengan contoh dari sudut pandang Pauli yang dapat diamati, yaitu model sirkuit QC yang biasa.

Pertama, yang menarik adalah dasar vektor negara disediakan - setiap operator pengukuran dilengkapi dengan set status eigen, dan pengukuran apa pun yang Anda lihat (mis. X,Y,Z,XX,XZ , dll.) tentukan dasar yang paling baik bagi Anda untuk menulis vektor keadaan. Cara termudah untuk menjawab pertanyaan Anda adalah jika Anda tahu dasar mana yang menarik bagi Anda, dan yang lebih penting, apakah itu bolak-balik dengan pengukuran yang baru saja Anda buat .

Jadi demi kesederhanaan, katakanlah Anda mulai dengan dua qubit berpasangan dalam status arbitrer yang ditulis dalam Z dasar untuk kedua qubit:

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

Yang paling sederhana mungkin pengukuran Anda bisa membuat akan , yaitu Z operator pada qubit pertama, diikuti oleh Z 2 , yang Z operator pada qubit kedua. Apa yang dilakukan pengukuran? Ini memproyeksikan negara ke salah satu status eigen. Anda dapat menganggap ini sebagai menghilangkan semua kemungkinan jawaban yang tidak konsisten dengan jawaban yang baru saja kita ukur. Sebagai contoh, katakanlah kita mengukur Z 1 dan memperoleh hasil 1 , maka negara yang dihasilkan kita akan memiliki akan:Z1ZZ2ZZ11

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

Perhatikan bahwa koefisien di depan hanya untuk renormalisasi. Jadi probabilitas kami ukur adalah 1Z2=01|c|2+|d|2|c2|. Note this is different from the probability we had in the initial state, which was |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)

Cara yang baik untuk memeriksa pemahaman Anda: Berapa probabilitas mengukur setelah Z 1 = 1 pengukuran di atas? Berapa probabilitas jika kita belum membuat Z 1 pengukuran? Kemudian pertanyaan yang lebih rumit adalah dengan melihat operator produk yang bertindak di kedua qubit sekaligus, misalnya, bagaimana pengukuran Z 1 Z 2 = + 1 mempengaruhi keadaan awal? Di sini Z 1 Z 2 mengukur produk dari dua operator.X=+1Z1=1Z1Z1Z2=+1Z1Z2

Emily Tyhurst
sumber
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

n|ψH2nH2C2

|ψ=x{0,1}nux|x
for some coefficients uxC such that x|ux|2=1.
  • |φ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.
Niel de Beaudrap
sumber
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!

ahelwer
sumber