Can you find a single entangled atom in a haystack.

In summary: If you have a pair of particles (perhaps atoms for example) that are entangled, and one of them is mixed in amongst a whole bunch of other atoms of the same species, yet not entangled; could you differentiate in some way the entangled atom from the rest WITHOUT destroying the existing state of entanglement?Yes, you could differentiate the entangled atom from the rest of the atoms by looking for the atom that is being levitated by the lasers.
  • #1
BernieM
281
6
If you have a pair of particles (perhaps atoms for example) that are entangled, and one of them is mixed in amongst a whole bunch of other atoms of the same species, yet not entangled; could you differentiate in some way the entangled atom from the rest WITHOUT destroying the existing state of entanglement?

For example, press your FLEA button (Find Lost Entangled Atom) and the entangled atom gives off a blue light so it stands out from the rest of the atoms around it.

Intuitively I think not, but I can't fully explain why I don't think it can be done. My guess is that any entanglement would have to be destroyed to accomplish it.
 
Physics news on Phys.org
  • #2
Well, if the atom in the haystack is remaining entangled to the other atom, you should look to see if there is a vacuum chamber hidden in the haystack. Follow the electric cord (the one powering the cryo-pumps and the lasers) to the vacuum chamber. Your atom will be the one levitated by the lasers.

Other than that, no. For all you know, there are many entanglement relationships in that haystack.
 
  • Like
Likes hsdrop and Nugatory
  • #3
BernieM said:
If you have a pair of particles (perhaps atoms for example) that are entangled, and one of them is mixed in amongst a whole bunch of other atoms of the same species, yet not entangled; could you differentiate in some way the entangled atom from the rest WITHOUT destroying the existing state of entanglement?

You would be hard pressed to differentiate an entangled particle from one that is not entangled under any circumstance.

The normal technique for observing entanglement between 2 particles requires you to know WHICH two particles are entangled. Second, you must know the specific type of entanglement to look for (spin entanglement can be + or - for example). Last, there is no good way to rule out - in a single case - that the results actually represent unentangled particles (which could be misinterpreted as being entangled).
 
  • #4
No, you won't be able to find it. You won't be able to reject any of the wheat without doing a measurement that could ruin the entanglement.

With clever measurements you might be able to eliminate a surprising amount of wheat, though. For example, consider the ##n=2## case. What's effectively happening is that you're trying to distinguish between the state ##a = I \otimes (|00\rangle + |11\rangle)## and the state ##b = (|00\rangle + |11\rangle) \otimes I##.

You might expect to succeed at most 75% of the time (50% of the time measuring the unentangled qubit will give a disagreeing answer, and when that fails you still have a 50% change to win by random guessing). But actually the trace distance between those two states is about 0.866:

Code:
import numpy as np
def td(x, y):
    return 0.5*np.sum(np.abs(np.linalg.eig(x-y)[0]))

I = np.eye(2)/2.0
E = np.mat([[1,0,0,1],[0,0,0,0],[0,0,0,0],[1,0,0,1]])/2.0
a = np.kron(E, I)
b = np.kron(I, E)
print(td(a,b))
#>>> 0.866025403784

Meaning the maximum success rate for any measurement attempting to distinguish between those two state is ##1/2 + 0.866/2 \approx 93\%##. (These measurements are going to decohere the system.) You get the same success rate when the extra qubit is in a known state like ##|0\rangle##, instead of the maximally mixed state.
 
  • #5
BernieM said:
If you have a pair of particles (perhaps atoms for example) that are entangled,
Entangled on what property?
 
  • #6
Nugatory said:
Entangled on what property?

Say polarization, horizontal or vertical.
 

1. Can entangled atoms be found in a haystack?

Yes, it is possible to find entangled atoms in a haystack. However, the likelihood of finding one is extremely low due to the large number of atoms in a haystack and the delicate nature of entanglement.

2. How do entangled atoms end up in a haystack?

Entangled atoms can end up in a haystack through various processes such as natural decay, human activities, or environmental factors. They can also be intentionally placed in a haystack for research purposes.

3. What is the significance of finding a single entangled atom in a haystack?

Finding a single entangled atom in a haystack can provide valuable insights into the nature of quantum entanglement and its effects on macroscopic objects. It can also have practical applications in fields such as quantum computing and communication.

4. How can scientists distinguish an entangled atom from other atoms in a haystack?

Scientists use specialized equipment and techniques such as quantum state tomography and entanglement witness measurements to identify entangled atoms in a haystack. These methods can detect subtle differences in the properties of entangled atoms compared to non-entangled ones.

5. Is it possible to extract an entangled atom from a haystack without disrupting its entanglement?

No, it is not possible to extract an entangled atom from a haystack without disrupting its entanglement. The act of extraction would require interaction with the atom, which would break its entanglement with other atoms. Therefore, it is crucial to handle entangled atoms with extreme care to maintain their entangled state.

Similar threads

  • Quantum Physics
Replies
18
Views
2K
Replies
3
Views
1K
Replies
13
Views
3K
  • Quantum Interpretations and Foundations
Replies
7
Views
1K
Replies
11
Views
2K
  • Quantum Interpretations and Foundations
Replies
25
Views
1K
Replies
11
Views
4K
  • Quantum Physics
Replies
4
Views
2K
Replies
10
Views
13K
  • Quantum Physics
Replies
2
Views
2K
Back
Top