Current library: Alpha v34, 4,223 checked-use theorems; Stable remains 432. Historical first admissions, original proof editions, and non-admitted aliases are preserved. Exact original first-admission records.
Exact expanded first-order arithmetic statement
forall h e d. (d = 0 \/ d = 1) -> e = h * 2 + d -> ((((d = 0) \/ (d = 1)) /\ e = (h + h) + d))Constructive proof overview
Generated structural guide
A valid final Horner digit yields the exact exponent decomposition e=2h+d.
The unchanged tactic script uses 2 declared prerequisites and contains 16 exact native proof lines.
Alpha v34 checked-use · first admitted v22 · independently kernel and Lean verified; not Stable
Proof neighborhood
Direct dependencies
mul_comm Stable theorem; checked-use authorized two_mul_eq_add_self Alpha theorem; checked-use authorizedDirect dependents
Formal native tactic body
Dependencies are introduced as named hypotheses before line 1. Local theorem links identify exact declared prerequisites. This exact body belongs to a complete independently kernel-checked constructive proof bundle and has Alpha checked-use authority; it does not imply Stable membership.
Read the argument
Proof checkpoints
This is a reading aid, not a new proof or a proof-tree certificate. Checkpoint groups are consecutive commands, not inferred branch boundaries. Every step links to the preserved script.
01Fix variables and assumptionsL1–5
02Establish hdoubleL6–12
03Separate the logical casesL13–13
Follow the explicit conjunction, disjunction, witness, or contradiction step recorded below.
- L13
split
04Use earlier factsL14–14
Instantiate or apply named facts and discharge the corresponding proof obligations.
- L14
exact hbit
05Calculate and transport equalitiesL15–15
Carry out the recorded arithmetic or equality steps; inspect the exact commands for their direction and premises.
- L15
rewrite <- hdouble
06Use earlier factsL16–16
Instantiate or apply named facts and discharge the corresponding proof obligations.
- L16
exact hexponent
Original exact command ledger · 16 lines
- 0001
intro h - 0002
intro e - 0003
intro d - 0004
intro hbit - 0005
intro hexponent - 0006
have hdouble : h * 2 = h + h - 0007
trans 2 * h - 0008
specialize mul_comm h - 0009
specialize mul_comm 2 - 0010
exact mul_comm - 0011
specialize two_mul_eq_add_self h - 0012
exact two_mul_eq_add_self - 0013
split - 0014
exact hbit - 0015
rewrite <- hdouble - 0016
exact hexponent