pith. sign in
theorem

absoluteFloorClosureCert

proved
show as:
module
IndisputableMonolith.Foundation.AbsoluteFloorClosure
domain
Foundation
line
75 · github
papers citing
4 papers (below)

plain-language theorem explainer

The absolute floor closure certificate assembles self-bootstrap distinguishability, the equivalence of object distinguishability to non-trivial specifiability on inhabited carriers, and a concrete Bool witness into a single Prop. Foundation researchers cite it to close the absolute-floor program without adding RS-specific postulates. The proof is a direct term construction that populates the three fields of AbsoluteFloorClosureCert from the upstream certificates and equivalence theorem.

Claim. There exists a certificate consisting of the self-bootstrap distinguishability certificate, the statement that for every inhabited carrier $K$ the existence of distinct elements in $K$ is equivalent to the existence of a non-trivial specification on $K$, and the witness that the Boolean type realizes the absolute floor.

background

AbsoluteFloorClosureCert is the joint closure certificate whose three fields are routeA (a SelfBootstrapCert), routeB (the equivalence between distinguishability and non-trivial specifiability), and bool_witness (an AbsoluteFloorWitness on Bool). The module states that the closure is modest: distinguishability is equivalent to non-trivial specifiability on an inhabited carrier, and the meta-language already distinguishes propositions, so the remaining floor is only the precondition of a non-singleton universe of discourse. Upstream, selfBootstrapCert supplies the meta-language distinguishability of propositions together with the claim that a proposition does not coincide with its negation. The theorem distinguishability_iff_nontrivial_specifiability states that, on any inhabited $K$, the existence of distinct elements is equivalent to the existence of a non-trivial specification. bool_absolute_floor shows that Bool itself realizes the absolute floor via the bare distinguishability of false and true.

proof idea

The term proof constructs the AbsoluteFloorClosureCert structure by direct field assignment: routeA receives the selfBootstrapCert theorem, routeB receives the lambda that applies distinguishability_iff_nontrivial_specifiability to any inhabited carrier, and bool_witness receives the bool_absolute_floor theorem.

why it matters

This declaration closes the absolute-floor program by reducing it to meta-language proposition distinguishability plus a non-singleton universe, as described in the module doc-comment. It supplies the base layer for the forcing chain (T0-T8) by confirming that the floor is not an RS-specific physical postulate. No downstream uses are recorded, indicating it functions as a terminal foundation certificate rather than an intermediate lemma.

Switch to Lean above to see the machine-checked source, dependencies, and usage graph.