pith. machine review for the scientific record. sign in
theorem proved term proof high

erikson_eq_2cube

show as:
view Lean formalization →

EriksonStage has cardinality eight, confirming the 2^3 structure for the developmental reversal model. Researchers modeling neurodegeneration as an involution on the developmental ladder cite this cardinality to anchor the discrete cycle. The proof is a one-line decision procedure that enumerates the eight constructors after the derived Fintype instance.

claimThe finite type of Erikson stages satisfies $|EriksonStage| = 2^3$.

background

The module frames Erikson's eight life stages as a 2³ tick cycle, with reversal defined as the order-reversing involution reverse k = 7 - k on Fin 8. EriksonStage is the inductive type whose constructors are the eight stages trustVsMistrust through integrityVsDespair and which derives Fintype, DecidableEq, and related instances. The upstream inductive definition supplies the finite enumeration required for the cardinality claim.

proof idea

The proof is a one-line wrapper that invokes the decide tactic on the goal Fintype.card EriksonStage = 2 ^ 3. The tactic succeeds by computing the cardinality directly from the Fintype instance derived on the eight-constructor inductive type.

why it matters in Recognition Science

This result supplies the two_cube field to DevelopmentReversalCert, which assembles the full certificate of involution properties including stage count, involution, endpoint swap, and midlife inversion. It aligns with the eight-tick octave (T7) in the forcing chain and closes the discrete counting step for the cross-domain reversal claim in the Recognition Science framework.

scope and limits

formal statement (Lean)

  32theorem erikson_eq_2cube : Fintype.card EriksonStage = 2 ^ 3 := by decide

proof body

Term-mode proof.

  33
  34/-- Reversal map on `Fin 8`. -/

used by (1)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (2)

Lean names referenced from this declaration's body.