# Simplified Quantum Eraser Experiment
The quantum eraser experiment demonstrates a profound principle of quantum mechanics: whether or not we observe an interference pattern depends not on whether a particle was physically disturbed, but on whether which-path information is *available in principle*.
This simplified version focuses on the essential components needed to show this effect. While the full Kim et al. (1999) setup uses five detectors, we only need two to reveal the core insight.
## Setup
1. **Photon Source:** Emits entangled photon pairs.
* One photon ("signal") goes to a detection screen (**D0**).
* The other ("idler") goes into a separate optical path where it may be measured.
2. **Double Slit:** The signal photon passes through a double-slit apparatus.
3. **Beam Splitters and Idler Photon Path:**
* The idler photon is split into two cases:
* **Idler A** is routed through a beam splitter (prism), then either to **D1** (path known) or **D2** (path erased).
* **Idler B** goes directly to **D2**, overlapping with the potential destination of Idler A.
* Thus, **D1** receives photons *only* from Idler A (preserving which-path info), while **D2** receives photons from *both* Idler A and B (erasing path info).
4. **Coincidence Counting:** Detections at the main screen (**D0**) are recorded for every signal photon. However, we only see interference patterns when we **correlate** these hits with idler detections at **D2**. When idler detections correlate with **D1**, we see no interference.
## Results
* When the idler photon hits **D1**, we knew it came from **Idler A**
* The which-path information is known
* No interference pattern appears at **D0**.
* When the idler photon hits **D2**, we do not know if it came from **Idler A** or **Idler B**
* The which-path information is erased.
* An interference pattern appears at **D0**
### Key Insight
Unlike the class Double Slit experiment, there is no detector at the slits to confuse whether it plays some role in collapsing the wave function.
The signal photon does not behave as a wave or particle inherently -- its behavior depends on whether the which-path information is *in principle knowable*.
This leads to the central philosophical mystery: it is not the act of measurement alone that determines reality, but the *structure of information*. The potential for knowledge affects what kind of reality becomes manifest.
## Diagram
```graphviz
digraph QuantumEraserSketchAligned {
rankdir=TB;
node [style=filled, fontname="Arial"];
// Define ranks for layout clarity
{ rank=same; Slits; IdlerA; IdlerB; }
{ rank=same; D0; D1; D2; }
// Nodes
Source [
label="Photon Source\n(entangled pair)",
shape=ellipse,
color=yellow
];
Slits [label="Double Slits", shape=box, color=lightblue];
IdlerA [
label="Idler A",
shape=ellipse,
color=lightblue,
style=dashed
];
IdlerB [
label="Idler B",
shape=ellipse,
color=lightblue,
style=dashed
];
Prism [label="Prism / BS", shape=triangle, color=lightyellow];
MirrorA [label="Mirror A", shape=parallelogram, color=gray];
MirrorB [label="Mirror B", shape=parallelogram, color=gray];
D0 [
label="D0\n(screen)",
shape=ellipse,
color=black,
fillcolor=lightblue
];
D1 [
label="D1",
shape=ellipse,
color=black,
fillcolor="#F08080"
];
D1 -> D1_caption [style=invis];
D1_caption [
label="┃ ┃\nPath known (A)\nNo interference",
shape=plaintext,
color="#F08080"
];
D2 [
label="D2",
shape=ellipse,
color=black,
fillcolor="#90ee90"
];
D2 -> D2_caption [style=invis];
D2_caption [
label="╎ ┆ ┃ ┆ ╎\nPath unknown (A or B)\nInterference",
shape=plaintext,
color="#90ee90"
];
// Signal photon path
Source -> Slits [color="#008080"];
Slits -> D0 [color="#008080"];
// Idler photon paths
Source -> IdlerA [style=dashed, color="#008080"];
Source -> IdlerB [style=dashed, color="#008080"];
IdlerA -> Prism [color="#008080"];
Prism -> MirrorA -> D1 [color="#000080"]; // known
Prism -> MirrorB -> D2 [color="#008000"]; // erased
IdlerB -> D2 [color="#008080"];
// Styling
edge [penwidth=1.5];
}
```
<!-- This is a briefish summary I'd written this is based on
In the double slit experiment, it is unclear whether the detector affects the particles' behavior as they pass through the slit. In the quantum eraser experiment, a series of prisms is used to randomly send the particles to 1 of 3 detectors at the end of the experiment past the double slit. When a quantum particle passes through a prism, it is randomly directed in one of two directions with a 50/50 probability. With this setup, the detector can no longer be responsible for affecting the particles' behaviors at the slit since it is moved to the very end of the experiment.
Result:
If a photon hits Detector 1, we know it came from Slit A.
If it hits Detector 2, we know it came from Slit B.
If it hits Detector 3, we don't know which slit it came from.
Detector 3 is the only one that shows the interference pattern. The only thing I can see that changes is the knowledge -- the which-path information -- of which slit the particle came from. My questions: *where* does that knowledge/information exist, and how does the *potential* for information affect reality?
-->