Documentation

CsdLean4.Empirical.QM.QuantumEraser

Empirical/QM/QuantumEraser: the quantum eraser (complementarity + which-path erasure) #

The quantum eraser demonstrates complementarity: entangling a system qubit (the two interferometer paths) with a which-path marker qubit destroys interference — but erasing the which-path information (measuring the marker in the conjugate basis) restores it, in the marker-conditioned joint statistics.

Setup: the maximally-entangled path–marker state |Φ⟩ = (|00⟩ + |11⟩)/√2. The system is read in the interference basis with interferometer phase φ, |φ_a⟩ ∝ |0⟩ + a·e^{iφ}|1⟩ (a = ±1); the marker in the erasing (conjugate) basis |c⟩ ∝ |0⟩ + c|1⟩ (c = ±1). The Born joint probability is

P(a, c) = (1 + a·c·cos φ)/4.

The contrast — flat marginal vs full-visibility conditioned fringe — is the eraser. The "delayed choice" version is the same statistics: whether to erase can be chosen after the system is read.

Experimental verification: Kim et al. 2000 (delayed-choice eraser); Scully–Drühl 1982 (proposal). CSD note: the marker measurement is a de-isolation forming a record; erasure = reading that record in the conjugate basis, which is why the interference is recoverable only in the conditioned (post-selected) subensemble — no interference is ever "restored" to the ignored marginal.

References #

Empirical/CSD/MachZehnderVolume.lean (single-qubit interference fringe cos²(φ/2)); Empirical/QM/Hardy.lean (the bipartite jointAmplitude pattern); Empirical/Metrology/Ramsey.lean (Complex.sq_norm / normSq_add_mul_I amplitude idiom).

noncomputable def CSD.Empirical.QM.QuantumEraser.jointAmplitude (a b : Fin 2) (ψ : Fin 2 × Fin 2) :

Joint amplitude ⟨a ⊗ b | ψ⟩ for a bipartite state ψ : Fin 2 × Fin 2 → ℂ and single-qubit bras a, b : Fin 2 → ℂ.

Equations
Instances For

    The (unnormalised) maximally-entangled path–marker state |Φ⟩ = |00⟩ + |11⟩.

    Equations
    Instances For
      noncomputable def CSD.Empirical.QM.QuantumEraser.sysBra (φ a : ) :
      Fin 2

      The system interference-basis bra |φ_a⟩ ∝ |0⟩ + a·e^{iφ}|1⟩ (unnormalised).

      Equations
      Instances For

        The marker erasing-basis bra |c⟩ ∝ |0⟩ + c|1⟩ (unnormalised, c = ±1).

        Equations
        Instances For
          noncomputable def CSD.Empirical.QM.QuantumEraser.bornP (φ a c : ) :

          The Born joint probability P(a, c) of system outcome a and marker outcome c, with the √2·√2·√2 = √8 normalisation of the three unit vectors baked in.

          Equations
          • One or more equations did not get rendered due to their size.
          Instances For
            theorem CSD.Empirical.QM.QuantumEraser.jointAmp_eq (φ a c : ) :
            jointAmplitude (sysBra φ a) (markBra c) bellVec = 1 + a * c * ((Real.cos φ) - (Real.sin φ) * Complex.I)

            The joint amplitude ⟨φ_a ⊗ c | Φ⟩ = 1 + a·c·(cos φ − i·sin φ) (= 1 + ac·e^{−iφ}).

            theorem CSD.Empirical.QM.QuantumEraser.eraser_joint (φ : ) {a c : } (ha : a = 1 a = -1) (hc : c = 1 c = -1) :
            bornP φ a c = (1 + a * c * Real.cos φ) / 4

            The Born joint probability P(a, c) = (1 + a·c·cos φ)/4 for a, c ∈ {±1} — a φ-dependent interference fringe (present in the marker-conditioned statistics: the erasure).

            theorem CSD.Empirical.QM.QuantumEraser.eraser_no_interference (φ : ) {a : } (ha : a = 1 a = -1) :
            bornP φ a 1 + bornP φ a (-1) = 1 / 2

            No interference in the system marginal: ignoring the marker, ∑_c P(a,c) = 1/2, independent of the interferometer phase φ — the which-path information is present (not erased), so no fringe.

            Bright fringe (erased): the marker-conditioned joint P(+,+) = 1/2 at zero phase.

            Dark fringe (erased): P(+,+) = 0 at phase π — the conditioned fringe has visibility 1 (ranging over the full [0, 1/2]), in contrast to the flat marginal.