pith. machine review for the scientific record. sign in
def definition def or abbrev high

isClassical

show as:
view Lean formalization →

A system with given environment coupling is classical when its decoherence time is at most the measurement time. Researchers analyzing the quantum-to-classical transition cite this definition to mark the regime boundary. It is a direct one-line definition that invokes the decoherenceTime function and performs the comparison.

claimA system with environment coupling $E$ (number of modes $N$, strength $g$) is classical at measurement time $t$ if the decoherence time satisfies $τ_D(E) ≤ t$, where $τ_D(E) = τ_0 φ^{-N g}$.

background

The QFT.Decoherence module derives decoherence timescales from the Gap-45 threshold, where coherence is preserved below the threshold and entanglement with the environment produces decoherence above it. EnvironmentCoupling is the structure that records the number of environmental modes and the coupling strength (bounded by 0 ≤ strength ≤ 1). The upstream decoherenceTime definition computes τ_decoherence = τ_0 × φ^(-N × g) using the fundamental coherence time τ_0. The module states that Gap-45 separates quantum information preservation from classical information sharing.

proof idea

One-line definition that applies decoherenceTime to the supplied environment and checks the inequality against the measurement time.

why it matters in Recognition Science

This definition supplies the classical case for the downstream quantum_classical_dichotomy theorem, which proves that for any environment and time the system satisfies isQuantum or isClassical. It completes the Gap-45 mechanism in the QF-009 target, linking decoherence to the point where information is shared with the environment. It leaves open the experimental calibration of the precise Gap-45 numerical value.

scope and limits

Lean usage

example (env : EnvironmentCoupling) (t : ℝ) (h : decoherenceTime env ≤ t) : isClassical env t := h

formal statement (Lean)

 145def isClassical (env : EnvironmentCoupling) (measurementTime : ℝ) : Prop :=

proof body

Definition body.

 146  decoherenceTime env ≤ measurementTime
 147
 148/-- Quantum and classical are complementary. -/

used by (1)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (5)

Lean names referenced from this declaration's body.