leanified/CoreReader/Evidence.lean
Back to claims · Declarations and proofs
Philosophy 0.1.4 · considered Core 0.1.4. This view uses the repository’s public target catalog, readers and Lean files. Presentation does not change their judgments.
Expand Lean and line explanations · 844 lines
L1import CoreReader.LogicImport CoreReader.Logic, making its checked declarations available to this module; this line states no new philosophical result.
L2import CoreReader.AgencyImport CoreReader.Agency, making its checked declarations available to this module; this line states no new philosophical result.
L4namespace CoreReader.EvidenceOpen namespace CoreReader.Evidence so subsequent declarations receive this module-qualified name.
L5open CoreReader.LogicMake names from CoreReader.Logic available without qualification; this changes name resolution, not assumptions.
L6open CoreReader.AgencyMake names from CoreReader.Agency available without qualification; this changes name resolution, not assumptions.
L8/- An observation records the outcome of a specified test on the represented world. -/Document the intended scope of Record. The corresponding declaration concerns: A record packages a supplied Boolean test and its supplied observed result; provenance and measurement reliability are not fields. This comment is explanatory, not a proof premise.
L9structure Record (W : Type) whereDeclare the data interface Record. A record packages a supplied Boolean test and its supplied observed result; provenance and measurement reliability are not fields.
L10 test : W → BoolStore a specified Boolean test that reads the actual represented world.
L11 observed : BoolStore the observed Boolean outcome to which that test will be compared.
L12/- Compatible worlds reproduce the actual contents of every recorded observation. -/Document the intended scope of Compatible. The corresponding declaration concerns: A world is compatible when every listed test yields its recorded result. The empty record list admits every world. This comment is explanatory, not a proof premise.
L13def Compatible {W : Type} (records : List (Record W)) (w : W) : Prop :=Define Compatible. A world is compatible when every listed test yields its recorded result. The empty record list admits every world.
L14 ∀ r, r ∈ records → r.test w = r.observedRequire every listed record’s actual test at w to equal that record’s observed outcome.
L15/- Inferential support requires the same claim in every evidence-compatible world. -/Document the intended scope of Supports. The corresponding declaration concerns: Support means that the claim holds in every compatible modeled world. It is semantic entailment from records, not a statistical confidence measure. This comment is explanatory, not a proof premise.
L16def Supports {W : Type} (records : List (Record W)) (claim : Claim W) : Prop :=Define Supports. Support means that the claim holds in every compatible modeled world. It is semantic entailment from records, not a statistical confidence measure.
L17 ∀ w, Compatible records w → claim wRequire the very claim to hold in every world compatible with all records; absent compatible worlds this implication alone can be vacuous.
L18/- Articulation identifies concepts, premises, reason contents and an application limit. -/Document the intended scope of Articulation. The corresponding declaration concerns: Packages concept strings, an assumption theory, a list of reason claims, and a scope/limits claim. This comment is explanatory, not a proof premise.
L19structure Articulation (W : Type) whereDeclare the data interface Articulation. Packages concept strings, an assumption theory, a list of reason claims, and a scope/limits claim.
L20 concepts : List StringStore identifiable concept names; strings alone do not establish semantic adequacy.
L21 assumptions : Theory WStore the actual theory stated as the articulation’s assumptions.
L22 reasons : List (Claim W)Store reason contents as propositions about the same world type.
L23 limits : Claim WStore the actual application-limit predicate for those reasons.
L24/- Nonempty identifiable concepts and reasons are procedural articulation requirements. -/Document the intended scope of Articulated. The corresponding declaration concerns: Checks only that concept and reason lists are nonempty; it does not establish truth, relevance, or a relation to the target claim. This comment is explanatory, not a proof premise.
L25def Articulated {W : Type} (a : Articulation W) : Prop :=Define Articulated. Checks only that concept and reason lists are nonempty; it does not establish truth, relevance, or a relation to the target claim.
L26 a.concepts ≠ [] ∧ a.reasons ≠ []Require nonempty concept and reason lists only; this procedural condition is weaker than matching, discharged Grounds.
L27/- This application model interprets an adopted option through its actual outcomes and stated goals/constraints. -/Document the intended scope of ValuePosition. The corresponding declaration concerns: Represents an adopted option, selected option, option-indexed outcomes/reasons, objectives, constraints, starting theory, scope and criticism response; this is a disclosed application adapter. This comment is explanatory, not a proof premise.
L28structure ValuePosition (W : Type) whereDeclare the data interface ValuePosition. Represents an adopted option, selected option, option-indexed outcomes/reasons, objectives, constraints, starting theory, scope and criticism response; this is a disclosed application adapter.
L29 Position : TypeSupply the type of options among which this value position adopts one.
L30 Outcome : TypeSupply the outcome type used to interpret the effects of each option.
L31 adopted : PositionSpecify which option is adopted, separately from which option a world actually selects.
L32 selected : W → PositionRead the actually selected option from each world.
L33 outcome : W → Position → OutcomeInterpret the actual outcome of each option at each world, rather than storing an arbitrary support label.
L34 objective : Outcome → PropState the adopted objective as a predicate on outcomes; its value authority is not proved by this field.
L35 constraints : W → Position → PropState the world- and option-specific constraints checked alongside the objective.
L36 starting : Theory WStore the starting theory; JointAdoption will require it to share a real model with adoption and reasons.
L37 reasons : List (W → Position → Prop)Store reasons parameterized by both world and option, so switching the adopted option changes the assessed reasons.
L38 limits : Claim WSpecify the scope within which this value-assessment procedure claims its conclusions.
L39 relevantCriticism : Claim WIdentify which worlds present relevant criticism; this is an explicit application predicate.
L40 response : W → Option StringStore an optional textual response at each world; its presence does not prove that the criticism is answered adequately.
L41/- The adopted position's claim is derived from the same selected option used by the outcome interpretation. -/Document the intended scope of ValuePosition.commitment. The corresponding declaration concerns: The commitment claim says the world selects this position's adopted option; it is no longer a freely relabeled separate claim field. This comment is explanatory, not a proof premise.
L42def ValuePosition.commitment {W : Type} (v : ValuePosition W) : Claim W :=Define ValuePosition.commitment. The commitment claim says the world selects this position's adopted option; it is no longer a freely relabeled separate claim field.
L43 fun w => v.selected w = v.adoptedDerive the commitment claim by equating actual selection with this very adopted option.
L44/- Assessed consequences concern this adopted option's actual outcome, objective and constraints. -/Document the intended scope of ValuePosition.consequence. The corresponding declaration concerns: Checks this adopted option's modeled outcome against its objective and constraints. This comment is explanatory, not a proof premise.
L45def ValuePosition.consequence {W : Type} (v : ValuePosition W) : Claim W :=Define ValuePosition.consequence. Checks this adopted option's modeled outcome against its objective and constraints.
L46 fun w => v.objective (v.outcome w v.adopted) ∧ v.constraints w v.adoptedDerive the assessed consequence from this adopted option’s actual outcome satisfying the objective and its actual constraints.
L47/- Articulated reasons specialize the actual option-indexed premises to the adopted option. -/Document the intended scope of ValuePosition.activeReasons. The corresponding declaration concerns: Specializes every option-indexed reason to the adopted option for articulation. This comment is explanatory, not a proof premise.
L48def ValuePosition.activeReasons {W : Type} (v : ValuePosition W) : List (Claim W) :=Define ValuePosition.activeReasons. Specializes every option-indexed reason to the adopted option for articulation.
L49 v.reasons.map (fun reason w => reason w v.adopted)Specialize each option-indexed reason to the adopted option to produce its actual articulated world predicate.
L50/- A joint witness excludes inconsistent starts and impossible adoption states. -/Document the intended scope of JointAdoption. The corresponding declaration concerns: Requires one world jointly modeling the starting theory, scope, actual adoption and all adopted-option reasons. This comment is explanatory, not a proof premise.
L51def JointAdoption {W : Type} (v : ValuePosition W) : Prop :=Define JointAdoption. Requires one world jointly modeling the starting theory, scope, actual adoption and all adopted-option reasons.
L52 ∃ w, Models v.starting w ∧ v.limits w ∧ v.commitment w ∧Require one common world for starting assumptions, application limits and actual adoption.
L53 ∀ reason, reason ∈ v.reasons → reason w v.adoptedAt that same witness, require every listed reason for that adopted option to hold together.
L54/- This declared option/outcome adapter checks joint reasons for an assessed consequence; it is not a necessary deductive form for all value justification. -/Document the intended scope of ValueProcedure. The corresponding declaration concerns: Requires nonempty reasons, a joint adoption witness, joint reasons supporting the option's consequence within starting assumptions/scope, and nonempty criticism responses. It does not prove ultimate value correctness. This comment is explanatory, not a proof premise.
L55def ValueProcedure {W : Type} (v : ValuePosition W) : Prop :=Define ValueProcedure. Requires nonempty reasons, a joint adoption witness, joint reasons supporting the option's consequence within starting assumptions/scope, and nonempty criticism responses. It does not prove ultimate value correctness.
L56 v.reasons ≠ [] ∧ JointAdoption v ∧Begin ValueProcedure with nonempty reasons and the complete joint adoption witness.
L57 (∀ w, Models v.starting w → v.limits w →For every world satisfying the actual starting theory and limits, impose the following conditional consequence requirement.
L58 (∀ reason, reason ∈ v.reasons → reason w v.adopted) → v.consequence w) ∧Use the conjunction of all reasons for the adopted option to imply its actual consequence; no individual-reason sufficiency requirement is imposed.
L59 (∀ w, v.limits w → v.relevantCriticism w → ∃ answer, v.response w = some answer ∧ answer ≠ "")Within limits, every relevant criticism must receive a specified nonempty response; this checks recorded response, not persuasiveness.
L60/- A facet carries its specific contents; several different facets can have the same conclusion. -/Document the intended scope of Facet. The corresponding declaration concerns: Defines three distinct facet kinds with different discharge conditions. This comment is explanatory, not a proof premise.
L61inductive Facet (W : Type) whereDeclare the alternatives Facet. Defines three distinct facet kinds with different discharge conditions.
L62 | empirical (records : List (Record W)) (scope conclusion uncertainty : Claim W)An empirical facet stores actual test records together with its scope, conclusion and stated uncertainty predicate.
L63 | inferential (assumptions : Theory W) (conclusion : Claim W)An inferential facet stores its actual premise theory and the conclusion to be entailed from it.
L64 | value (position : ValuePosition W)A value facet stores the entire option/outcome position, including its starting theory, reasons, limits and criticism response.
L65/- The claim referred to by each assessment facet is explicit. -/Document the intended scope of Facet.claim. The corresponding declaration concerns: Extracts the target claim of a facet, using the commitment rather than consequence for a value facet. This comment is explanatory, not a proof premise.
L66def Facet.claim {W : Type} : Facet W → Claim WDefine Facet.claim. Extracts the target claim of a facet, using the commitment rather than consequence for a value facet.
L67 | .empirical _ _ p _ => pRead the empirical facet’s own conclusion p as its claim; records, scope and uncertainty remain assessment inputs.
L68 | .inferential _ p => pRead the inferential facet’s own conclusion p as its claim, separately from its premise theory.
L69 | .value v => v.commitmentThe value facet’s claim is actual selection equaling its own adopted option, derived through v.commitment.
L70/- These disclosed semantic adapters implement selected nature-specific checks; passing them does not establish all real empirical or value adequacy. -/Document the intended scope of FacetDischarged. The corresponding declaration concerns: Dispatches to a different check for each facet kind; these checks have different truth guarantees. This comment is explanatory, not a proof premise.
L71def FacetDischarged {W : Type} : Facet W → PropDefine FacetDischarged. Dispatches to a different check for each facet kind; these checks have different truth guarantees.
L72 | .empirical records scope p uncertainty =>Enter the empirical discharge case with this facet’s actual records, scope, conclusion p and uncertainty predicate.
L73 (∃ w, Compatible records w ∧ scope w) ∧For an empirical facet, require a world compatible with its records and inside its scope, excluding an empty empirical domain.
L74 Supports records (fun w => scope w → p w) ∧ Supports records uncertaintyRequire the records to support the scoped conclusion and the explicitly stated uncertainty predicate.
L75 | .inferential assumptions p => Satisfiable assumptions ∧ Entails assumptions pInferential discharge requires a nonempty model of the actual assumptions and semantic entailment of p from those same assumptions.
L76 | .value v => ValueProcedure vValue discharge is exactly the declared ValueProcedure for that same position, not a proof of ultimate value adequacy.
L77/- This model's semantic adapter identifies the actual assumptions, reason content and limit of a facet. -/Document the intended scope of FacetArticulated. The corresponding declaration concerns: Requires articulation fields to match the facet's own assumptions, reasons and limits; concept strings are not constrained here. This comment is explanatory, not a proof premise.
L78def FacetArticulated {W : Type} (a : Articulation W) : Facet W → PropDefine FacetArticulated. Requires articulation fields to match the facet's own assumptions, reasons and limits; concept strings are not constrained here.
L79 | .empirical records scope _ _ =>In the empirical articulation case, read the actual records and scope whose assumptions/reasons/limits must match.
L80 a.assumptions = singleton (Compatible records) ∧ a.reasons = [Compatible records] ∧ a.limits = scopeThis empirical adapter equates articulated assumptions and reasons with actual record compatibility, and articulated limits with the empirical scope.
L81 | .inferential assumptions _ =>In the inferential case, use this facet’s actual assumption theory as the articulation’s reference.
L82 a.assumptions = assumptions ∧ a.reasons = [Models assumptions] ∧ a.limits = (fun _ => True)This inferential adapter retains the exact premise theory, articulates its model condition as the reason, and uses unrestricted additional limits.
L83 | .value v => a.assumptions = v.starting ∧ a.reasons = v.activeReasons ∧ a.limits = v.limitsRequire value articulation to use exactly this position’s starting theory, adopted-option active reasons and limits.
L84/- A canonical articulation exposes this adapter; the source does not mandate this particular representation of grounds. -/Document the intended scope of canonicalArticulation. The corresponding declaration concerns: Constructs field-aligned articulations by pattern matching; the fixed concept strings are descriptive labels. This comment is explanatory, not a proof premise.
L85def canonicalArticulation {W : Type} : Facet W → Articulation WDefine canonicalArticulation. Constructs field-aligned articulations by pattern matching; the fixed concept strings are descriptive labels.
L86 | .empirical records scope _ _ =>Construct the empirical canonical articulation from the actual record list and scope of the selected facet.
L87 ⟨["recorded test outcomes", "observation conditions"], singleton (Compatible records), [Compatible records], scope⟩Construct empirical articulation naming test outcomes and conditions, using the actual compatibility claim as its premise/reason and the original scope as its limit.
L88 | .inferential assumptions _ =>Construct inferential canonical articulation from this facet’s actual premise theory.
L89 ⟨["stated assumptions", "semantic consequence"], assumptions, [Models assumptions], fun _ => True⟩Construct inferential articulation from the same theory and its actual model predicate, with no extra limit.
L90 | .value v =>Construct the value articulation using the same complete position v.
L91 ⟨["adopted position", "reasons and consequences"], v.starting, v.activeReasons, v.limits⟩Construct value articulation from the actual starting theory, adopted-option reasons and original limits.
L92/- Canonical articulation is connected to the very facet whose grounds it identifies. -/Document the intended scope of canonicalFacetArticulated. The corresponding declaration concerns: Proves all canonical articulations have the required field alignment; no discharge hypothesis is needed for equality by construction. This comment is explanatory, not a proof premise.
L93theorem canonicalFacetArticulated {W : Type} (f : Facet W) :State the checked result canonicalFacetArticulated. Proves all canonical articulations have the required field alignment; no discharge hypothesis is needed for equality by construction.
L94 FacetArticulated (canonicalArticulation f) f := byAssert that canonical articulation is semantically connected to this very facet; the proof checks each facet constructor.
L95 cases f <;> exact ⟨rfl, rfl, rfl⟩Split the three facet constructors; each canonical articulation has exactly the assumptions, reasons and limits required by its matching branch, so all three equalities are reflexive.
L96/- A discharged facet has nonempty canonical reason articulation, including the value procedure's reason requirement. -/Document the intended scope of canonicalArticulated. The corresponding declaration concerns: Given a discharged facet, proves its canonical concept/reason lists are nonempty. The value case uses the discharge premise's reason nonemptiness. This comment is explanatory, not a proof premise.
L97theorem canonicalArticulated {W : Type} (f : Facet W) (h : FacetDischarged f) :State the checked result canonicalArticulated. Given a discharged facet, proves its canonical concept/reason lists are nonempty. The value case uses the discharge premise's reason nonemptiness.
L98 Articulated (canonicalArticulation f) := byGiven this facet’s discharge, require its canonical concepts and reasons to be nonempty.
L99 cases f withCheck canonical articulation separately for empirical, inferential and value facets.
L100 | empirical records scope p uncertainty => simp [Articulated, canonicalArticulation]In this empirical or inferential branch, the canonical concept and reason lists are explicitly nonempty; simplification verifies both articulation requirements.
L101 | inferential assumptions p => simp [Articulated, canonicalArticulation]In this empirical or inferential branch, the canonical concept and reason lists are explicitly nonempty; simplification verifies both articulation requirements.
L102 | value v =>For the value branch, the premise h is ValueProcedure v; its nonempty reasons must establish nonempty canonical active reasons.
L103 refine ⟨by simp [canonicalArticulation], ?_⟩For a value facet, supply nonempty canonical concepts and leave the nonempty active-reason obligation.
L104 simpa [canonicalArticulation, ValuePosition.activeReasons] using h.1Use the discharged value procedure’s nonempty reasons; specializing them to the adopted option preserves nonemptiness.
L105/- This model of the Grounds obligation binds each actual facet to its claim and articulation. Its disclosed FacetDischarged adapters do not replace all source-level assessment responsibilities or prove real adequacy. -/Document the intended scope of Grounds. The corresponding declaration concerns: Grounds packages a nonempty facet list, coverage of a supplied applicability predicate, common claim identity, articulation presence/alignment, and every listed facet's discharge. It is not uniformly a truth certificate for the claim. This comment is explanatory, not a proof premise.
L106/-- organon-map CoreReader.Evidence.GroundsBegin provenance metadata for CoreReader.Evidence.Grounds; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L107organon.grounds#p1 sha256 4ee74dc8617388ee75d63b507176ecb73b8527758b648f7c588d3ae7f3445ec6Register source unit organon.grounds#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L108organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L109organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L110organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L111-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L112def Grounds {W : Type} (claim : Claim W) (articulations : Facet W → Articulation W)Define Grounds. Grounds packages a nonempty facet list, coverage of a supplied applicability predicate, common claim identity, articulation presence/alignment, and every listed facet's discharge. It is not uniformly a truth certificate for the claim.
L113 (actualApplicable : Facet W → Prop) (facets : List (Facet W)) : Prop :=Take actualApplicable independently of the finite list, so coverage is an explicit obligation rather than inferred from list membership.
L114 facets ≠ [] ∧ (∀ facet, actualApplicable facet → facet ∈ facets) ∧Require a nonempty facet list and inclusion of every facet satisfying actualApplicable.
L115 ∀ facet, facet ∈ facets → facet.claim = claim ∧ Articulated (articulations facet) ∧For every listed facet, require the exact claim and a nonempty articulation belonging to that facet.
L116 FacetArticulated (articulations facet) facet ∧ FacetDischarged facetAlso require semantic matching to its actual premises/reasons/limits and discharge by its declared adapter.
L117/- The achievement obligation requires grounds for this very claim, without making observation a universal prerequisite. -/Document the intended scope of AchievementAccountability. The corresponding declaration concerns: Defines achievement accountability as exactly the same Grounds predicate, with no additional execution or achievement proof. This comment is explanatory, not a proof premise.
L118/-- organon-map CoreReader.Evidence.AchievementAccountabilityBegin provenance metadata for CoreReader.Evidence.AchievementAccountability; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L119organon.charter.self-transcendence.limits#p1 sha256 6dade83f0b7fcc004bdb37b6726c15b31b06a377de4e86d506c9d2e67847029dRegister source unit organon.charter.self-transcendence.limits#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L120organon.charter.self-transcendence.limits#p2 sha256 6dade83f0b7fcc004bdb37b6726c15b31b06a377de4e86d506c9d2e67847029dRegister source unit organon.charter.self-transcendence.limits#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L121organon.grounds#p1 sha256 4ee74dc8617388ee75d63b507176ecb73b8527758b648f7c588d3ae7f3445ec6Register source unit organon.grounds#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L122organon.grounds.capabilities#p1 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L123organon.grounds.capabilities#p2 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L124-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L125def AchievementAccountability {W : Type} (achievement : Claim W) (articulations : Facet W → Articulation W)Define AchievementAccountability. Defines achievement accountability as exactly the same Grounds predicate, with no additional execution or achievement proof.
L126 (actualApplicable : Facet W → Prop) (facets : List (Facet W)) : Prop :=Achievement accountability accepts the same actual-applicability predicate and facet list as Grounds.
L127 Grounds achievement articulations actualApplicable facetsDefine accountability directly by Grounds for the very achievement claim; no extra universal observation requirement is added.
L128/- The concrete achievement claim refers to each transition's own before/after states. -/Document the intended scope of transitionAchievement. The corresponding declaration concerns: Defines achievement as understanding/construction expansion between the same modeled transition's before and after states. This comment is explanatory, not a proof premise.
L129def transitionAchievement : Claim TransitionCase :=Define transitionAchievement. Defines achievement as understanding/construction expansion between the same modeled transition's before and after states.
L130 fun transition => Expanded (transitionBefore transition) (transitionAfter transition)The achievement claim is actual expansion between the selected transition’s own before and after states.
L131/- This observation inspects an actually constructed successor and its output under that transition's input condition. -/Document the intended scope of transitionPerformanceRecord. The corresponding declaration concerns: Tests whether that after-state contains successor actually returning one at the transition input, within the two-transition model. This comment is explanatory, not a proof premise.
L132def transitionPerformanceRecord : Record TransitionCase :=Define transitionPerformanceRecord. Tests whether that after-state contains successor actually returning one at the transition input, within the two-transition model.
L133 ⟨fun transition => (transitionAfter transition).constructed.anyThe performance test inspects operations actually constructed in this transition’s after-state.
L134 (fun operation => operation == .successor && decide (operation.run (transitionInput transition) = 1)), true⟩It records true only when successor is present and actually sends the shared transition input to 1.
L135/- The positive report test reads its asserted operation, input and output; it does not verify their presence in the after-state. -/Document the intended scope of transitionReportRecord. The corresponding declaration concerns: Records only the report's announced operation/input/output, not its actual achievement. This comment is explanatory, not a proof premise.
L136def transitionReportRecord : Record TransitionCase :=Define transitionReportRecord. Records only the report's announced operation/input/output, not its actual achievement.
L137 ⟨fun transition =>Begin a record whose test reads the actual transition’s announcement.
L138 let report := transitionAnnouncement transitionBind report to the announcement generated for this same transition.
L139 report.reportedNewOperation == .successor && report.input == 0 && report.expectedOutput == 1, true⟩Test its stated successor, input 0 and expected output 1, recording a positive announcement independently of whether the operation exists.
L140/- Only the genuine extension matches the operation/performance observation in this two-transition model. -/Document the intended scope of transitionPerformanceCompatible. The corresponding declaration concerns: Exhausts inflate/extend to show the actual performance record identifies extension. This comment is explanatory, not a proof premise.
L141theorem transitionPerformanceCompatible :State the checked result transitionPerformanceCompatible. Exhausts inflate/extend to show the actual performance record identifies extension.
L142 ∀ transition, Compatible [transitionPerformanceRecord] transition ↔ transition = .extend := byClaim that matching the actual positive performance record is equivalent to selecting extend.
L143 intro transitionFix an arbitrary actual transition, either inflate or extend, for the record-compatibility equivalence.
L144 constructorProve both directions: performance compatibility implies extend, and extend supplies compatibility.
L145 · intro hAssume this transition matches the actual positive performance record.
L146 have observed := h transitionPerformanceRecord (List.mem_singleton.mpr rfl)Apply compatibility to the actual singleton performance record to obtain its observed test result for this transition.
L147 cases transitionSplit the actual transition into inflate and extend, whose after-states have different operation content.
L148 · cases observedThe inflate state lacks successor, so its performance test cannot equal the recorded true outcome.
L149 · rflThe extend case has the required transition identity by reflexivity.
L150 · intro h; cases hFor the reverse implication, substitute the assumption that the transition is extend.
L151 intro record hr; have hr' := List.mem_singleton.mp hr; subst recordMembership in the singleton record list identifies the arbitrary record with this exact transition record; substitute it before checking its test.
L152 rflEvaluate the actual extend performance record; its successor-at-zero test equals the recorded true outcome.
L153/- A compatible performance observation establishes the same transition's report content and hence its represented expansion. -/Document the intended scope of transitionSupported. The corresponding declaration concerns: Uses performance identification, the concrete new operation and report claim to establish transition expansion in every compatible case. This comment is explanatory, not a proof premise.
L154theorem transitionSupported : Supports [transitionPerformanceRecord] transitionAchievement := byState the checked result transitionSupported. Uses performance identification, the concrete new operation and report claim to establish transition expansion in every compatible case. The following tactic block proves this explicit type.
L155 intro transition compatibleTake an arbitrary transition and its compatibility with the actual performance record; prove expansion for that same transition.
L156 have h := (transitionPerformanceCompatible transition).1 compatibleUse transitionPerformanceCompatible to identify every performance-compatible transition as extend.
L157 subst transitionSubstitute extend for the transition, so the remaining achievement claim concerns its real extended after-state.
L158 have reportTrue : (transitionAnnouncement .extend).claim := byCheck the same system-generated extend report against its actual before/after states: successor is newly constructed and sends input 0 to output 1.
L159 simp [transitionAnnouncement, transitionAfter, transitionInput,Check the same system-generated extend report against its actual before/after states: successor is newly constructed and sends input 0 to output 1.
L160 Announcement.claim, GeneratingSystem.report, generatingSystem, extendedState, baseState, Operation.run]Check the same system-generated extend report against its actual before/after states: successor is newly constructed and sends input 0 to output 1.
L161 exact announcementClaimImpliesExpansion _ reportTrueApply announcementClaimImpliesExpansion to the verified report content to obtain the same transition’s Expanded claim.
L162/- The actual scope is the shared input-zero condition, with no probabilistic inference introduced. -/Document the intended scope of transitionFacet. The corresponding declaration concerns: Packages the performance record, input-zero scope and exact expansion claim as an empirical facet. This comment is explanatory, not a proof premise.
L163def transitionFacet : Facet TransitionCase :=Define transitionFacet. Packages the performance record, input-zero scope and exact expansion claim as an empirical facet.
L164 .empirical [transitionPerformanceRecord] (fun transition => transitionInput transition = 0)Build an empirical facet from the performance record with the exact input-0 transition scope.
L165 transitionAchievement (fun _ => True)Its conclusion is the same transition’s achievement; its uncertainty predicate is explicitly True.
L166/- The empirical assessment has a real compatible witness and supports this scoped achievement. -/Document the intended scope of transitionFacetDischarged. The corresponding declaration concerns: Supplies extension as a nonempty witness, actual support and trivial uncertainty. This comment is explanatory, not a proof premise.
L167theorem transitionFacetDischarged : FacetDischarged transitionFacet := byState the checked result transitionFacetDischarged. Supplies extension as a nonempty witness, actual support and trivial uncertainty. The following tactic block proves this explicit type.
L168 refine ⟨⟨.extend, (transitionPerformanceCompatible _).2 rfl, rfl⟩, ?_, ?_⟩Provide extend as the nonempty empirical witness with compatible performance evidence and the shared input-0 scope; leave scoped support and uncertainty checks.
L169 · intro transition compatible _; exact transitionSupported transition compatibleThe already proved transition support supplies the achievement at any compatible transition, hence within the chosen scope.
L170 · intro _ _; trivialThe explicitly unrestricted uncertainty predicate is True, so this adapter component is immediate; no quantitative uncertainty bound is inferred.
L171/- Every applicable facet of this specified achievement has matching articulation and actual discharged evidence. -/Document the intended scope of transitionAccountable. The corresponding declaration concerns: Builds achievement Grounds with matching claim, scope, canonical articulation and discharged facet. This comment is explanatory, not a proof premise.
L172theorem transitionAccountable :State the checked result transitionAccountable. Builds achievement Grounds with matching claim, scope, canonical articulation and discharged facet.
L173 AchievementAccountability transitionAchievement canonicalArticulationState accountability for the actual transition-achievement predicate with canonical articulation.
L174 (fun facet => facet = transitionFacet) [transitionFacet] := byDeclare transitionFacet the only applicable facet and use precisely that singleton evidence package.
L175 refine ⟨by simp, ?_, ?_⟩Split accountability into nonempty facets, coverage of actual applicability, and matching articulated discharge for each included facet.
L176 · intro facet hf; subst facet; exact List.mem_singleton.mpr rflThe applicability assumption identifies the facet with the one prescribed facet, which belongs to the singleton list.
L177 · intro facet hf; have hf' := List.mem_singleton.mp hf; subst facetSingleton membership identifies the current facet with the prescribed one; substitute it to check its exact claim and grounds.
L178 exact ⟨rfl, canonicalArticulated _ transitionFacetDischarged,Assemble identical claim, nonempty canonical articulation, its semantic connection to this facet, and transitionFacetDischarged.
L179 canonicalFacetArticulated _, transitionFacetDischarged⟩Assemble identical claim, nonempty canonical articulation, its semantic connection to this facet, and transitionFacetDischarged.
L180/- Both actual transitions issue the same positive report about their own identified state pair. -/Document the intended scope of transitionReportCompatible. The corresponding declaration concerns: Shows both transition cases produce the same announced operation/input/output record. This comment is explanatory, not a proof premise.
L181theorem transitionReportCompatible (transition : TransitionCase) :State the checked result transitionReportCompatible. Shows both transition cases produce the same announced operation/input/output record.
L182 Compatible [transitionReportRecord] transition := byState that this transition’s positive report record is compatible with the transition itself, including inflate.
L183 intro record hr; have hr' := List.mem_singleton.mp hr; subst recordMembership in the singleton record list identifies the arbitrary record with this exact transition record; substitute it before checking its test.
L184 rflThe report test only checks the actual positive announcement contents, which evaluate identically for either transition.
L185/- Inflation is a concrete report-compatible counterworld, so the positive report alone does not support the same achievement claim. -/Document the intended scope of transitionReportDoesNotSupport. The corresponding declaration concerns: Uses the inflated transition as a report-compatible non-achievement countermodel. This comment is explanatory, not a proof premise.
L186theorem transitionReportDoesNotSupport :State the checked result transitionReportDoesNotSupport. Uses the inflated transition as a report-compatible non-achievement countermodel.
L187 Compatible [transitionReportRecord] .inflate ∧ ¬ transitionAchievement .inflate ∧Require inflate to match the report while failing the same achievement predicate.
L188 ¬ Supports [transitionReportRecord] transitionAchievement := byConclude that the positive report records therefore do not support the achievement over all compatible transitions.
L189 have noExpansion : ¬ transitionAchievement .inflate := byUnfold the inflate transition: both understood and constructed operation sets are unchanged, so no new-operation witness for Expanded exists.
L190 simp [transitionAchievement, transitionBefore, transitionAfter, Expanded, baseState, inflatedState]Unfold the inflate transition: both understood and constructed operation sets are unchanged, so no new-operation witness for Expanded exists.
L191 exact ⟨transitionReportCompatible _, noExpansion, fun h => noExpansion (h _ (transitionReportCompatible _))⟩Combine positive-report compatibility with the false expansion claim at inflate; any claimed support applied there gives a contradiction.
L192/- These concrete obligations, positive evidence and negative report case all refer to the same state-pair and input semantics. -/Document the intended scope of ConcreteAchievementExample. The corresponding declaration concerns: Combines same-object achievement accountability and supported extension with an unsupported inflation report, preserving before/after/input identities. This comment is explanatory, not a proof premise.
L193def ConcreteAchievementExample : Prop :=Define ConcreteAchievementExample. Combines same-object achievement accountability and supported extension with an unsupported inflation report, preserving before/after/input identities.
L194 AchievementAccountability transitionAchievement canonicalArticulationThe concrete example includes actual accountability for the transition achievement.
L195 (fun facet => facet = transitionFacet) [transitionFacet] ∧Its actual-applicability predicate and list identify the same single transition facet.
L196 Compatible [transitionPerformanceRecord] .extend ∧Require extend to satisfy the actual performance observation.
L197 Supports [transitionPerformanceRecord] transitionAchievement ∧ transitionAchievement .extend ∧Require semantic support for the achievement and its truth at extend.
L198 (Compatible [transitionReportRecord] .inflate ∧ ¬ transitionAchievement .inflate ∧Also retain the report-compatible inflate world in which this achievement is false.
L199 ¬ Supports [transitionReportRecord] transitionAchievement) ∧State the resulting failure of support from reports alone.
L200 (∀ transition, (transitionAnnouncement transition).before = transitionBefore transition ∧For every transition, bind the report’s before state to the actual transition-before state.
L201 (transitionAnnouncement transition).after = transitionAfter transition ∧Bind its after state to that same transition’s actual after state.
L202 (transitionAnnouncement transition).input = transitionInput transition ∧ transitionInput transition = 0)Bind the report input to the actual transition input and explicitly fix that condition to 0.
L203/- The concrete example jointly inhabits accountability, evidence compatibility, actual gain, and the report-only countermodel. -/Document the intended scope of concreteAchievementExample. The corresponding declaration concerns: Assembles the concrete performance support, reporting countermodel and exact state/input links. This comment is explanatory, not a proof premise.
L204theorem concreteAchievementExample : ConcreteAchievementExample := byState the checked result concreteAchievementExample. Assembles the concrete performance support, reporting countermodel and exact state/input links. The following tactic block proves this explicit type.
L205 refine ⟨transitionAccountable, (transitionPerformanceCompatible _).2 rfl, transitionSupported,Assemble the actual achievement’s accountability, extend performance compatibility and semantic support in the concrete example.
L206 transitionSupported .extend ((transitionPerformanceCompatible _).2 rfl),Apply that same support to the extend witness to establish actual expansion there.
L207 transitionReportDoesNotSupport, ?_⟩Include the report-compatible inflate counterexample and leave the same-before/after/input relationships.
L208 intro transition; exact ⟨rfl,rfl,rfl,rfl⟩For either transition, all report-to-state and input-0 links hold by the definitions themselves.
L209/- Semantic evidence yields truth only at a world that actually satisfies those evidence conditions. -/Document the intended scope of achievementNeedsSupport. The corresponding declaration concerns: Applies supplied compatible-world support to the arbitrary actual claim and separately includes the checked concrete transition example. This comment is explanatory, not a proof premise.
L210/-- organon-map CoreReader.Evidence.achievementNeedsSupportBegin provenance metadata for CoreReader.Evidence.achievementNeedsSupport; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L211organon.charter.self-transcendence.limits#p1 sha256 6dade83f0b7fcc004bdb37b6726c15b31b06a377de4e86d506c9d2e67847029dRegister source unit organon.charter.self-transcendence.limits#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L212organon.charter.self-transcendence.limits#p2 sha256 6dade83f0b7fcc004bdb37b6726c15b31b06a377de4e86d506c9d2e67847029dRegister source unit organon.charter.self-transcendence.limits#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L213organon.grounds#p1 sha256 4ee74dc8617388ee75d63b507176ecb73b8527758b648f7c588d3ae7f3445ec6Register source unit organon.grounds#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L214organon.grounds.capabilities#p1 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L215organon.grounds.capabilities#p2 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L216-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L217theorem achievementNeedsSupport {W : Type} (achievement : Claim W) (records : List (Record W))State the checked result achievementNeedsSupport. Applies supplied compatible-world support to the arbitrary actual claim and separately includes the checked concrete transition example.
L218 (actual : W) (reliableHere : Compatible records actual) (support : Supports records achievement) :Assume the chosen actual world matches all records and those records already support the achievement.
L219 achievement actual ∧ ConcreteAchievementExample :=Conclude truth of the achievement at that actual world, together with the separately constructed concrete achievement example.
L220 ⟨support actual reliableHere, concreteAchievementExample⟩Apply the assumed support to the actual evidence-compatible world, and pair that local truth with the separately proved concrete achievement example.
L221/- Weakening a conclusion preserves support; this makes no claim about weakening the evidence. -/Document the intended scope of supportWeakening. The corresponding declaration concerns: Preserves support when a supported claim implies a weaker claim at every world; it does not weaken the record set. This comment is explanatory, not a proof premise.
L222/-- organon-map CoreReader.Evidence.supportWeakeningBegin provenance metadata for CoreReader.Evidence.supportWeakening; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L223organon.grounds#p1 sha256 4ee74dc8617388ee75d63b507176ecb73b8527758b648f7c588d3ae7f3445ec6Register source unit organon.grounds#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L224organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L225organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L226organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L227-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L228theorem supportWeakening {W : Type} (records : List (Record W)) (p q : Claim W)State the checked result supportWeakening. Preserves support when a supported claim implies a weaker claim at every world; it does not weaken the record set.
L229 (support : Supports records p) (weaker : ∀ w, p w → q w) : Supports records q :=Assume support for p and a world-by-world implication from p to q; conclude support for q using the same records.
L230 fun w hw => weaker w (support w hw)At each compatible world w, first derive p using the unchanged records, then apply the supplied implication weaker to obtain q.
L231/- Discarding the only informative observation loses support for the unchanged switch claim. -/Document the intended scope of evidenceWeakeningCanLoseSupport. The corresponding declaration concerns: Provides a true Boolean observation supporting equality to true and shows deleting that record loses this support. This comment is explanatory, not a proof premise.
L232theorem evidenceWeakeningCanLoseSupport :State the checked result evidenceWeakeningCanLoseSupport. Provides a true Boolean observation supporting equality to true and shows deleting that record loses this support.
L233 Supports ([⟨id, true⟩] : List (Record Bool)) (fun w => w = true) ∧The single identity observation supports that the Boolean world is true.
L234 ¬ Supports ([] : List (Record Bool)) (fun w => w = true) := byDeleting that observation leaves empty records, which do not support the unchanged claim.
L235 refine ⟨?_, ?_⟩Split the supported one-record claim from the failure of the same claim after deleting that record.
L236 · intro w hw; exact hw ⟨id,true⟩ (by simp)Read the informative identity test from compatibility; it directly states that the Boolean world is true.
L237 · intro h; have bad := h false (by intro r hr; cases hr); cases badWith no records, false is compatible; evaluating purported support there refutes the unchanged true-world claim.
L238/- Restricting the quantified application domain preserves a supported universal conclusion. -/Document the intended scope of scopeRestriction. The corresponding declaration concerns: Restricts a universally supported property from a wider input domain to an included narrower domain, for arbitrary world and input types. This comment is explanatory, not a proof premise.
L239/-- organon-map CoreReader.Evidence.scopeRestrictionBegin provenance metadata for CoreReader.Evidence.scopeRestriction; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L240organon.grounds#p1 sha256 4ee74dc8617388ee75d63b507176ecb73b8527758b648f7c588d3ae7f3445ec6Register source unit organon.grounds#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L241organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L242organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L243organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L244-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L245theorem scopeRestriction {W X : Type} (records : List (Record W)) (p : W → X → Prop)State the checked result scopeRestriction. Restricts a universally supported property from a wider input domain to an included narrower domain, for arbitrary world and input types.
L246 (wide narrow : X → Prop) (included : ∀ x, narrow x → wide x)Take broad and narrow application domains and assume every narrow-domain input is in the broad domain.
L247 (support : Supports records (fun w => ∀ x, wide x → p w x)) :Assume the same records support p at every input in the broad domain.
L248 Supports records (fun w => ∀ x, narrow x → p w x) :=Conclude support at every input in the narrower domain; neither the evidence nor predicate p changes.
L249 fun w hw x hx => support w hw x (included x hx)For a compatible world and narrow-domain input x, included converts narrow membership to broad membership; apply the original broad support there.
L250/- Actual applicability, rather than an optional classifier label, determines facet responsibility. -/Document the intended scope of Duties. The corresponding declaration concerns: Requires every facet satisfying the supplied applicability predicate to be discharged. This comment is explanatory, not a proof premise.
L251def Duties {W : Type} (applicable : Facet W → Prop) : Prop :=Define Duties. Requires every facet satisfying the supplied applicability predicate to be discharged.
L252 ∀ f, applicable f → FacetDischarged fRequire every actually applicable facet to pass its own discharge condition.
L253def LabeledDuties {W : Type} (_labels : List String) (applicable : Facet W → Prop) : Prop :=Define LabeledDuties. Defines labeled duties by ignoring all labels and keeping only the applicability-based duties.
L254 Duties applicableDefine labeled duties by exactly the original applicability duties; the labels supply no waiver.
L255/- Combining applicable facets requires both sets of substantive duties. -/Document the intended scope of assessmentUnion. The corresponding declaration concerns: Proves that discharging the union of two applicability predicates is equivalent to discharging each separately. This comment is explanatory, not a proof premise.
L256/-- organon-map CoreReader.Evidence.assessmentUnionBegin provenance metadata for CoreReader.Evidence.assessmentUnion; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L257organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L258organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L259organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L260-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L261theorem assessmentUnion {W : Type} (a b : Facet W → Prop) :State the checked result assessmentUnion. Proves that discharging the union of two applicability predicates is equivalent to discharging each separately.
L262 Duties (fun f => a f ∨ b f) ↔ Duties a ∧ Duties b := byEquate duties for the union of two applicability predicates with fulfillment of both sets of duties.
L263 constructorProve both directions between duty on the union applicability predicate and simultaneous duties on its two components.
L264 · intro h; exact ⟨fun f hf => h f (Or.inl hf), fun f hf => h f (Or.inr hf)⟩Restrict the union duty to each applicable-facet predicate using the matching disjunction injection.
L265 · rintro ⟨ha,hb⟩ f (hf|hf); exact ha f hf; exact hb f hfUnpack both duty sets, split actual applicability into its left/right case, and discharge that very facet using the corresponding duty.
L266/- Omitting or changing labels does not remove an applicable duty. -/Document the intended scope of labelsCannotWaive. The corresponding declaration concerns: Proves changing labels cannot change duties because labels were ignored by definition; no external classification mechanism is analyzed. This comment is explanatory, not a proof premise.
L267/-- organon-map CoreReader.Evidence.labelsCannotWaiveBegin provenance metadata for CoreReader.Evidence.labelsCannotWaive; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L268organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L269organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L270organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L271-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L272theorem labelsCannotWaive {W : Type} (xs ys : List String) (a : Facet W → Prop) :State the checked result labelsCannotWaive. Proves changing labels cannot change duties because labels were ignored by definition; no external classification mechanism is analyzed.
L273 LabeledDuties xs a ↔ LabeledDuties ys a := Iff.rflChanging only the label lists leaves the same duty proposition; the equivalence is reflexive.
L274/- The observed switch is the outcome itself, not a record identifier. -/Document the intended scope of switchRecord. The corresponding declaration concerns: Records the identity Boolean test with observed value true. This comment is explanatory, not a proof premise.
L275def switchRecord : Record Bool := ⟨id, true⟩Define switchRecord. Records the identity Boolean test with observed value true.
L276theorem switchCompatible (w : Bool) : Compatible [switchRecord] w ↔ w = true := byState the checked result switchCompatible. Proves compatibility with the single switch record is exactly equality of the world with true. The following tactic block proves this explicit type.
L277 constructorProve that compatibility with the singleton switch record is equivalent to the actual Boolean world being true.
L278 · intro h; exact h switchRecord (by simp)Apply record compatibility to the sole named test to recover its actual observed equality.
L279 · intro hw r hr; simp only [List.mem_singleton] at hr; cases hr; exact hwConversely, singleton membership identifies any listed record with this test, whose equality is the supplied observation premise.
L280theorem switchSupported : Supports [switchRecord] (fun w : Bool => w = true) :=State the checked result switchSupported. Supports equality to true by extracting the previously proved compatibility equivalence. The supplied proof term uses the displayed constructed witnesses or earlier lemmas, rather than adding an axiom.
L281 fun w hw => (switchCompatible w).1 hwUse switchCompatible’s forward implication to extract world=true from the same world’s actual record compatibility.
L282/- The candidate action has specific benefit and cost outcomes; its inactive alternative has neither. -/Document the intended scope of optionBenefit. The corresponding declaration concerns: Assigns benefit 4 to selected=true and 0 otherwise. This comment is explanatory, not a proof premise.
L283def optionBenefit (selected : Bool) : Nat := if selected then 4 else 0Define optionBenefit. Assigns benefit 4 to selected=true and 0 otherwise.
L284def optionCost (selected : Bool) : Nat := if selected then 3 else 0Define optionCost. Assigns cost 3 to selected=true and 0 otherwise.
L285/- The report describes each option's actual cost and benefit; it does not itself assert which option ought to be selected. -/Document the intended scope of optionReport. The corresponding declaration concerns: States option-specific cost and benefit facts rather than an unconnected reason flag. This comment is explanatory, not a proof premise.
L286def optionReport (selected : Bool) : Prop :=Define optionReport. States option-specific cost and benefit facts rather than an unconnected reason flag.
L287 optionCost selected ≤ 3 ∧ optionBenefit selected = (if selected then 4 else 0)The option report asserts actual cost at most 3 and the option-specific benefit of 4 for on or 0 for off.
L288/- The on position connects its own selected option to that option's benefit/cost outcome. -/Document the intended scope of switchPosition. The corresponding declaration concerns: Adopts true with actual option cost/benefit outcomes, cost-below-benefit objective, budget constraint and a scoped criticism response. This comment is explanatory, not a proof premise.
L289def switchPosition : ValuePosition Bool whereDefine switchPosition. Adopts true with actual option cost/benefit outcomes, cost-below-benefit objective, budget constraint and a scoped criticism response.
L290 Position := BoolUse Boolean options for on/off.
L291 Outcome := Nat × NatRepresent each outcome as actual benefit and cost in a natural-number pair.
L292 adopted := trueAdopt the on option explicitly; adoption itself is not derived from arithmetic.
L293 selected := idRead the actual selected option directly from the Boolean world.
L294 outcome := fun _ option => (optionBenefit option, optionCost option)Compute benefit and cost from this same actual option.
L295 objective := fun result => result.2 < result.1Adopt the objective that actual benefit strictly exceeds actual cost.
L296 constraints := fun _ option => optionCost option ≤ 3Check the actual option cost against the fixed budget 3.
L297 starting := singleton (fun w => w = true)Assume the actual Boolean selection is on; do not insert the assessed benefit conclusion into the starting theory.
L298 reasons := [fun _ option => optionReport option]Use the option-indexed actual cost/benefit report as the sole reason.
L299 limits := fun _ => TrueUse an unrestricted world scope in this example; starting assumptions and reason content still constrain the procedure.
L300 relevantCriticism := fun w => w = falseMark the off-selected world as a relevant criticism case.
L301 response := fun w => if w then some "benefit exceeds cost within budget" else some "reconsider if the budget no longer permits this cost"Provide distinct nonempty messages for the two worlds, including budget reconsideration in the criticism case.
L302theorem switchValueProcedure : ValueProcedure switchPosition := byState the checked result switchValueProcedure. Provides a consistent adoption witness and derives the adopted option's objective/constraint from its actual cost-benefit reason; both Boolean responses are checked. The following tactic block proves this explicit type.
L303 refine ⟨by simp [switchPosition], ?_, ?_, ?_⟩Separate nonempty reasons, a joint adoption witness, consequence support by all reasons, and response to criticism for switchPosition.
L304 · refine ⟨true, (modelsSingleton _ _).2 rfl, trivial, rfl, ?_⟩Choose world true, satisfying the starting selection, unrestricted limit and adopted option, and leave its actual reason to check.
L305 intro reason hrTake any reason in switchPosition’s list; the next step identifies its actual optionReport content at the adopted on witness.
L306 have hr' : reason = (fun (_ : Bool) (option : Bool) => optionReport option) := List.mem_singleton.mp hrSingleton membership identifies the arbitrary reason with optionReport specialized to this position’s adopted option; substitute that actual reason.
L307 subst reasonSingleton membership identifies the arbitrary reason with optionReport specialized to this position’s adopted option; substitute that actual reason.
L308 exact ⟨by decide, rfl⟩Check that the adopted on option meets its recorded cost bound and its stated benefit value.
L309 · intro w _ _ allReasonsFor an arbitrary world in the stated starting/limit conditions, assume the entire active-reason conjunction.
L310 have evidence := allReasons (fun (_ : Bool) (option : Bool) => optionReport option) (List.mem_singleton.mpr rfl)Extract the actual optionReport reason from that conjunction, rather than introducing an independent support label.
L311 change optionReport true at evidenceUnfold which option is adopted: this evidence concerns the on option.
L312 have benefitAboveBudget : 3 < optionBenefit true := by rw [evidence.2]; decideUse the reported benefit equality to prove the on option’s benefit exceeds 3.
L313 exact ⟨Nat.lt_of_le_of_lt evidence.1 benefitAboveBudget, evidence.1⟩Combine cost ≤ 3 with benefit > 3 to prove cost < benefit, and retain the same cost bound as the constraint.
L314 · intro w _ _; cases w <;> simp [switchPosition]Check both Boolean worlds to provide the recorded nonempty criticism response where required.
L315/- Adopting the other option updates the adopted starting state too, so rejection cannot be blamed on an inconsistent start. -/Document the intended scope of oppositePosition. The corresponding declaration concerns: Changes the adopted option to false and updates its starting selection while retaining the same outcome model and objective. This comment is explanatory, not a proof premise.
L316def oppositePosition : ValuePosition Bool :=Define oppositePosition. Changes the adopted option to false and updates its starting selection while retaining the same outcome model and objective.
L317 { switchPosition with adopted := false, starting := singleton (fun w => w = false) }Change both adopted option and starting selection to off while retaining the same actual outcome/reason interpretation.
L318/- The alternative has a joint adoption witness but its actual zero benefit/cost fails the adopted strict-benefit objective. -/Document the intended scope of oppositePositionRejected. The corresponding declaration concerns: Shows false can be jointly adopted but fails the unchanged cost-below-benefit objective, so its value procedure is rejected. This comment is explanatory, not a proof premise.
L319theorem oppositePositionRejected : JointAdoption oppositePosition ∧ ¬ ValueProcedure oppositePosition := byState the checked result oppositePositionRejected. Shows false can be jointly adopted but fails the unchanged cost-below-benefit objective, so its value procedure is rejected. The following tactic block proves this explicit type.
L320 have witness : JointAdoption oppositePosition := byConstruct an actual joint adoption witness for the opposite off position at world false; the rejection will therefore not rely on an empty domain.
L321 refine ⟨false, (modelsSingleton _ _).2 rfl, trivial, rfl, ?_⟩Construct an actual joint adoption witness for the opposite off position at world false; the rejection will therefore not rely on an empty domain.
L322 intro reason hrFor the opposite position’s false-world witness, take any listed reason before checking that off option’s actual report.
L323 have hr' : reason = (fun (_ : Bool) (option : Bool) => optionReport option) := List.mem_singleton.mp hrSingleton membership identifies the arbitrary reason with optionReport specialized to this position’s adopted option; substitute that actual reason.
L324 subst reasonSingleton membership identifies the arbitrary reason with optionReport specialized to this position’s adopted option; substitute that actual reason.
L325 exact ⟨by decide, rfl⟩The off option’s own report is true: its zero cost is within the bound and its zero benefit matches the stated report.
L326 refine ⟨witness, ?_⟩Retain the nonempty joint witness and separately refute fulfillment of the opposite value procedure.
L327 intro hAssume the opposite off position satisfies its entire ValueProcedure, to derive a contradiction with its zero-benefit outcome.
L328 have allReasons : ∀ reason, reason ∈ oppositePosition.reasons → reason false oppositePosition.adopted := byAssemble all of the opposite position’s reasons at its actual false-world witness before applying any consequence requirement.
L329 intro reason hrTake any actual reason of the opposite position to assemble all reasons at its inhabited false-world counterexample.
L330 have hr' : reason = (fun (_ : Bool) (option : Bool) => optionReport option) := List.mem_singleton.mp hrSingleton membership identifies the arbitrary reason with optionReport specialized to this position’s adopted option; substitute that actual reason.
L331 subst reasonSingleton membership identifies the arbitrary reason with optionReport specialized to this position’s adopted option; substitute that actual reason.
L332 exact ⟨by decide, rfl⟩The off option’s own report is true: its zero cost is within the bound and its zero benefit matches the stated report.
L333 have bad := h.2.2.1 false ((modelsSingleton _ _).2 rfl) trivial allReasonsApply the assumed opposite procedure’s joint-reason consequence clause to that same starting/limit witness and all its actual reasons.
L334 exact Nat.lt_irrefl 0 bad.1Its purported objective would require the off option’s zero cost to be strictly less than its zero benefit, contradicting irreflexivity.
L335/- Contradictory starting assumptions and an impossible selected/adopted equality are separate inadmissible variants. -/Document the intended scope of contradictoryStartingPosition. The corresponding declaration concerns: Replaces the starting theory with a false singleton, eliminating every joint adoption witness. This comment is explanatory, not a proof premise.
L336def contradictoryStartingPosition : ValuePosition Bool :=Define contradictoryStartingPosition. Replaces the starting theory with a false singleton, eliminating every joint adoption witness.
L337 { switchPosition with starting := singleton (fun _ => False) }Replace the starting theory with the impossible singleton claim False.
L338def impossibleAdoptionPosition : ValuePosition Bool :=Define impossibleAdoptionPosition. Always selects false while retaining adoption of true, making joint adoption impossible.
L339 { switchPosition with selected := fun _ => false }Keep the adopted on option but make every actual selection off, making joint adoption impossible.
L340/- The common-world witness rejects both contradiction and an impossible commitment instead of proving them vacuously. -/Document the intended scope of inadmissibleValuePositionsRejected. The corresponding declaration concerns: Rejects both inconsistent starting theory and impossible adoption via the required witness. This comment is explanatory, not a proof premise.
L341theorem inadmissibleValuePositionsRejected :State the checked result inadmissibleValuePositionsRejected. Rejects both inconsistent starting theory and impossible adoption via the required witness.
L342 ¬ ValueProcedure contradictoryStartingPosition ∧ ¬ ValueProcedure impossibleAdoptionPosition := byReject the procedures for contradictory starting assumptions and impossible actual adoption separately.
L343 constructorSeparate rejection of the contradictory starting theory from rejection of the impossible selected/adopted combination.
L344 · intro h; obtain ⟨w,hw,_,_,_⟩ := h.2.1Extract a joint adoption witness from the alleged procedure for the contradictory starting position.
L345 exact (modelsSingleton _ _).1 hwThe singleton starting theory requires False at that witness, directly contradicting its model proof.
L346 · intro h; obtain ⟨w,_,_,hw,_⟩ := h.2.1Extract the adoption equality from the alleged joint witness for the impossible selected/adopted combination.
L347 cases hwThe required adoption equality equates distinct Boolean options, so this witness cannot exist.
L348/- Removing the reasons leaves only a position and assertion, which fails this value procedure. -/Document the intended scope of unsupportedPosition. The corresponding declaration concerns: Copies the switch value position but deletes its reasons, guaranteeing procedural failure. This comment is explanatory, not a proof premise.
L349def unsupportedPosition : ValuePosition Bool := { switchPosition with reasons := [] }Define unsupportedPosition. Copies the switch value position but deletes its reasons, guaranteeing procedural failure.
L350def switchEmpirical : Facet Bool :=Define switchEmpirical. Builds an empirical facet concluding the Boolean world is true from the switch record, with unrestricted scope and trivially true uncertainty.
L351 .empirical [switchRecord] (fun _ => True) (fun w => w = true) (fun _ => True)Use the actual switch observation, unrestricted scope and same selected-on claim; uncertainty is explicitly True.
L352theorem switchEmpiricalDischarged : FacetDischarged switchEmpirical := byState the checked result switchEmpiricalDischarged. Discharges that empirical facet with a true-world witness, semantic support, and trivial uncertainty. The following tactic block proves this explicit type.
L353 refine ⟨⟨true, (switchCompatible true).2 rfl, trivial⟩, ?_, ?_⟩Use true as a nonempty world compatible with the switch record and unrestricted empirical scope.
L354 · intro w hw _; exact switchSupported w hwThe same switch record’s semantic support proves the scoped switch claim at each compatible world.
L355 · intro w _; trivialDischarge the explicitly trivial uncertainty predicate, without adding an empirical confidence claim.
L356/- A mixed empirical/value position has actual empirical evidence but still lacks its value-reason duty. -/Document the intended scope of mixedMissingResponsibility. The corresponding declaration concerns: Shows a discharged empirical facet does not discharge a union of applicable facets when an included value facet has no reasons. This comment is explanatory, not a proof premise.
L357/-- organon-map CoreReader.Evidence.mixedMissingResponsibilityBegin provenance metadata for CoreReader.Evidence.mixedMissingResponsibility; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L358organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L359organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L360organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L361-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L362theorem mixedMissingResponsibility :State the checked result mixedMissingResponsibility. Shows a discharged empirical facet does not discharge a union of applicable facets when an included value facet has no reasons.
L363 FacetDischarged switchEmpirical ∧Retain successful discharge of the actual empirical switch facet.
L364 ¬ LabeledDuties [] (fun f : Facet Bool => f = switchEmpirical ∨ f = .value unsupportedPosition) := byDeny all mixed duties even with empty labels, because the actual value facet also applies and lacks recorded reasons.
L365 refine ⟨switchEmpiricalDischarged, ?_⟩Keep the valid empirical switch facet and separately refute completion of all mixed duties.
L366 intro hAssume every actual mixed facet is discharged, including the value facet whose recorded reason list is empty.
L367 have bad := (h (.value unsupportedPosition) (Or.inr rfl)).1Select the value facet from the actual applicability union and extract its required nonempty reason-list condition.
L368 exact bad rflIts reason list is definitionally empty, contradicting only that recorded procedural requirement.
L369/- A fully identified argument may still fail to entail the stated conclusion. -/Document the intended scope of uninformativeArgument. The corresponding declaration concerns: Constructs a nonempty articulation with no assumptions and a tautological reason; it carries no information about the switch conclusion. This comment is explanatory, not a proof premise.
L370def uninformativeArgument : Articulation Bool :=Define uninformativeArgument. Constructs a nonempty articulation with no assumptions and a tautological reason; it carries no information about the switch conclusion.
L371 ⟨["switch state"], emptyTheory, [fun _ => True], fun _ => True⟩Articulate a switch concept with empty assumptions and a True reason; these nonempty words do not constrain the switch world.
L372/-- organon-map CoreReader.Evidence.articulationNotSupportBegin provenance metadata for CoreReader.Evidence.articulationNotSupport; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L373organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L374organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L375organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L376-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L377theorem articulationNotSupport : Articulated uninformativeArgument ∧State the checked result articulationNotSupport. Proves this articulation passes the nonemptiness check while its assumptions do not entail that the world is true.
L378 ¬ Entails uninformativeArgument.assumptions (fun w : Bool => w = true) := byThe uninformative articulation’s actual assumptions do not entail that the world is true.
L379 exact ⟨⟨by simp [uninformativeArgument], by simp [uninformativeArgument]⟩,Pair nonempty but uninformative concepts/reasons with the empty theory’s established failure to entail the switch claim.
L380 consistentIncomplete.2.1⟩Pair nonempty but uninformative concepts/reasons with the empty theory’s established failure to entail the switch claim.
L381/- Identifiable but unrelated argument fields cannot replace the actual observation grounds under the connected adapter. -/Document the intended scope of unrelatedArticulationRejected. The corresponding declaration concerns: Shows that a nonempty unrelated articulation and a discharged empirical facet need not align, and rejects this concrete pairing. This comment is explanatory, not a proof premise.
L382theorem unrelatedArticulationRejected :State the checked result unrelatedArticulationRejected. Shows that a nonempty unrelated articulation and a discharged empirical facet need not align, and rejects this concrete pairing.
L383 Articulated uninformativeArgument ∧ FacetDischarged switchEmpirical ∧Keep the unrelated articulation procedurally present and the switch facet actually discharged.
L384 ¬ FacetArticulated uninformativeArgument switchEmpirical := byStill reject semantic matching between that unrelated articulation and this empirical facet.
L385 refine ⟨articulationNotSupport.1, switchEmpiricalDischarged, ?_⟩Retain articulation and valid switch evidence, then separately test whether this unrelated articulation actually matches the facet.
L386 intro hAssume the uninformative articulation semantically matches switchEmpirical, despite its empty premise theory.
L387 have relation := congrFun h.1 (Compatible [switchRecord])Evaluate the alleged equality of articulation assumptions and empirical compatibility assumptions on the compatibility claim itself.
L388 have bad : False := relation.mpr rflThe empirical singleton contains that compatibility claim, while the unrelated empty theory cannot; the alleged equality yields False.
L389 exact badClose this component of unrelatedArticulationRejected using the displayed local evidence or previously proved lemma; the component belongs to the following fixed result: Shows that a nonempty unrelated articulation and a discharged empirical facet need not align, and rejects this concrete pairing.
L390/- Repetition of the same unrelated temperature observation leaves the switch state undetermined. -/Document the intended scope of temperatureRecord. The corresponding declaration concerns: Records only the first coordinate of a Boolean pair, observed as true; the second coordinate is unmeasured. This comment is explanatory, not a proof premise.
L391def temperatureRecord : Record (Bool × Bool) := ⟨Prod.fst, true⟩Define temperatureRecord. Records only the first coordinate of a Boolean pair, observed as true; the second coordinate is unmeasured.
L392theorem temperatureCompatible (b : Bool) :State the checked result temperatureCompatible. Shows duplicating that record remains compatible with either second-coordinate value when the first is true.
L393 Compatible [temperatureRecord, temperatureRecord] (true,b) := byFor any output coordinate b, repeated temperature records remain compatible with (true,b).
L394 intro r hrFor either output coordinate b, singleton-style membership in the repeated list selects the same temperature test; its observed first coordinate is true and leaves b unconstrained.
L395 simp at hrFor either output coordinate b, singleton-style membership in the repeated list selects the same temperature test; its observed first coordinate is true and leaves b unconstrained.
L396 cases hrFor either output coordinate b, singleton-style membership in the repeated list selects the same temperature test; its observed first coordinate is true and leaves b unconstrained.
L397 rflFor either output coordinate b, singleton-style membership in the repeated list selects the same temperature test; its observed first coordinate is true and leaves b unconstrained.
L398/- The world identifies a selected action and its budget; the action costs three units. -/Document the intended scope of BudgetWorld. The corresponding declaration concerns: Uses a Boolean action coordinate and natural-number budget as the world type. This comment is explanatory, not a proof premise.
L399abbrev BudgetWorld := Bool × NatIntroduce the type abbreviation BudgetWorld. Uses a Boolean action coordinate and natural-number budget as the world type.
L400/- A real issued announcement asserts the selected action, but says nothing about affordability. -/Document the intended scope of announcement. The corresponding declaration concerns: Defines a fixed declaration string; its content is not linked to budget. This comment is explanatory, not a proof premise.
L401def announcement : String := "activate"Define announcement. Defines a fixed declaration string; its content is not linked to budget.
L402def announcementPosition : ValuePosition BudgetWorld whereDefine announcementPosition. Uses an action announcement as the sole option-indexed reason while requiring actual benefit/cost and available budget.
L403 Position := BoolUse Boolean options for on/off.
L404 Outcome := Nat × NatRepresent each outcome as actual benefit and cost in a natural-number pair.
L405 adopted := trueAdopt the on option explicitly; adoption itself is not derived from arithmetic.
L406 selected := Prod.fstRead actual selection from the first coordinate while leaving budget independently variable.
L407 outcome := fun _ option => (optionBenefit option, optionCost option)Compute benefit and cost from this same actual option.
L408 objective := fun result => result.2 < result.1Adopt the objective that actual benefit strictly exceeds actual cost.
L409 constraints := fun w option => optionCost option ≤ w.2Compare the adopted option’s actual cost with this world’s independently supplied budget.
L410 starting := singleton (fun w => w.1 = true)Fix selection to on without any affordability or budget assumption.
L411 reasons := [fun _ option => announcement = (if option then "activate" else "disable")]Use the actual option-specific announcement text as the reason; it says nothing about available budget.
L412 limits := fun _ => TrueUse an unrestricted world scope in this example; starting assumptions and reason content still constrain the procedure.
L413 relevantCriticism := fun w => w.2 < 3Treat budget below 3 as relevant criticism of this cost-3 action.
L414 response := fun _ => some "reconsider the action when its cost exceeds budget"Record a nonempty message about reconsidering the action when cost exceeds budget.
L415/- The zero-budget counterworld satisfies the stated starts, adoption and all announced reasons jointly. -/Document the intended scope of announcementHasJointAdoption. The corresponding declaration concerns: Constructs an action-true budget-zero world where the announcement reason holds; failure later is substantive, not absent adoption. This comment is explanatory, not a proof premise.
L416theorem announcementHasJointAdoption : JointAdoption announcementPosition := byState the checked result announcementHasJointAdoption. Constructs an action-true budget-zero world where the announcement reason holds; failure later is substantive, not absent adoption. The following tactic block proves this explicit type.
L417 refine ⟨(true,0), (modelsSingleton _ _).2 rfl, trivial, rfl, ?_⟩Choose selected-on with budget 0 as a joint adoption witness; the starting theory fixes selection but does not assume affordability.
L418 intro reason hrTake an arbitrary announcement reason at the selected-on, zero-budget joint witness.
L419 have hr' : reason = (fun (_ : BudgetWorld) (option : Bool) => announcement = (if option then "activate" else "disable")) :=Use membership to identify the actual reason as the option-indexed announcement text, then specialize it to the adopted on option.
L420 List.mem_singleton.mp hrUse membership to identify the actual reason as the option-indexed announcement text, then specialize it to the adopted on option.
L421 subst reasonUse membership to identify the actual reason as the option-indexed announcement text, then specialize it to the adopted on option.
L422 rflThe actual announcement equals the on option’s activation text; this proves the announcement reason, not the budget constraint.
L423/- A nonempty announcement remains true in a jointly admissible zero-budget world but cannot support the action's affordability. -/Document the intended scope of announcementNotBudgetReason. The corresponding declaration concerns: At budget zero, the adopted action and true nonempty announcement reasons fail the real budget consequence, refuting the procedure. This comment is explanatory, not a proof premise.
L424theorem announcementNotBudgetReason :State the checked result announcementNotBudgetReason. At budget zero, the adopted action and true nonempty announcement reasons fail the real budget consequence, refuting the procedure.
L425 announcementPosition.reasons ≠ [] ∧ announcementPosition.commitment (true,0) ∧Require nonempty announcement reasons and actual adoption at selected-on with budget 0.
L426 (∀ reason, reason ∈ announcementPosition.reasons → reason (true,0) announcementPosition.adopted) ∧At that same zero-budget world, all actual announcement reasons hold.
L427 ¬ announcementPosition.consequence (true,0) ∧ ¬ ValueProcedure announcementPosition := byNevertheless reject the actual consequence and the whole value procedure.
L428 refine ⟨by simp [announcementPosition], rfl, ?_, (by intro h; cases h.2), ?_⟩Assemble nonempty announcement reasons and the true announcement; refute the zero-budget consequence and leave failure of the whole procedure.
L429 · intro reason hrFor the claimed conjunction of reasons at budget 0, take any member of the actual announcement reason list.
L430 have hr' : reason = (fun (_ : BudgetWorld) (option : Bool) => announcement = (if option then "activate" else "disable")) := List.mem_singleton.mp hrUse membership to identify the actual reason as the option-indexed announcement text, then specialize it to the adopted on option.
L431 subst reasonUse membership to identify the actual reason as the option-indexed announcement text, then specialize it to the adopted on option.
L432 rflThe actual announcement equals the on option’s activation text; this proves the announcement reason, not the budget constraint.
L433 · intro hAssume the announcement position satisfies ValueProcedure, to test its consequence clause at budget 0.
L434 have allReasons : ∀ reason, reason ∈ announcementPosition.reasons → reason (true,0) announcementPosition.adopted := byCollect every announcement reason at the same selected-on, zero-budget world.
L435 intro reason hrTo supply all reasons to that clause, take any announcement reason at the same zero-budget world.
L436 have hr' : reason = (fun (_ : BudgetWorld) (option : Bool) => announcement = (if option then "activate" else "disable")) := List.mem_singleton.mp hrUse membership to identify the actual reason as the option-indexed announcement text, then specialize it to the adopted on option.
L437 subst reasonUse membership to identify the actual reason as the option-indexed announcement text, then specialize it to the adopted on option.
L438 rflThe actual announcement equals the on option’s activation text; this proves the announcement reason, not the budget constraint.
L439 have bad := h.2.2.1 (true,0) ((modelsSingleton _ _).2 rfl) trivial allReasonsApply a hypothetical procedure to that inhabited zero-budget starting/limit case and its actual announcement reason.
L440 cases bad.2The resulting cost constraint would require cost 3 within budget 0, which is impossible.
L441/- A repeated actual selection observation contains no budget information. -/Document the intended scope of actionRecord. The corresponding declaration concerns: Records only the action Boolean, leaving budget completely unconstrained. This comment is explanatory, not a proof premise.
L442def actionRecord : Record BudgetWorld := ⟨Prod.fst, true⟩Define actionRecord. Records only the action Boolean, leaving budget completely unconstrained.
L443theorem actionCompatible (budget : Nat) : Compatible [actionRecord, actionRecord] (true,budget) := byState the checked result actionCompatible. Shows two copies of the action record accept every budget when action=true. The following tactic block proves this explicit type.
L444 intro r hr; simp at hr; cases hr; rflEvery action record in the repeated list tests only the actual selected-on coordinate, so any supplied budget remains compatible.
L445/- Single and repeated irrelevant observations cannot establish the other outcome or the same action's budget adequacy. -/Document the intended scope of measurementRepeatNotSupport. The corresponding declaration concerns: Combines explicit countermodels showing that repeated measurement of one coordinate does not support an unmeasured coordinate or a budget consequence, and does not fix the announcement value procedure. This comment is explanatory, not a proof premise.
L446/-- organon-map CoreReader.Evidence.measurementRepeatNotSupportBegin provenance metadata for CoreReader.Evidence.measurementRepeatNotSupport; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L447organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L448organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L449organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L450-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L451theorem measurementRepeatNotSupport :State the checked result measurementRepeatNotSupport. Combines explicit countermodels showing that repeated measurement of one coordinate does not support an unmeasured coordinate or a budget consequence, and does not fix the announcement value procedure.
L452 temperatureRecord.test (true,false) = true ∧The actual temperature test returns true even when the independent output coordinate is false.
L453 Compatible [temperatureRecord,temperatureRecord] (true,false) ∧Retain this false-output world under repeated temperature observations.
L454 Compatible [temperatureRecord,temperatureRecord] (true,true) ∧Also retain a true-output world under those same repeated observations.
L455 ¬ Supports [temperatureRecord] (fun w : Bool × Bool => w.2 = true) ∧A single temperature record does not support the other output being true.
L456 ¬ Supports [temperatureRecord,temperatureRecord] (fun w : Bool × Bool => w.2 = true) ∧Repeating that temperature record still does not support the other output being true.
L457 Compatible [actionRecord,actionRecord] (true,0) ∧Repeated observed activation is compatible with selected-on and budget 0.
L458 Compatible [actionRecord,actionRecord] (true,3) ∧The same repeated records are also compatible with budget 3.
L459 ¬ Supports [actionRecord] announcementPosition.consequence ∧A single activation record does not support the option’s actual objective-and-budget consequence.
L460 ¬ Supports [actionRecord,actionRecord] announcementPosition.consequence ∧Repeating activation records does not repair that lack of consequence support.
L461 ¬ ValueProcedure announcementPosition := byThe announcement-based value procedure also fails for that actual option and constraint.
L462 refine ⟨rfl, temperatureCompatible false, temperatureCompatible true, ?_, ?_,Record the observation’s actual true value and both temperature-compatible output alternatives; leave the unsupported output claims to refute.
L463 actionCompatible 0, actionCompatible 3, ?_, ?_, announcementNotBudgetReason.2.2.2.2⟩Keep both budget-0 and budget-3 action-compatible worlds and the established announcement-procedure failure; leave affordability support claims to refute.
L464 · intro hAssume a single temperature observation supports the independently represented second output being true.
L465 have bad := h (true,false) (by intro r hr; simp only [List.mem_singleton] at hr; cases hr; rfl)Apply purported one-record output support to (true,false), whose temperature observation is true but whose other output claim is false.
L466 cases badApply purported one-record output support to (true,false), whose temperature observation is true but whose other output claim is false.
L467 · intro h; have bad := h (true,false) (temperatureCompatible false); cases badThe same (true,false) counterworld remains compatible with repeated temperature records, defeating repeated-data output support.
L468 · intro hAssume a single action observation supports the adopted option’s benefit-and-budget consequence.
L469 have bad := h (true,0) (by intro r hr; simp only [List.mem_singleton] at hr; cases hr; rfl)A single observed activation is compatible with budget 0; purported consequence support there would force the impossible cost constraint.
L470 cases bad.2A single observed activation is compatible with budget 0; purported consequence support there would force the impossible cost constraint.
L471 · intro h; have bad := h (true,0) (actionCompatible 0); cases bad.2Repeating activation records retains the same zero-budget counterworld, so it still does not support the actual affordability consequence.
L472/- Missing reason records fail a procedure; independently, a present announcement fails the explicit budget-support criterion. -/Document the intended scope of selfAssertionNotReason. The corresponding declaration concerns: Combines empty-reason and nonempty-but-budget-irrelevant self-assertion failures, with a joint adoption witness for the latter. This comment is explanatory, not a proof premise.
L473/-- organon-map CoreReader.Evidence.selfAssertionNotReasonBegin provenance metadata for CoreReader.Evidence.selfAssertionNotReason; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L474organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L475organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L476organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L477-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L478theorem selfAssertionNotReason :State the checked result selfAssertionNotReason. Combines empty-reason and nonempty-but-budget-irrelevant self-assertion failures, with a joint adoption witness for the latter.
L479 (unsupportedPosition.commitment true ∧ ¬ ValueProcedure unsupportedPosition) ∧The missing-reason position can be actually adopted yet fail its recorded procedure.
L480 (announcementPosition.reasons ≠ [] ∧ announcementPosition.commitment (true,0) ∧The stronger announcement example has nonempty reasons and actual adoption at budget 0.
L481 ¬ announcementPosition.consequence (true,0) ∧ ¬ ValueProcedure announcementPosition) ∧Its actual consequence and its procedure still fail because the same adopted option exceeds budget.
L482 JointAdoption announcementPosition :=Retain an actual joint adoption witness, excluding an empty-starting-domain explanation of this failure.
L483 ⟨⟨rfl, fun h => h.1 rfl⟩,Prove unsupportedPosition.commitment true by reduction; a supposed ValueProcedure contradicts its empty reason list through its nonemptiness requirement.
L484 ⟨announcementNotBudgetReason.1, announcementNotBudgetReason.2.1,Reuse the nonempty actual announcement reasons and adoption equality from announcementNotBudgetReason.
L485 announcementNotBudgetReason.2.2.2.1, announcementNotBudgetReason.2.2.2.2⟩,Also reuse failure of the same zero-budget consequence and of the entire announcement procedure.
L486 announcementHasJointAdoption⟩Retain announcementHasJointAdoption so this failure is not explained by an empty or inconsistent starting domain.
L487/- The value procedure is satisfiable although the adopted starting commitment is not entailed by empty facts. -/Document the intended scope of valueWithoutSelfProof. The corresponding declaration concerns: Exhibits a coherent reasoned position not derivable from empty assumptions, and rejects opposite-option, inconsistent-start and impossible-adoption variants. This comment is explanatory, not a proof premise.
L488/-- organon-map CoreReader.Evidence.valueWithoutSelfProofBegin provenance metadata for CoreReader.Evidence.valueWithoutSelfProof; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L489organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L490organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L491organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L492-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L493theorem valueWithoutSelfProof : ValueProcedure switchPosition ∧State the checked result valueWithoutSelfProof. Exhibits a coherent reasoned position not derivable from empty assumptions, and rejects opposite-option, inconsistent-start and impossible-adoption variants.
L494 Satisfiable switchPosition.starting ∧Require the switch position’s actual starting theory to have a model.
L495 ¬ Entails (emptyTheory : Theory Bool) switchPosition.commitment ∧Deny derivation of its adopted commitment from the empty Boolean theory.
L496 (JointAdoption oppositePosition ∧ ¬ ValueProcedure oppositePosition) ∧The opposite position has a joint witness but fails consequence assessment.
L497 (¬ ValueProcedure contradictoryStartingPosition ∧ ¬ ValueProcedure impossibleAdoptionPosition) :=Also reject contradictory starting and impossible adoption variants, distinguishing non-self-derived from inconsistent starts.
L498 ⟨switchValueProcedure, ⟨true, (modelsSingleton _ _).2 rfl⟩, consistentIncomplete.2.1,Combine the actual switch procedure, world true as its starting model, and non-entailment of the adopted claim from emptyTheory.
L499 oppositePositionRejected, inadmissibleValuePositionsRejected⟩Add rejection of the inhabited opposite option and the separate contradictory-start and impossible-adoption variants.
L500/- The world records the selected option and its actual benefit/cost outcomes. -/Document the intended scope of BenefitCostWorld. The corresponding declaration concerns: Stores a selected Boolean option together with variable benefit and cost values. This comment is explanatory, not a proof premise.
L501abbrev BenefitCostWorld := Bool × (Nat × Nat)Introduce the type abbreviation BenefitCostWorld. Stores a selected Boolean option together with variable benefit and cost values.
L502def measuredOutcome (world : BenefitCostWorld) (option : Bool) : Nat × Nat :=Define measuredOutcome. For true, returns the world's benefit/cost pair; false has outcome zero/zero.
L503 if option then world.2 else (0,0)The on option reads the world’s actual benefit/cost pair; the off option yields (0,0).
L504def benefitReason (world : BenefitCostWorld) (option : Bool) : Prop :=Define benefitReason. Requires the same option's measured benefit to equal four.
L505 (measuredOutcome world option).1 = 4The benefit reason requires the actual option’s measured benefit to equal 4.
L506def costReason (world : BenefitCostWorld) (option : Bool) : Prop :=Define costReason. Requires that option's measured cost to be at most three.
L507 (measuredOutcome world option).2 ≤ 3The cost reason requires the same option’s measured cost to be at most 3.
L508/- Neither recorded benefit nor recorded cost alone establishes the selected option's joint consequence. -/Document the intended scope of jointReasonPosition. The corresponding declaration concerns: Uses two separate option-specific benefit and cost reasons jointly for the adopted option's objective and budget. This comment is explanatory, not a proof premise.
L509def jointReasonPosition : ValuePosition BenefitCostWorld whereDefine jointReasonPosition. Uses two separate option-specific benefit and cost reasons jointly for the adopted option's objective and budget.
L510 Position := BoolUse Boolean options for on/off.
L511 Outcome := Nat × NatRepresent each outcome as actual benefit and cost in a natural-number pair.
L512 adopted := trueAdopt the on option explicitly; adoption itself is not derived from arithmetic.
L513 selected := Prod.fstRead selection from the world’s first coordinate, separately from measured benefit and cost.
L514 outcome := measuredOutcomeUse measuredOutcome so the assessed option’s actual benefit and cost come from this world.
L515 objective := fun result => result.2 < result.1Adopt the objective that actual benefit strictly exceeds actual cost.
L516 constraints := fun world option => (measuredOutcome world option).2 ≤ 3Require this option’s measured cost to be at most 3.
L517 starting := singleton (fun world => world.1 = true)Assume the selected option is on, without assuming benefit or cost conclusions.
L518 reasons := [benefitReason, costReason]List benefitReason and costReason together; the procedure will use their conjunction.
L519 limits := fun _ => TrueUse an unrestricted world scope in this example; starting assumptions and reason content still constrain the procedure.
L520 relevantCriticism := fun world => 3 < world.2.2Identify an actual measured cost above 3 as relevant criticism.
L521 response := fun _ => some "reassess the option when its cost exceeds the budget"Record the nonempty response to reassess this option when its actual cost exceeds budget.
L522/- These two content constraints jointly establish the consequence in a nonempty adopted world. -/Document the intended scope of jointReasonProcedure. The corresponding declaration concerns: Builds a joint witness at benefit four/cost three and combines both reasons to prove cost below benefit and within budget. This comment is explanatory, not a proof premise.
L523theorem jointReasonProcedure : ValueProcedure jointReasonPosition := byState the checked result jointReasonProcedure. Builds a joint witness at benefit four/cost three and combines both reasons to prove cost below benefit and within budget. The following tactic block proves this explicit type.
L524 refine ⟨by simp [jointReasonPosition], ?_, ?_, ?_⟩Separate the joint-reason position’s nonempty reasons, joint witness, conjunction-based consequence and criticism response.
L525 · refine ⟨(true,(4,3)), (modelsSingleton _ _).2 rfl, trivial, rfl, ?_⟩Use selected-on with benefit 4 and cost 3 as the common starting/limit/adoption witness.
L526 intro reason hrTake any of the two reasons at the actual (true,(4,3)) witness, then split membership to check each distinct reason.
L527 change reason ∈ [benefitReason,costReason] at hrExpose the actual two-element reason list: benefitReason and costReason.
L528 rcases List.mem_cons.mp hr with hr | hrSplit reason membership into the benefit reason or the remaining singleton cost reason.
L529 · subst reason; rflSubstitute the benefit reason and check that the witness’s measured benefit is exactly 4.
L530 · have hr' := List.mem_singleton.mp hrIdentify the remaining reason with costReason and substitute it.
L531 subst reasonIdentify the remaining reason with costReason and substitute it.
L532 change 3 ≤ 3; exact Nat.le_refl 3Check the witness’s cost bound 3 ≤ 3 by reflexivity of the natural-number order.
L533 · intro world _ _ reasonsFor an arbitrary admitted world, assume all active reasons together rather than requiring either reason alone to suffice.
L534 have benefit := reasons benefitReason (by change benefitReason ∈ [benefitReason,costReason]; simp)Extract the actual benefitReason from the reason conjunction at this world and adopted option.
L535 have cost := reasons costReason (by change costReason ∈ [benefitReason,costReason]; simp)Extract costReason from the same conjunction at the same world and option.
L536 change (measuredOutcome world true).1 = 4 at benefitUnfold benefitReason: the adopted on option’s measured benefit equals 4.
L537 change (measuredOutcome world true).2 ≤ 3 at costUnfold costReason: that same option’s measured cost is at most 3.
L538 refine ⟨?_, cost⟩Retain the actual cost constraint and leave only the strict benefit-over-cost objective.
L539 have bigger : 3 < (measuredOutcome world true).1 := by rw [benefit]; decideRewrite the measured benefit to 4 and check that it exceeds 3.
L540 exact Nat.lt_of_le_of_lt cost biggerCompose cost ≤ 3 with 3 < benefit to establish cost < benefit using both reasons.
L541 · intro world _ _For a world within limits where criticism is relevant, construct the required response about this option’s excessive cost.
L542 exact ⟨"reassess the option when its cost exceeds the budget", rfl, by decide⟩Provide the explicit nonempty response about reassessing the option when its cost exceeds the budget; this records a response, not its persuasive adequacy.
L543/- Each separate reason has a concrete same-start/limit/adoption counterworld; their conjunction is sufficient. -/Document the intended scope of JointReasonsExample. The corresponding declaration concerns: States that the joint procedure passes while either reason alone can hold at a world failing the consequence. This comment is explanatory, not a proof premise.
L544def JointReasonsExample : Prop :=Define JointReasonsExample. States that the joint procedure passes while either reason alone can hold at a world failing the consequence.
L545 ValueProcedure jointReasonPosition ∧Require the two-reason position to satisfy its complete ValueProcedure.
L546 (Models jointReasonPosition.starting (true,(4,5)) ∧ jointReasonPosition.limits (true,(4,5)) ∧Fix a benefit-only counterworld (true,(4,5)) satisfying the same starting assumptions and limits.
L547 jointReasonPosition.commitment (true,(4,5)) ∧ benefitReason (true,(4,5)) true ∧At that world, actual adoption and the benefit reason both hold.
L548 ¬ jointReasonPosition.consequence (true,(4,5))) ∧Deny the assessed consequence there, because its actual cost is too high.
L549 (Models jointReasonPosition.starting (true,(0,3)) ∧ jointReasonPosition.limits (true,(0,3)) ∧Fix a cost-only counterworld (true,(0,3)) under the same starting assumptions and limits.
L550 jointReasonPosition.commitment (true,(0,3)) ∧ costReason (true,(0,3)) true ∧At this world, actual adoption and the cost reason hold.
L551 ¬ jointReasonPosition.consequence (true,(0,3)))Deny its assessed consequence because zero benefit does not exceed cost 3.
L552theorem jointReasonsExample : JointReasonsExample := byState the checked result jointReasonsExample. Uses benefit four/cost five and benefit zero/cost three as counterexamples to individual-reason sufficiency. The following tactic block proves this explicit type.
L553 refine ⟨jointReasonProcedure,Begin the combined example with the already checked two-reason procedure.
L554 ⟨(modelsSingleton _ _).2 rfl, trivial, rfl, rfl, ?_⟩,Supply the benefit-only counterworld with benefit 4 and cost 5, satisfying the same starting, limit and adoption conditions.
L555 ⟨(modelsSingleton _ _).2 rfl, trivial, rfl, Nat.le_refl 3, ?_⟩⟩Supply the cost-only counterworld with benefit 0 and cost 3 under the same conditions.
L556 · intro h; have bad : 5 ≤ 3 := h.2; omegaThe benefit-only world violates the cost constraint 5 ≤ 3; natural-number arithmetic closes the contradiction.
L557 · intro h; have bad : 3 < 0 := h.1; omegaThe cost-only world cannot satisfy the strict objective 3 < 0; arithmetic closes this counterexample.
L558/- Empirical observations, semantic inference and criticism-responsive reasons coexist without a scalar score. -/Document the intended scope of heterogeneousReasons. The corresponding declaration concerns: Combines empirical, inferential and value examples with a genuine two-reason combination that neither reason alone establishes. This comment is explanatory, not a proof premise.
L559/-- organon-map CoreReader.Evidence.heterogeneousReasonsBegin provenance metadata for CoreReader.Evidence.heterogeneousReasons; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L560organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L561organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L562organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L563-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L564theorem heterogeneousReasons :State the checked result heterogeneousReasons. Combines empirical, inferential and value examples with a genuine two-reason combination that neither reason alone establishes.
L565 FacetDischarged switchEmpirical ∧Include the actually discharged empirical switch facet.
L566 FacetDischarged (Facet.inferential (singleton (fun w : Bool => w = true)) (fun w => w = true)) ∧Include an inferential facet whose satisfiable true-world premise entails the same true-world claim.
L567 FacetDischarged (Facet.value switchPosition) ∧ JointReasonsExample := byInclude the actual switch value procedure and the two-joint-reasons example in this registered theorem.
L568 refine ⟨switchEmpiricalDischarged, ⟨⟨true, (modelsSingleton _ _).2 rfl⟩, ?_⟩, switchValueProcedure, jointReasonsExample⟩Combine the checked empirical facet, an inhabited inferential singleton, the value procedure and the joint-reason counterexamples.
L569 intro w hw; exact (modelsSingleton (fun x : Bool => x = true) w).1 hwFor the inferential facet, its singleton premise directly yields the same true-world claim at any model.
L571/- This local observation checks the actual output on input zero. -/Document the intended scope of zeroRecord. The corresponding declaration concerns: Records only a function's Boolean output at natural-number input zero. This comment is explanatory, not a proof premise.
L572def zeroRecord : Record (Nat → Bool) := ⟨fun f => f 0, true⟩Define zeroRecord. Records only a function's Boolean output at natural-number input zero.
L573def localGenerator (seed : Nat) : Nat → Bool := fun n => n == seedDefine localGenerator. Produces a function returning true exactly at its natural-number seed.
L574/- All outputs being true is a stronger, explicitly quantified capability claim. -/Document the intended scope of allTrue. The corresponding declaration concerns: Requires a Boolean-valued function to return true at every natural number. This comment is explanatory, not a proof premise.
L575def allTrue : Claim (Nat → Bool) := fun f => ∀ n, f n = trueDefine allTrue. Requires a Boolean-valued function to return true at every natural number.
L576theorem zeroCompatible (f : Nat → Bool) : Compatible [zeroRecord] f ↔ f 0 = true := byState the checked result zeroCompatible. Proves one zero-input record constrains exactly the function's value at zero. The following tactic block proves this explicit type.
L577 constructorProve both directions between matching zeroRecord and the actual function returning true at input 0.
L578 · intro h; exact h zeroRecord (by simp)Apply record compatibility to the sole named test to recover its actual observed equality.
L579 · intro hf r hr; simp only [List.mem_singleton] at hr; cases hr; exact hfConversely, singleton membership identifies any listed record with this test, whose equality is the supplied observation premise.
L580/- A generating subject owns an earlier predicate and a seed used to revise that actual predicate. -/Document the intended scope of GeneratingProcess. The corresponding declaration concerns: Stores producer identity, the actual earlier predicate and the seed used by its revision algorithm. This comment is explanatory, not a proof premise.
L581structure GeneratingProcess whereDeclare the data interface GeneratingProcess. Stores producer identity, the actual earlier predicate and the seed used by its revision algorithm.
L582 owner : NatStore the actual generating process owner identifier.
L583 prior : Nat → BoolStore the prior Boolean-valued function before this process generates its revision.
L584 generateSeed : NatStore the seed input used by this process’s actual local generator.
L585/- The revision preserves prior successes and adds the seed-selected case through the actual generator. -/Document the intended scope of GeneratingProcess.outputRevision. The corresponding declaration concerns: Preserves prior successes and adds the seed-selected input through the actual local generator. This comment is explanatory, not a proof premise.
L586def GeneratingProcess.outputRevision (process : GeneratingProcess) : Nat → Bool :=Define GeneratingProcess.outputRevision. Preserves prior successes and adds the seed-selected input through the actual local generator.
L587 fun input => process.prior input || localGenerator process.generateSeed inputThe revised function preserves each true prior output or adds truth at the actual generated seed input.
L588/- A produced revision retains its producer and exact old/new objects. -/Document the intended scope of ProducedRevision. The corresponding declaration concerns: Stores producer plus exact before and after predicate objects. This comment is explanatory, not a proof premise.
L589structure ProducedRevision whereDeclare the data interface ProducedRevision. Stores producer plus exact before and after predicate objects.
L590 producer : NatIdentify which owner produced this concrete revision object.
L591 before : Nat → BoolStore the actual before-function of the revision.
L592 after : Nat → BoolStore the actual after-function of the revision.
L593/- The subject itself constructs the owned before/after revision object. -/Document the intended scope of GeneratingProcess.produce. The corresponding declaration concerns: Constructs this process's own revision with its owner and actual prior/output functions. This comment is explanatory, not a proof premise.
L594def GeneratingProcess.produce (process : GeneratingProcess) : ProducedRevision :=Define GeneratingProcess.produce. Constructs this process's own revision with its owner and actual prior/output functions.
L595 ⟨process.owner, process.prior, process.outputRevision⟩Construct the revision directly from this process’s owner, prior function and computed output revision.
L596def sampleGeneratingProcess : GeneratingProcess := ⟨17, fun _ => false, 0⟩Define sampleGeneratingProcess. Uses owner seventeen, an always-false prior predicate and seed zero.
L597/- This same-owner revision actually changes input zero, while its produced predicate still fails at input one. -/Document the intended scope of OwnedRevisionExample. The corresponding declaration concerns: Binds self-origin and exact before/after functions to a real zero-input change whose global claim lacks support. This comment is explanatory, not a proof premise.
L598def OwnedRevisionExample : Prop :=Define OwnedRevisionExample. Binds self-origin and exact before/after functions to a real zero-input change whose global claim lacks support.
L599 sampleGeneratingProcess.produce.producer = sampleGeneratingProcess.owner ∧Bind the revision’s producer identifier to the actual generating process owner.
L600 sampleGeneratingProcess.produce.before = sampleGeneratingProcess.prior ∧Bind its before-function to this process’s actual prior function.
L601 sampleGeneratingProcess.produce.after = sampleGeneratingProcess.outputRevision ∧Bind its after-function to this process’s actual outputRevision.
L602 sampleGeneratingProcess.produce.before 0 = false ∧ sampleGeneratingProcess.produce.after 0 = true ∧Require actual change at input 0 from false before to true after.
L603 sampleGeneratingProcess.produce.after 1 = false ∧Retain an actual false output at input 1 after that revision.
L604 Compatible [zeroRecord] sampleGeneratingProcess.produce.after ∧The actual produced after-function matches the input-0 observation.
L605 ¬ Supports [zeroRecord] allTrueThat record still does not support the all-input truth claim.
L606/- Actual producer/old/new links and the compatible failing revision witness the insufficiency of self-origin. -/Document the intended scope of ownedRevisionExample. The corresponding declaration concerns: Computes ownership/object links and uses the produced function's failure at one to refute universal support. This comment is explanatory, not a proof premise.
L607theorem ownedRevisionExample : OwnedRevisionExample := byState the checked result ownedRevisionExample. Computes ownership/object links and uses the produced function's failure at one to refute universal support. The following tactic block proves this explicit type.
L608 refine ⟨rfl,rfl,rfl,rfl,rfl,rfl,(zeroCompatible _).2 rfl, ?_⟩Check producer identity, prior/output revision relationships and actual sample values by computation; retain zero-record compatibility and leave universal support to refute.
L609 intro hAssume zeroRecord supports allTrue, to refute it using this owner’s actual produced revision.
L610 have bad := h sampleGeneratingProcess.produce.after ((zeroCompatible _).2 rfl) 1Apply purported support to this owner’s actual produced after-function at input 1, where its revision still returns false.
L611 cases badEliminate the resulting false=true equality; the actual revision is an evidence-compatible counterexample.
L612/- The generator's own sample succeeds, but its generated revision has a concrete unsupported global claim. -/Document the intended scope of selfOriginDoesNotSupport. The corresponding declaration concerns: Retains the local observation countermodel and adds an actual owned before/after revision with the same unsupported global claim. This comment is explanatory, not a proof premise.
L613/-- organon-map CoreReader.Evidence.selfOriginDoesNotSupportBegin provenance metadata for CoreReader.Evidence.selfOriginDoesNotSupport; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L614organon.charter.reflexivity.limits#p1 sha256 ac0baae0d86e69f84c1ca4dee837de2759e2d29c295ffc257d988962158d4bbcRegister source unit organon.charter.reflexivity.limits#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L615-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L616theorem selfOriginDoesNotSupport :State the checked result selfOriginDoesNotSupport. Retains the local observation countermodel and adds an actual owned before/after revision with the same unsupported global claim.
L617 localGenerator 0 0 = true ∧ localGenerator 0 1 = false ∧Compute localGenerator 0 as true at 0 and false at 1.
L618 Compatible [zeroRecord] (localGenerator 0) ∧Require this generated function to match the same input-0 record.
L619 ¬ Supports [zeroRecord] allTrue ∧ OwnedRevisionExample := byState failure of all-input support and include the concrete owner/prior/revision relationship example.
L620 refine ⟨rfl, rfl, (zeroCompatible _).2 rfl, ?_, ownedRevisionExample⟩Compute the generated function’s values at 0 and 1, give its zero-record compatibility, and include the owned revision relationship example.
L621 intro hAssume the local zero observation entails true output at every input of every compatible function.
L622 have bad := h (localGenerator 0) ((zeroCompatible _).2 rfl) 1Instantiate alleged universal support with localGenerator 0 and then input 1; compatibility at 0 did not constrain this failing input.
L623 cases badEliminate the resulting false=true equality; the actual revision is an evidence-compatible counterexample.
L624/- A proper local observation allows both a universally successful and a failing extension. -/Document the intended scope of localNotUniversal. The corresponding declaration concerns: Exhibits both a universally true function and a zero-only true function compatible with the same observation, with an explicit outside input; therefore the observation does not support universal truth. This comment is explanatory, not a proof premise.
L625/-- organon-map CoreReader.Evidence.localNotUniversalBegin provenance metadata for CoreReader.Evidence.localNotUniversal; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L626organon.grounds.scope#p1 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L627organon.grounds.scope#p2 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L628organon.grounds.scope#p3 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L629-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L630theorem localNotUniversal :State the checked result localNotUniversal. Exhibits both a universally true function and a zero-only true function compatible with the same observation, with an explicit outside input; therefore the observation does not support universal truth.
L631 (∃ outside : Nat, outside ≠ 0) ∧Require at least one natural-number input outside the observed singleton scope.
L632 Compatible [zeroRecord] (fun _ => true) ∧The constant-true function matches the zero observation.
L633 Compatible [zeroRecord] (localGenerator 0) ∧The local generator also matches that same observation.
L634 allTrue (fun _ => true) ∧ ¬ allTrue (localGenerator 0) ∧The first function is universally true while the second is not.
L635 ¬ Supports [zeroRecord] allTrue := byTherefore the shared observation does not support universal truth.
L636 refine ⟨⟨1, by decide⟩, (zeroCompatible _).2 rfl, (zeroCompatible _).2 rfl,Provide an input outside the observed scope and show both the constant-true function and local generator satisfy the same zero observation.
L637 (fun _ => rfl), ?_, selfOriginDoesNotSupport.2.2.2.1⟩The constant function is universally true; retain the known support counterexample and leave the local generator’s universal claim to refute.
L638 intro h; have bad := h 1; cases badEvaluate any proposed all-input truth of the local generator at 1, where its actual result is false.
L639/- Two implementations agree on the actual observed input and differ on a specified relevant omitted input. -/Document the intended scope of hiddenDifference. The corresponding declaration concerns: Shows the two functions agree on the domain restricted to zero and disagree at one; local agreement does not establish global equality. This comment is explanatory, not a proof premise.
L640/-- organon-map CoreReader.Evidence.hiddenDifferenceBegin provenance metadata for CoreReader.Evidence.hiddenDifference; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L641organon.grounds.scope#p1 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L642organon.grounds.scope#p2 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L643organon.grounds.scope#p3 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L644-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L645theorem hiddenDifference :State the checked result hiddenDifference. Shows the two functions agree on the domain restricted to zero and disagree at one; local agreement does not establish global equality.
L646 (∀ n : Nat, n = 0 → (fun _ : Nat => true) n = localGenerator 0 n) ∧State equality of both functions only for inputs satisfying n=0.
L647 (fun _ : Nat => true) 1 ≠ localGenerator 0 1 := byState their concrete output inequality at input 1.
L648 refine ⟨?_, by decide⟩Separate agreement on the input-0 scope from the concrete output difference at input 1.
L649 intro n hn; cases hn; rflSubstitute n=0 from the scope premise; both functions then compute to true.
L650/- One observation supplies only its actual input-specific consequence, without repetition. -/Document the intended scope of singleObservation. The corresponding declaration concerns: A single zero-input observation is nonvacuously compatible and supports its local result but does not support the all-input claim. This comment is explanatory, not a proof premise.
L651/-- organon-map CoreReader.Evidence.singleObservationBegin provenance metadata for CoreReader.Evidence.singleObservation; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L652organon.grounds.scope#p1 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L653organon.grounds.scope#p2 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L654organon.grounds.scope#p3 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L655-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L656theorem singleObservation : [zeroRecord].length = 1 ∧State the checked result singleObservation. A single zero-input observation is nonvacuously compatible and supports its local result but does not support the all-input claim.
L657 (∃ f, Compatible [zeroRecord] f) ∧Require an actual function compatible with the single observation, preventing empty evidence semantics.
L658 Supports [zeroRecord] (fun f => f 0 = true) ∧That single record supports its actual input-0 claim.
L659 ¬ Supports [zeroRecord] allTrue :=It does not support the stronger all-input claim.
L660 ⟨rfl, ⟨localGenerator 0, (zeroCompatible _).2 rfl⟩,Compute the record count as one and provide localGenerator 0 as an actual compatible witness.
L661 (fun f hf => (zeroCompatible f).1 hf), selfOriginDoesNotSupport.2.2.2.1⟩Extract the supported input-0 fact directly from compatibility and reuse the established failure of allTrue support.
L662/- This inferential assessment derives a successor value from its explicit numeric premise without observation. -/Document the intended scope of arithmeticFacet. The corresponding declaration concerns: Defines an inferential facet with assumption n=2 and conclusion n+1=3. This comment is explanatory, not a proof premise.
L663def arithmeticFacet : Facet Nat := .inferential (singleton (fun n => n = 2)) (fun n => n + 1 = 3)Define arithmeticFacet. Defines an inferential facet with assumption n=2 and conclusion n+1=3.
L664def usesObservation {W : Type} : Facet W → BoolDefine usesObservation. Returns true only for empirical facet tags; this is a classification test, not an analysis of computational executability.
L665 | .empirical _ _ _ _ => trueClassify an empirical facet as using observation because it carries actual test records.
L666 | _ => falseClassify inferential and value facets as not using observation in this represented method classifier.
L667/- An actual valid inferential assessment refutes a mandatory measurement/repetition/framework chain. -/Document the intended scope of noUniversalChain. The corresponding declaration concerns: Discharges the arithmetic implication with a model n=2 while its observation tag is false. This is an example of nonempirical discharge, not a universal account of knowledge. This comment is explanatory, not a proof premise.
L668/-- organon-map CoreReader.Evidence.noUniversalChainBegin provenance metadata for CoreReader.Evidence.noUniversalChain; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L669organon.grounds.scope#p1 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L670organon.grounds.scope#p2 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L671organon.grounds.scope#p3 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L672-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L673theorem noUniversalChain : FacetDischarged arithmeticFacet ∧ usesObservation arithmeticFacet = false := byState the checked result noUniversalChain. Discharges the arithmetic implication with a model n=2 while its observation tag is false. This is an example of nonempirical discharge, not a universal account of knowledge. The following tactic block proves this explicit type.
L674 refine ⟨⟨⟨2, (modelsSingleton _ _).2 rfl⟩, ?_⟩, rfl⟩Provide n=2 as the inferential theory’s nonempty witness and note that its facet constructor uses no observation.
L675 intro n hnTake any natural-number world n satisfying the arithmetic facet’s actual premise theory.
L676 have premise := (modelsSingleton (fun x : Nat => x = 2) n).1 hnExtract n=2 from the actual singleton premise, rather than assuming the desired successor conclusion.
L677 change n + 1 = 3Expose the arithmetic conclusion n+1=3 as the remaining goal.
L678 rw [premise]Rewrite n to 2 using the premise; the required arithmetic equality reduces by computation.
L679/- A trial has a reproducible setting, an actual outcome and a separately recorded outcome. -/Document the intended scope of Trial. The corresponding declaration concerns: Stores setting, actual outcome and recorded outcome as independent natural-number fields, with no measurement mechanism. This comment is explanatory, not a proof premise.
L680structure Trial whereDeclare the data interface Trial. Stores setting, actual outcome and recorded outcome as independent natural-number fields, with no measurement mechanism.
L681 setting : NatStore the trial’s setting separately from its outcomes.
L682 actualOutcome : NatStore the trial’s actual outcome, whether accurately recorded or not.
L683 recordedOutcome : NatStore the separately recorded outcome to allow accuracy comparisons.
L684/- Verifying a record, reproducing settings and retaining a conclusion are separate predicates. -/Document the intended scope of Verified. The corresponding declaration concerns: Verification means exact equality of the two supplied outcome fields. This comment is explanatory, not a proof premise.
L685def Verified (t : Trial) : Prop := t.recordedOutcome = t.actualOutcomeDefine Verified. Verification means exact equality of the two supplied outcome fields.
L686def Reproduced (a b : Trial) : Prop := a.setting = b.settingDefine Reproduced. Reproduction means only equality of two setting fields; it does not require matching outcomes or histories.
L687def Bounded (t : Trial) : Prop := t.actualOutcome ≤ 2Define Bounded. The bound property is actualOutcome≤2, a fixed threshold rather than a general stability theory.
L688/- Same-setting possible trials can differ while preserving the chosen bound; no probability semantics is claimed. -/Document the intended scope of variableOutcomesStableBound. The corresponding declaration concerns: Exhibits matching settings with different actual outcomes that both satisfy the fixed upper bound. This comment is explanatory, not a proof premise.
L689/-- organon-map CoreReader.Evidence.variableOutcomesStableBoundBegin provenance metadata for CoreReader.Evidence.variableOutcomesStableBound; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L690organon.grounds.scope#p1 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L691organon.grounds.scope#p2 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L692organon.grounds.scope#p3 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L693-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L694theorem variableOutcomesStableBound :State the checked result variableOutcomesStableBound. Exhibits matching settings with different actual outcomes that both satisfy the fixed upper bound.
L695 let a : Trial := ⟨0,1,1⟩Fix the first trial at setting 0 with actual and recorded outcome 1.
L696 let b : Trial := ⟨0,2,2⟩Fix the second trial at the same setting with actual and recorded outcome 2.
L697 Reproduced a b ∧ a.actualOutcome ≠ b.actualOutcome ∧ Bounded a ∧ Bounded b := byRequire the two explicitly fixed trials to share settings, differ in actual outcomes and both satisfy actualOutcome ≤ 2.
L698 simp [Reproduced, Bounded]Evaluate the two same-setting trials: actual outcomes 1 and 2 differ, but each satisfies actualOutcome ≤ 2.
L699/- Concrete records distinguish record accuracy, condition reproduction and conclusion stability. -/Document the intended scope of verificationReproductionStability. The corresponding declaration concerns: Uses explicit numeric trials to separate recorded/actual agreement, equal settings, and the fixed outcome bound. This comment is explanatory, not a proof premise.
L700/-- organon-map CoreReader.Evidence.verificationReproductionStabilityBegin provenance metadata for CoreReader.Evidence.verificationReproductionStability; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L701organon.grounds.scope#p1 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L702organon.grounds.scope#p2 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L703organon.grounds.scope#p3 sha256 4a0e93c7834e4ef62f129ee4621cf7bf1c93b64d86f9f145d1592adcf9fb6693Register source unit organon.grounds.scope#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L704-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L705theorem verificationReproductionStability :State the checked result verificationReproductionStability. Uses explicit numeric trials to separate recorded/actual agreement, equal settings, and the fixed outcome bound.
L706 (Verified ⟨0,1,1⟩ ∧ Verified ⟨1,1,1⟩ ∧ ¬ Reproduced ⟨0,1,1⟩ ⟨1,1,1⟩) ∧Require two accurately recorded trials whose settings nevertheless differ.
L707 (Reproduced ⟨0,1,1⟩ ⟨0,3,2⟩ ∧ ¬ Verified ⟨0,3,2⟩ ∧ ¬ Bounded ⟨0,3,2⟩) ∧Require repeated settings alongside an inaccurate second record and an actual result exceeding the bound.
L708 (Bounded ⟨0,1,1⟩ ∧ Bounded ⟨0,2,0⟩ ∧ ¬ Verified ⟨0,2,0⟩) := byRequire preserved bounds even though one recorded outcome is inaccurate.
L709 simp [Verified, Reproduced, Bounded]Compute each concrete trial predicate separately, exhibiting changed settings, inaccurate recording and failure or preservation of the bound without conflating them.
L710/- Explanation certificates are executable syntax for this same arithmetic process. -/Document the intended scope of Program. The corresponding declaration concerns: Defines a tiny program language with doubling and natural-number constants only. This comment is explanatory, not a proof premise.
L711inductive Program whereDeclare the alternatives Program. Defines a tiny program language with doubling and natural-number constants only.
L712 | doubleInputProvide syntax for the explanation program that doubles its actual input.
L713 | constant (value : Nat)Provide syntax for a constant-output explanation program carrying its returned natural number.
L714def Program.eval : Program → Nat → NatDefine Program.eval. Defines the executable meaning of the two program constructors.
L715 | .doubleInput, n => n + nEvaluate the doubleInput explanation program at n by actual addition n+n.
L716 | .constant value, _ => valueEvaluate a constant program by returning its stored value, independently of the input.
L717/- A process exposes outputs and an explanation response, whose certificate can be checked against those outputs. -/Document the intended scope of Process. The corresponding declaration concerns: A process consists of an arbitrary natural-number function and an optional tiny-language explanation program. This comment is explanatory, not a proof premise.
L718structure Process whereDeclare the data interface Process. A process consists of an arbitrary natural-number function and an optional tiny-language explanation program.
L719 output : Nat → NatStore the same process’s actual output function over natural-number inputs.
L720 explanation : Option ProgramStore the process’s optional supplied explanation program, separately from its output function.
L721/- The output-only application contract checks every relevant input. -/Document the intended scope of OutputContract. The corresponding declaration concerns: Requires the output function to double every natural-number input. This comment is explanatory, not a proof premise.
L722def OutputContract (p : Process) : Prop := ∀ n, p.output n = n + nDefine OutputContract. Requires the output function to double every natural-number input.
L723/- The explanation application contract requires a provided certificate faithful to this very process. -/Document the intended scope of ExplanationContract. The corresponding declaration concerns: Requires an attached program whose evaluated outputs equal the process output on every input; this is extensional agreement, not causal or human explanatory adequacy. This comment is explanatory, not a proof premise.
L724def ExplanationContract (p : Process) : Prop :=Define ExplanationContract. Requires an attached program whose evaluated outputs equal the process output on every input; this is extensional agreement, not causal or human explanatory adequacy.
L725 ∃ program, p.explanation = some program ∧ ∀ n, program.eval n = p.output nRequire an actually supplied program whose evaluation equals this process’s output at every natural input.
L726/- This process produces doubled values but returns no explanatory certificate. -/Document the intended scope of outputOnlyProcess. The corresponding declaration concerns: Constructs the correct doubling function without any attached explanation program. This comment is explanatory, not a proof premise.
L727def outputOnlyProcess : Process := ⟨fun n => n + n, none⟩Define outputOnlyProcess. Constructs the correct doubling function without any attached explanation program.
L728def explainedProcess : Process := ⟨fun n => n + n, some .doubleInput⟩Define explainedProcess. Constructs the same output function with the doubling program attached.
L729/- Object scope fixes the very process whose contract is assessed; contract inputs themselves still range over all naturals. -/Document the intended scope of processScope. The corresponding declaration concerns: Restricts modeled candidates to the exact assessed process, without restricting the contract's input quantifier. This comment is explanatory, not a proof premise.
L730def processScope (assessed : Process) : Theory Process :=Define processScope. Restricts modeled candidates to the exact assessed process, without restricting the contract's input quantifier.
L731 singleton (fun candidate => candidate = assessed)Restrict theory models by the actual equality candidate=assessed, not by assuming the desired contract.
L732/- This inferential facet checks an explicit contract under exact process-identity assumptions. -/Document the intended scope of processContractFacet. The corresponding declaration concerns: Builds an inferential contract facet under the exact assessed-process identity assumption. This comment is explanatory, not a proof premise.
L733def processContractFacet (assessed : Process) (contract : Claim Process) : Facet Process :=Define processContractFacet. Builds an inferential contract facet under the exact assessed-process identity assumption.
L734 .inferential (processScope assessed) contractBuild an inferential facet with that exact object-identity scope and the supplied contract conclusion.
L735/- The scope's compatible interpretations are exactly this assessed process, not an unrelated substitute. -/Document the intended scope of processScopeModels. The corresponding declaration concerns: Proves that modeling the identity scope is exactly equality to the assessed process. This comment is explanatory, not a proof premise.
L736theorem processScopeModels (assessed candidate : Process) :State the checked result processScopeModels. Proves that modeling the identity scope is exactly equality to the assessed process.
L737 Models (processScope assessed) candidate ↔ candidate = assessed :=State that modeling this scope is exactly equality to the assessed process.
L738 modelsSingleton (fun process => process = assessed) candidateInstantiate modelsSingleton with equality to the actual assessed Process, proving exactly which candidates satisfy processScope.
L739/- A concrete contract proof supplies the facet's consequence for its scoped object. -/Document the intended scope of processContractDischarged. The corresponding declaration concerns: Uses a supplied proof of the actual process contract and scope equality to discharge the corresponding inferential facet. This comment is explanatory, not a proof premise.
L740theorem processContractDischarged (assessed : Process) (contract : Claim Process) (proof : contract assessed) :State the checked result processContractDischarged. Uses a supplied proof of the actual process contract and scope equality to discharge the corresponding inferential facet.
L741 FacetDischarged (processContractFacet assessed contract) := byConclude discharge for that same object’s contract facet using the explicit contract-proof premise.
L742 refine ⟨⟨assessed,(processScopeModels _ _).2 rfl⟩, ?_⟩Use the assessed process itself as a model of its identity scope; leave semantic entailment of its contract.
L743 intro candidate hcTake a candidate and proof hc that it lies in the actual assessed process’s identity scope.
L744 have same := (processScopeModels _ _).1 hcFrom the scope model hc, recover that the candidate is exactly the assessed process.
L745 subst candidateSubstitute that process identity so the contract goal is about the actual assessed object.
L746 exact proofUse the explicit premise proof of this object’s contract; the generic helper does not create contract correctness without that premise.
L747/- Scoped capability grounds include exact claim, object-specific assumptions, canonical articulation and actual assessment. -/Document the intended scope of ProcessGrounds. The corresponding declaration concerns: Requires canonical Grounds for this exact process/contract facet and its singleton applicability. This comment is explanatory, not a proof premise.
L748def ProcessGrounds (assessed : Process) (contract : Claim Process) : Prop :=Define ProcessGrounds. Requires canonical Grounds for this exact process/contract facet and its singleton applicability.
L749 Grounds contract canonicalArticulation (fun facet => facet = processContractFacet assessed contract)Require Grounds for the supplied contract using canonical articulation and the exact assessed-process facet as applicable.
L750 [processContractFacet assessed contract]The listed evidence package contains precisely that same process-contract facet.
L751theorem processGrounds (assessed : Process) (contract : Claim Process) (proof : contract assessed) :State the checked result processGrounds. Constructs matching contract Grounds from an actual proof for that same assessed process.
L752 ProcessGrounds assessed contract := byConclude these same-object ProcessGrounds from the explicit proof of the contract at the assessed process.
L753 have discharged := processContractDischarged assessed contract proofApply the contract-discharge helper to the explicit proof for this same assessed process.
L754 refine ⟨by simp, ?_, ?_⟩Separate nonempty facets, exact applicability coverage and each facet’s claim/articulation/discharge obligations.
L755 · intro facet hf; subst facet; exact List.mem_singleton.mpr rflThe applicability assumption identifies the facet with the one prescribed facet, which belongs to the singleton list.
L756 · intro facet hf; have hf' := List.mem_singleton.mp hf; subst facetSingleton membership identifies the current facet with the prescribed one; substitute it to check its exact claim and grounds.
L757 exact ⟨rfl,canonicalArticulated _ discharged,canonicalFacetArticulated _,discharged⟩Assemble the same contract claim, nonempty canonical articulation, semantic connection to the object scope and the established discharge.
L758/- Universal output correctness here comes from the concrete program definition, not from an assumed capability label. -/Document the intended scope of outputCorrectByEvaluation. The corresponding declaration concerns: Proves all-input doubling directly from the concrete output function, not an assumed success flag. This comment is explanatory, not a proof premise.
L759theorem outputCorrectByEvaluation : OutputContract outputOnlyProcess := fun _ => rflState the checked result outputCorrectByEvaluation. Proves all-input doubling directly from the concrete output function, not an assumed success flag. The supplied proof term uses the displayed constructed witnesses or earlier lemmas, rather than adding an axiom.
L760/- This same process actually returns no explanation certificate. -/Document the intended scope of outputOnlyNoExplanation. The corresponding declaration concerns: Rejects an attached explanation witness because the same process stores none. This comment is explanatory, not a proof premise.
L761theorem outputOnlyNoExplanation : ¬ ExplanationContract outputOnlyProcess := byState the checked result outputOnlyNoExplanation. Rejects an attached explanation witness because the same process stores none. The following tactic block proves this explicit type.
L762 rintro ⟨program,h,_⟩; cases hAny explanation contract would supply a program whose some value equals the process’s actual none response; distinct option constructors make that impossible.
L763/- The full application contract requires outputs and an explanation of that same process. -/Document the intended scope of FullProcessContract. The corresponding declaration concerns: Conjoins output correctness with an attached output-faithful explanation for the same process. This comment is explanatory, not a proof premise.
L764def FullProcessContract (assessed : Process) : Prop := OutputContract assessed ∧ ExplanationContract assessedDefine FullProcessContract. Conjoins output correctness with an attached output-faithful explanation for the same process.
L765/- Output-only grounds have the assessed process itself as a counterworld to the stronger contract. -/Document the intended scope of OutputContractEvidence. The corresponding declaration concerns: Combines grounded output and a nonempty exact-process scope whose model refutes the stronger full contract. This comment is explanatory, not a proof premise.
L766def OutputContractEvidence : Prop :=Define OutputContractEvidence. Combines grounded output and a nonempty exact-process scope whose model refutes the stronger full contract.
L767 ProcessGrounds outputOnlyProcess OutputContract ∧Require grounded output correctness for the actual output-only process.
L768 Models (processScope outputOnlyProcess) outputOnlyProcess ∧Keep that process itself as an inhabitant of the exact assessment scope.
L769 ¬ Entails (processScope outputOnlyProcess) FullProcessContractDeny that this same scope entails the stronger output-plus-explanation contract.
L770/- Existing output evidence does not supply the absent explanation for the same object and scope. -/Document the intended scope of outputContractEvidence. The corresponding declaration concerns: Builds output Grounds by evaluation and uses the missing explanation at the same process to refute full-contract entailment. This comment is explanatory, not a proof premise.
L771theorem outputContractEvidence : OutputContractEvidence := byState the checked result outputContractEvidence. Builds output Grounds by evaluation and uses the missing explanation at the same process to refute full-contract entailment. The following tactic block proves this explicit type.
L772 refine ⟨processGrounds _ _ outputCorrectByEvaluation, (processScopeModels _ _).2 rfl, ?_⟩Supply the actual output contract’s grounds and the process’s own scope witness, then refute the stronger contract under that very scope.
L773 intro strongerAssume that this exact process scope entails the stronger output-plus-explanation contract.
L774 exact outputOnlyNoExplanation (stronger outputOnlyProcess ((processScopeModels _ _).2 rfl)).2Instantiate alleged full-contract entailment at outputOnlyProcess itself; its explanation component contradicts the proven absent explanation.
L775/- Both actual application contracts have grounds and explicit object scopes; neither scope is empty. -/Document the intended scope of ScopedApplicationEvidence. The corresponding declaration concerns: Requires both different application contracts to have Grounds and nonempty exact-process scopes. This comment is explanatory, not a proof premise.
L776def ScopedApplicationEvidence : Prop :=Define ScopedApplicationEvidence. Requires both different application contracts to have Grounds and nonempty exact-process scopes.
L777 ProcessGrounds outputOnlyProcess OutputContract ∧Include grounded output correctness for outputOnlyProcess.
L778 ProcessGrounds explainedProcess FullProcessContract ∧Include grounded output and explanation together for explainedProcess.
L779 (∀ candidate, Models (processScope outputOnlyProcess) candidate ↔ candidate = outputOnlyProcess) ∧Make the first scope’s exact identity with outputOnlyProcess explicit for every candidate.
L780 (∀ candidate, Models (processScope explainedProcess) candidate ↔ candidate = explainedProcess) ∧Likewise make the second scope’s exact identity with explainedProcess explicit.
L781 Satisfiable (processScope outputOnlyProcess) ∧ Satisfiable (processScope explainedProcess)Require both actual process-identity theories to be satisfiable.
L782/- Concrete evaluation and a faithful double-input certificate establish the two differently scoped contracts. -/Document the intended scope of scopedApplicationEvidence. The corresponding declaration concerns: Supplies actual all-input output proofs and the doubling explanation program for the stronger contract. This comment is explanatory, not a proof premise.
L783theorem scopedApplicationEvidence : ScopedApplicationEvidence := byState the checked result scopedApplicationEvidence. Supplies actual all-input output proofs and the doubling explanation program for the stronger contract. The following tactic block proves this explicit type.
L784 refine ⟨processGrounds _ _ outputCorrectByEvaluation, processGrounds _ _ ?_,Construct output-only grounds by evaluation and reserve the explained process’s stronger contract proof.
L785 processScopeModels _,processScopeModels _,⟨_,(processScopeModels _ _).2 rfl⟩,Provide exact process-identity scope equivalences and each process itself as a nonempty scope witness.
L786 ⟨_,(processScopeModels _ _).2 rfl⟩⟩Provide exact process-identity scope equivalences and each process itself as a nonempty scope witness.
L787 exact ⟨fun _ => rfl,⟨.doubleInput,rfl,fun _ => rfl⟩⟩For explainedProcess, prove every doubled output by reflexivity and supply doubleInput as an actual provided, extensionally faithful explanation program.
L788/- Universal output correctness does not entail the explanation-requiring contract for the same process. -/Document the intended scope of outputNotExplanation. The corresponding declaration concerns: Proves output correctness with no attached explanation and includes the corresponding same-object Grounds/countermodel evidence. This comment is explanatory, not a proof premise.
L789/-- organon-map CoreReader.Evidence.outputNotExplanationBegin provenance metadata for CoreReader.Evidence.outputNotExplanation; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L790organon.grounds.capabilities#p1 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L791organon.grounds.capabilities#p2 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L792-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L793theorem outputNotExplanation : OutputContract outputOnlyProcess ∧State the checked result outputNotExplanation. Proves output correctness with no attached explanation and includes the corresponding same-object Grounds/countermodel evidence.
L794 ¬ ExplanationContract outputOnlyProcess ∧ OutputContractEvidence :=Retain absence of this process’s explanation contract together with its scoped output evidence.
L795 ⟨outputCorrectByEvaluation, outputOnlyNoExplanation, outputContractEvidence⟩Combine actual output correctness, the same process’s absence of an explanation, and its matched scoped output evidence.
L796/- Applications may use distinct contracts, and a faithful certificate can satisfy the stronger one. -/Document the intended scope of applicationContractsDiffer. The corresponding declaration concerns: Shows output-only evidence fails the stronger contract, while the explained process satisfies both; both applications carry their own Grounds. This comment is explanatory, not a proof premise.
L797/-- organon-map CoreReader.Evidence.applicationContractsDifferBegin provenance metadata for CoreReader.Evidence.applicationContractsDiffer; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L798organon.grounds.capabilities#p1 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L799organon.grounds.capabilities#p2 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L800-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L801theorem applicationContractsDiffer :State the checked result applicationContractsDiffer. Shows output-only evidence fails the stronger contract, while the explained process satisfies both; both applications carry their own Grounds.
L802 (OutputContract outputOnlyProcess ∧ ¬ (OutputContract outputOnlyProcess ∧ ExplanationContract outputOnlyProcess)) ∧The output-only process meets output correctness but fails the combined output-and-explanation contract.
L803 (OutputContract explainedProcess ∧ ExplanationContract explainedProcess) ∧The explained process meets both actual contracts.
L804 ScopedApplicationEvidence :=Include the explicit scoped grounds and nonempty witnesses for both application contracts.
L805 ⟨⟨outputCorrectByEvaluation, fun h => outputOnlyNoExplanation h.2⟩,For outputOnlyProcess, supply actual output correctness and refute any joint contract by projecting its impossible explanation component.
L806 ⟨(fun _ => rfl), ⟨.doubleInput, rfl, fun _ => rfl⟩⟩, scopedApplicationEvidence⟩For explainedProcess, compute all doubled outputs, supply faithful doubleInput syntax, and include both contracts’ matched scoped grounds.
L807/- The assessor supplies a mathematical certificate; the process's own explanation response is unnecessary. -/Document the intended scope of ExternalCertificate. The corresponding declaration concerns: Binds output-correctness proof to the exact process and distinct assessor/assessed identifiers; it is a mathematical role model, not authenticated real provenance. This comment is explanatory, not a proof premise.
L808structure ExternalCertificate (p : Process) whereDeclare the data interface ExternalCertificate. Binds output-correctness proof to the exact process and distinct assessor/assessed identifiers; it is a mathematical role model, not authenticated real provenance.
L809 assessorId : NatStore the external assessor’s identifier.
L810 assessedId : NatStore the assessed participant’s identifier; the certificate type already fixes the assessed Process.
L811 distinctParticipants : assessorId ≠ assessedIdRequire distinct participant identifiers as an explicit certificate field.
L812 outputCorrect : ∀ n, p.output n = n + nRequire a proof of this very process’s doubled output for every input; a generic certificate assumes this field, while the concrete certificate constructs it.
L813/- The external assessor 42 evaluates the specified process 7; the full output proof is constructed by evaluation. -/Document the intended scope of externalOutputCertificate. The corresponding declaration concerns: Constructs assessor forty-two's proof for assessed object seven by actual output evaluation. This comment is explanatory, not a proof premise.
L814def externalOutputCertificate : ExternalCertificate outputOnlyProcess :=Define externalOutputCertificate. Constructs assessor forty-two's proof for assessed object seven by actual output evaluation.
L815 ⟨42,7,by decide,fun _ => rfl⟩Construct participants 42 and 7, compute their inequality, and prove every doubled output by reflexivity of the actual program.
L816/- An external certificate establishes the output contract without producing an internal explanation. -/Document the intended scope of externalAssessment. The corresponding declaration concerns: Uses a distinct-participant certificate to supply matching output Grounds while the assessed process still returns no explanation. This comment is explanatory, not a proof premise.
L817/-- organon-map CoreReader.Evidence.externalAssessmentBegin provenance metadata for CoreReader.Evidence.externalAssessment; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L818organon.grounds.capabilities#p1 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L819organon.grounds.capabilities#p2 sha256 7249f6f2ef327baaa72349cae53b9245f23a34436356dd05f3c6005cab35e8f0Register source unit organon.grounds.capabilities#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L820-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L821theorem externalAssessment :State the checked result externalAssessment. Uses a distinct-participant certificate to supply matching output Grounds while the assessed process still returns no explanation.
L822 (∃ certificate : ExternalCertificate outputOnlyProcess,Require an actual external certificate indexed by outputOnlyProcess.
L823 certificate.assessorId = 42 ∧ certificate.assessedId = 7 ∧Identify its assessor as 42 and assessed participant as 7.
L824 certificate.assessorId ≠ certificate.assessedId ∧ OutputContract outputOnlyProcess) ∧Require their distinction and actual output correctness of the same process.
L825 ProcessGrounds outputOnlyProcess OutputContract ∧Also retain matched ProcessGrounds for that same output contract.
L826 ¬ ExplanationContract outputOnlyProcess :=Still deny an internal explanation contract for that actual process.
L827 ⟨⟨externalOutputCertificate,rfl,rfl,externalOutputCertificate.distinctParticipants,Use the actual externalOutputCertificate with fixed participants 42 and 7 and its proved participant distinction.
L828 externalOutputCertificate.outputCorrect⟩,Take universal output correctness from that concrete certificate, whose proof was constructed from the actual program.
L829 processGrounds outputOnlyProcess OutputContract externalOutputCertificate.outputCorrect,Build matching ProcessGrounds for the very outputOnlyProcess using that same concrete output proof.
L830 outputOnlyNoExplanation⟩Retain outputOnlyNoExplanation, so the external certificate does not assert an internal explanation exists.
L831/- This argument records concepts and actual premises for a semantic inference, separately from executable tests. -/Document the intended scope of arithmeticArticulation. The corresponding declaration concerns: Names the canonical articulation of the arithmetic inferential facet. This comment is explanatory, not a proof premise.
L832def arithmeticArticulation : Articulation Nat := canonicalArticulation arithmeticFacetDefine arithmeticArticulation. Names the canonical articulation of the arithmetic inferential facet.
L833/- A reasoned inferential assessment needs no observation method, while applicable empirical assessment retains observations. -/Document the intended scope of nonExecutableAssessment. The corresponding declaration concerns: Constructs Grounds for the arithmetic conditional facet and distinguishes its nonempirical tag from a discharged empirical switch facet. The tag does not establish noncomputability. This comment is explanatory, not a proof premise.
L834/-- organon-map CoreReader.Evidence.nonExecutableAssessmentBegin provenance metadata for CoreReader.Evidence.nonExecutableAssessment; the mapping identifies the source-correspondence object, not a Lean premise or correctness certificate.
L835organon.relationships.terms#p1 sha256 0d22f818e4466a5ab4272607ac0ab26997270cf05c64ce9ac547e866068907d1Register source unit organon.relationships.terms#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L836organon.grounds.assessment#p1 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p1 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L837organon.grounds.assessment#p2 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p2 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L838organon.grounds.assessment#p3 sha256 2e7cbca320eec1f25a6e82391c6d44d29bfafd4a27f2fe8241db0453381d0fe2Register source unit organon.grounds.assessment#p3 with the displayed SHA-256 content identity. This is traceability metadata, not part of the theorem’s proof.
L839-/Close the preceding documentation/provenance comment; no executable or logical clause is added.
L840theorem nonExecutableAssessment :State the checked result nonExecutableAssessment. Constructs Grounds for the arithmetic conditional facet and distinguishes its nonempirical tag from a discharged empirical switch facet. The tag does not establish noncomputability.
L841 Grounds (fun n : Nat => n + 1 = 3) canonicalArticulation (fun f => f = arithmeticFacet) [arithmeticFacet] ∧Require matched canonical Grounds for n+1=3 using precisely arithmeticFacet.
L842 usesObservation arithmeticFacet = false ∧Specify that this inferential facet uses no observation.
L843 FacetDischarged switchEmpirical ∧ usesObservation switchEmpirical = true := byAt the same time, include an actually discharged empirical facet that does use observation.
L844 refine ⟨⟨by simp, (by intro f hf; cases hf; simp), ?_⟩, rfl, switchEmpiricalDischarged, rfl⟩Build the arithmetic claim’s nonempty, applicability-covered Grounds, retain its no-observation classification, and include the valid observed switch facet.
L845 intro f hf; simp only [List.mem_singleton] at hf; cases hfSingleton membership fixes the assessed facet to arithmeticFacet, so its specific assumptions and conclusion must be checked.
L846 exact ⟨rfl, canonicalArticulated _ noUniversalChain.1, canonicalFacetArticulated _, noUniversalChain.1⟩Use the same arithmetic facet’s proven discharge with canonical nonempty articulation and its exact semantic connection.
L848end CoreReader.EvidenceClose namespace CoreReader.Evidence; this adds no proof or premise.