theorem
proved
C_equals_2A
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Measurement.C2ABridgeLight on GitHub at line 16.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
Measurement -
A -
C_equals_2A -
A -
Measurement -
born_weight_from_rate -
initialAmplitudeSquared -
rateAction -
TwoBranchRotation -
A -
Measurement
used by
formal source
13open Real
14
15/-- Lightweight export: existence of C and A with C = 2A and exp(-C) match. -/
16theorem C_equals_2A (rot : TwoBranchRotation) :
17 ∃ (C A : ℝ), C = 2 * A ∧ Real.exp (-C) = initialAmplitudeSquared rot := by
18 use 2 * rateAction rot, rateAction rot
19 refine ⟨by ring, ?_⟩
20 simp only [initialAmplitudeSquared]
21 have h := born_weight_from_rate rot
22 convert h using 2
23 ring
24
25end Measurement
26end IndisputableMonolith