def
definition
theoryConfirmed
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Experiments.Protocols on GitHub at line 225.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
222 status.phi_emergence_falsified
223
224/-- Theory is partially confirmed if ALL predictions pass -/
225def theoryConfirmed (status : TheoryFalsificationStatus) : Prop :=
226 ¬status.eeg_falsified ∧
227 ¬status.mode_ratio_falsified ∧
228 ¬status.healing_falsified ∧
229 ¬status.water_falsified ∧
230 ¬status.phi_emergence_falsified
231
232/-! ## Summary -/
233
234#check EEGProtocol
235#check EEGPrediction
236#check eegPredictions
237#check ModeRatioPrediction
238#check HealingProtocol
239#check WaterPrediction
240#check TheoryFalsificationStatus
241#check theoryFalsified
242
243end Experiments
244end IndisputableMonolith