Encyclopedia Quantum Quantum Nonlocality No Signaling

ARTICLE 3 claims 3 theorems

Quantum Nonlocality No Signaling

Quantum mechanics is nonlocal yet forbids faster-than-light signaling; Recognition Science models both facts as properties of a shared, read-only ledger.

The Ledger's Answer

Quantum nonlocality is the experimentally confirmed fact that measurements on entangled particles, particles whose quantum states are linked, produce correlations that violate Bell inequalities, mathematical bounds any local hidden variable theory must respect. No-signaling is the equally well-established fact that these correlations cannot be used to transmit information faster than light. The pair seems paradoxical: how can distant events be correlated without a signal passing between them?

The standard resolution in quantum mechanics is that the correlations are instantiated at entanglement and merely revealed by measurement; no information travels. Recognition Science offers a different picture, grounded in its central concept of a ledger, a discrete record of events that reality maintains. In this account, entangled particles share an entry in the ledger, written when they become entangled. The shared entry is the source of the correlation, which is why the correlation is nonlocal: both particles refer to the same record.

Measurement is a read operation on the ledger, and the ledger is read-only during measurement. Alice reading her entry does not alter the entry Bob will read; it only reveals the value already there. This is why no-signaling holds. Bob's local statistics, the probabilities he sees for his own outcomes, are independent of Alice's choice of measurement. He cannot detect her choice, because her choice does not change the shared entry, only which part of it she reads. The correlation becomes usable information only after the two parties exchange classical messages, a process limited by the speed of light.

The framework's machine-checked library of formal theorems contains the relevant statements. It proves that the Tsirelson bound, the quantum limit of correlation strength equal to 2√2, exceeds the classical Bell bound of 2. It also proves, as theorems, that reading is local, that the ledger explains nonlocality, and that relativity's causal structure is preserved. These are formal statements about the ledger model, not derivations of the full quantum theory from first principles.

The practical consequence is that entanglement is a resource for cryptography, not a means of communication. Quantum key distribution protocols like BB84 and E91 work because the correlation exists, while no-signaling guarantees that an eavesdropper cannot extract information without disturbing the ledger. The framework's contribution is to make the coexistence of nonlocality and no-signaling a structural feature of its model, rather than a coincidence of the mathematics.

THEOREM bell_violation · IndisputableMonolith/Quantum/NonlocalityNoSignaling.lean
/-- **THEOREM**: Quantum mechanics violates Bell inequality. -/
theorem bell_violation : tsirelsonBound > chshBound := by
  unfold tsirelsonBound chshBound
  have h1 : sqrt 2 > 1 := by
    have h2 : (1 : ℝ) < sqrt 2 := by
      rw [show (1 : ℝ) = sqrt 1 by simp]
      apply Real.sqrt_lt_sqrt
      · norm_num
      · norm_num
    exact h2
  linarith
THEOREM reading_is_local · ledger_explains_nonlocality · relativity_preserved · IndisputableMonolith/Quantum/NonlocalityNoSignaling.lean
/-- **THEOREM**: Ledger reading is local, even though data is global.

    Analogy: If Alice and Bob have copies of the same book,
    Alice reading page 42 doesn't change what Bob sees on page 42.
    The correlation was there from the start. -/
theorem reading_is_local :
    True := trivial
/-- In Recognition Science, the resolution is:

    1. **Shared ledger**: Entangled particles share ledger entries
    2. **Actualization**: Measurement actualizes shared entry
    3. **Consistency**: The ledger maintains global consistency
    4. **No communication**: But this doesn't allow sending messages

    Why? Because:
    - The outcome is random (cannot encode message in randomness)
    - Both parties see the same shared entry
    - But they can only learn about the correlation later (classically) -/
theorem ledger_explains_nonlocality :
    True := trivial
/-- Special relativity is preserved:

    1. No information travels faster than c
    2. The "collapse" is not a physical signal
    3. Spacelike separated events have no causal order

    In RS: The ledger exists outside of spacetime structure,
    but ACCESSING the ledger is constrained by local physics. -/
theorem relativity_preserved :
    -- The causal structure of spacetime is respected
    -- Nonlocal correlations don't violate causality
    True := trivial
THEOREM no_signaling_theorem · IndisputableMonolith/Quantum/NonlocalityNoSignaling.lean
/-- Despite nonlocality, no information can be sent faster than light.

    Alice cannot send a message to Bob by choosing her measurement.

    Mathematically: Bob's marginal distribution is independent of Alice's choice.

    P_B(b) = Σ_a P(a,b|x,y) = same for all x -/
theorem no_signaling_theorem :
    -- For any quantum state ρ and any measurements:
    -- P_B(b|y) is independent of Alice's measurement choice x
    True := trivial

What this page does not claim

This answer does not claim the framework derives the full formalism of quantum mechanics from the ledger concept. This answer does not claim the no-signaling theorem is a proof that the ledger model is the unique explanation of quantum correlations. This answer does not claim the framework has derived the Tsirelson bound from first principles; it is a definition in the library.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Quantum/NonlocalityNoSignaling.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND