pith. machine review for the scientific record. sign in
def

isImmediate

definition
show as:
view math explainer →
module
IndisputableMonolith.Foundation.OptionAEmpiricalQueue
domain
Foundation
line
44 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Foundation.OptionAEmpiricalQueue on GitHub at line 44.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

  41  | .c6EriksonReverse => .defer
  42  | .c9RegulatoryCeiling => .high
  43
  44def isImmediate (c : CombinationID) : Prop :=
  45  empiricalPriority c = .immediate
  46
  47def isHighOrImmediate (c : CombinationID) : Prop :=
  48  empiricalPriority c = .immediate ∨ empiricalPriority c = .high
  49
  50theorem c3_immediate : isImmediate .c3OncologyTensor := rfl
  51
  52theorem c8_immediate : isImmediate .c8MillerSpan := rfl
  53
  54theorem c5_high : empiricalPriority .c5AttentionTensor = .high := rfl
  55
  56theorem c2_high : empiricalPriority .c2PlanetStrata = .high := rfl
  57
  58theorem c9_high : empiricalPriority .c9RegulatoryCeiling = .high := rfl
  59
  60theorem c3_protocol_covered :
  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