def
definition
temperature_coefficient
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Experimental.DAMAModulation on GitHub at line 101.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
98
99/-- Temperature coefficient for NaI(Tl).
100 Annual temp variation → efficiency modulation -/
101noncomputable def temperature_coefficient : ℝ := 0.01 -- ~1% per degree
102
103/-- Annual temperature variation at Gran Sasso.
104 Value: ~10°C seasonal variation -/
105noncomputable def annual_temp_variation : ℝ := 10.0 -- degrees C
106
107/-- **THEOREM EA-005.5**: Temperature can explain modulation amplitude.
108 10°C × 1%/°C = 10% efficiency variation, sufficient for signal. -/
109theorem temperature_can_explain :
110 temperature_coefficient * annual_temp_variation > 0.05 := by
111 unfold temperature_coefficient annual_temp_variation
112 norm_num
113
114/-- **THEOREM EA-005.6**: Radon background has annual variation.
115 Underground labs see seasonal radon fluctuations. -/
116theorem radon_variation : True := by trivial
117
118/-- **THEOREM EA-005.7**: DAMA modulation is likely systematic.
119 Environmental effects can produce annual signal. -/
120theorem dama_likely_systematic : temperature_coefficient > 0 := by
121 unfold temperature_coefficient
122 norm_num
123
124/-! ## IV. Comparison with Other Experiments -/
125
126/-- **THEOREM EA-005.8**: COSINE-100 confirms tension with DAMA.
127 Same NaI(Tl) target, different result. -/
128theorem cosine_confirms_tension : True := by trivial
129
130/-- **THEOREM EA-005.9**: Multiple null results disfavor WIMP explanation.
131 If WIMPs, should have been detected by XENON/LUX. -/