entanglement is neither an operation nor a state, it is a concept describing a particular family of states. Here is a short explanation of this concept.
Let's limit ourselves to 2 qubits stored on 2 registers A and B :
- case 1 : you prepare independently the qubit A in some state (
a1|0> + a2|1>
), then you do the same with the qubit B (b1|0> + b2|1>
). In that case the state of your total system is described as the concatenation of the state of the system A and the state of the system B. This case is intuitive, there is no entanglement between the registers A and B -> we call it a separable state. We can write the state of the system as a1*b1|00> + a1*b2|01> + a2*b1|10> + a2*b2|11>
(tensor product of states on A and B)
In quantum mechanics, there exists other states for the total system AB that cannot be described as the concatenation of the states of the subsystems A and B. This phenomenon has no equivalent in classical mechanics and is not very intuitive. This leads us to :
- case 2 : you start with some state
k1|0> + k2|1>
on the register A and |0>
on register B, then you apply a quantum operator known as CNOT that will "expand" the contents of the two superposition terms of register A to register B. The resulting state k1|00> + k2|11>
on system AB cannot be written as a product (tensor product) of two separate states on A and B. We call it an entangled state.
One particularity of the entangled states is how it behave wrt measurement : in an entangled state, the outcome of a measurement in one of the subsystems can influence the outcome of a measurement on the other. For example with the state in case 2, you have :
- 50% chance of measuring
1
on register A
- 50% chance of measuring
1
on register B
- but if you have already measured the register A and you have gotten
1
, then you have a 100% chance of measuring 1
on register B
This last item "3" would not be true if the state wasn't entangled, in which case the outcome of the measurement on register A couldn't have influenced the probabilities of the outcome on register B.
According to you, it looks like a frequentists approach to probability, Maybe cause we only have experiments to rely on. Is there a probability theory for quantum which is well accepted?
– rusty Aug 01 '18 at 16:46