theorem
proved
c8_protocol_covered
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Foundation.OptionAEmpiricalQueue on GitHub at line 64.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
61 ProtocolFalsifiable .c3OncologyTensor :=
62 protocolFalsifiable_all .c3OncologyTensor
63
64theorem c8_protocol_covered :
65 ProtocolFalsifiable .c8MillerSpan :=
66 protocolFalsifiable_all .c8MillerSpan
67
68theorem every_priority_has_protocol (c : CombinationID) :
69 ProtocolFalsifiable c :=
70 protocolFalsifiable_all c
71
72/-- The two immediate tests are C3 and C8. -/
73theorem immediate_iff (c : CombinationID) :
74 isImmediate c ↔ c = .c3OncologyTensor ∨ c = .c8MillerSpan := by
75 cases c <;> simp [isImmediate, empiricalPriority]
76
77/-- High-or-immediate items are the five tests that should precede the rest. -/
78theorem high_or_immediate_iff (c : CombinationID) :
79 isHighOrImmediate c ↔
80 c = .c2PlanetStrata ∨
81 c = .c3OncologyTensor ∨
82 c = .c5AttentionTensor ∨
83 c = .c8MillerSpan ∨
84 c = .c9RegulatoryCeiling := by
85 cases c <;> simp [isHighOrImmediate, empiricalPriority]
86
87/-- Immediate empirical tests. -/
88def immediateTests : List CombinationID :=
89 [.c3OncologyTensor, .c8MillerSpan]
90
91/-- High-priority empirical tests after the immediate pair. -/
92def highPriorityTests : List CombinationID :=
93 [.c2PlanetStrata, .c5AttentionTensor, .c9RegulatoryCeiling]
94