BE000F

binary_execution_horner_digit_split

Alpha v34 independently verified · alpha_closed; checked-use authorized; not Stable

A valid final Horner digit yields the exact exponent decomposition e=2h+d.

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 authorized

Direct 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

16 script commands · 6 reading checkpoints · 1 local claims

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

Work with arbitrary variables or the premises of the current implication.

  1. L1
    intro h
  2. L2
    intro e
  3. L3
    intro d
  4. L4
    intro hbit
  5. L5
    intro hexponent
02Establish hdoubleL6–12

Establish this local claim before using it. It is not an additional assumption.

  1. L6
    have hdouble : h * 2 = h + h
  2. L7
    trans 2 * h
  3. L8
    specialize mul_comm h
  4. L9
    specialize mul_comm 2
  5. L10
    exact mul_comm
  6. L11
    specialize two_mul_eq_add_self h
  7. L12
    exact two_mul_eq_add_self
03Separate the logical casesL13–13

Follow the explicit conjunction, disjunction, witness, or contradiction step recorded below.

  1. L13
    split
04Use earlier factsL14–14

Instantiate or apply named facts and discharge the corresponding proof obligations.

  1. 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.

  1. L15
    rewrite <- hdouble
06Use earlier factsL16–16

Instantiate or apply named facts and discharge the corresponding proof obligations.

  1. L16
    exact hexponent

Library-wide reading audit

Original exact command ledger · 16 lines
  1. 0001intro h
  2. 0002intro e
  3. 0003intro d
  4. 0004intro hbit
  5. 0005intro hexponent
  6. 0006have hdouble : h * 2 = h + h
  7. 0007trans 2 * h
  8. 0008specialize mul_comm h
  9. 0009specialize mul_comm 2
  10. 0010exact mul_comm
  11. 0011specialize two_mul_eq_add_self h
  12. 0012exact two_mul_eq_add_self
  13. 0013split
  14. 0014exact hbit
  15. 0015rewrite <- hdouble
  16. 0016exact hexponent