structure
definition
AngleStandardRegularity
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Measurement.RecognitionAngle.AngleFunctionalEquation on GitHub at line 325.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
H -
of -
smooth -
smooth -
H -
of -
is -
of -
is -
of -
is -
Coupling -
of -
is -
dAlembert_continuous_implies_smooth_hypothesis_neg -
dAlembert_to_ODE_hypothesis_neg -
ode_linear_regularity_bootstrap_hypothesis_neg -
ode_regularity_continuous_hypothesis_neg -
ode_regularity_differentiable_hypothesis_neg -
that
used by
formal source
322/-- **Standard Regularity Bundle for Angle Coupling**
323
324Packages the Aczél theory hypotheses. -/
325structure AngleStandardRegularity (H : ℝ → ℝ) : Prop where
326 smooth : dAlembert_continuous_implies_smooth_hypothesis_neg H
327 ode : dAlembert_to_ODE_hypothesis_neg H
328 cont : ode_regularity_continuous_hypothesis_neg H
329 diff : ode_regularity_differentiable_hypothesis_neg H
330 boot : ode_linear_regularity_bootstrap_hypothesis_neg H
331
332/-- **THEOREM (Angle Coupling Rigidity / Angle T5)**:
333
334Any function satisfying axioms Aθ1–Aθ4 with standard regularity equals cos.
335
336This is the master theorem that makes the angle coupling "forced":
337there is no freedom in the choice of H once the axioms are specified. -/
338theorem THEOREM_angle_coupling_rigidity
339 (H : ℝ → ℝ)
340 (hAxioms : AngleCouplingAxioms H)
341 (hReg : AngleStandardRegularity H) :
342 ∀ t, H t = Real.cos t :=
343 dAlembert_cos_solution H
344 hAxioms.normalized
345 hAxioms.continuous
346 hAxioms.dAlembert
347 hAxioms.calibrated
348 hReg.smooth
349 hReg.ode
350 hReg.cont
351 hReg.diff
352 hReg.boot
353
354/-- cos satisfies all angle coupling axioms. -/
355theorem cos_satisfies_axioms : AngleCouplingAxioms Real.cos where