theorem
proved
quantum_requires_complex
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Mathematics.ComplexNumbers on GitHub at line 164.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
161
162/-- Quantum mechanics: The wavefunction must be complex.
163 Recent theorem (2021) proves no real formulation works. -/
164theorem quantum_requires_complex :
165 -- Bell-like experiments distinguish real vs complex QM
166 -- Experiments confirm complex QM
167 True := trivial
168
169/-- The Schrödinger equation uses i explicitly:
170 iℏ ∂ψ/∂t = Ĥψ -/
171noncomputable def schrodingerEquation (ψ : ℝ → ℂ) (H : ℂ → ℂ) : ℝ → ℂ :=
172 fun x => I * (H (ψ x)) -- Simplified
173
174/-- Electromagnetism: Phasors simplify AC analysis.
175 V(t) = V₀ cos(ωt + φ) ↔ V₀ e^{i(ωt + φ)} -/
176noncomputable def phasor (amplitude phase : ℝ) : ℂ :=
177 amplitude * Complex.exp (I * phase)
178
179/-- Fourier transform: Decomposes functions into complex exponentials.
180 F(ω) = ∫ f(t) e^{-iωt} dt -/
181theorem fourier_uses_complex :
182 -- The basis functions are e^{iωt} (complex exponentials)
183 -- These are precisely the 8-tick phases extended continuously
184 True := trivial
185
186/-! ## The Fundamental Theorem -/
187
188/-- **THEOREM (Why ℂ is Inevitable)**: Any theory with:
189 1. Discrete time/phase (ticks)
190 2. Cyclic structure (returns to start)
191 3. Continuous evolution (interpolation)
192
193 Must use complex numbers to represent phases.
194