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 PA statement
forall B. exists c. (~(c = 0) /\ forall t. (exists h. S t + S h = S B) -> exists k. c = S t * k)Structural proof guide
Every finite initial interval has a nonzero common-multiple surrogate.
Direct prerequisites: bounded_common_multiple_step, succ_ne_zero, add_eq_zero_left. The authored body proceeds by structural induction (1), case analysis (3), intermediate claims (2), equality transport (1).
Proof neighborhood
Direct dependencies
Direct dependents
Formal native tactic body
Dependencies are hypotheses of the historical Alpha-v12 body receipt. The complete historical Alpha-v18 proof bundle independently checks every dependency; current Alpha v25 preserves that checked theorem use without changing 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.
Named ingredients (3)
01Fix variables and assumptionsL1–1
Work with arbitrary variables or the premises of the current implication.
- L1
intro B
02Induction on BL2–2
Split the argument into the base and successor obligations. The induction hypothesis is available only in the successor branch.
- L2
induction B
03Construct an explicit witnessL3–3
Supply the displayed value, then prove that it has the required property.
- L3
exists 1
04Separate the logical casesL4–4
Follow the explicit conjunction, disjunction, witness, or contradiction step recorded below.
- L4
split
05Use earlier factsL5–6
06Fix variables and assumptionsL7–8
07Separate the logical casesL9–10
08Establish hzL11–14
09Establish hst0L15–22
Establish this local claim before using it. It is not an additional assumption. The following proof commands apply add eq zero left.
10Separate the logical casesL23–24
Original exact command ledger · 29 lines
- 0001
intro B - 0002
induction B - 0003
exists 1 - 0004
split - 0005
specialize succ_ne_zero 0 - 0006
exact succ_ne_zero - 0007
intro t - 0008
intro ht - 0009
cases ht - 0010
exfalso - 0011
have hz : S t + x = 0 - 0012
rewrite PA4 at ht_witness - 0013
apply PA2 - 0014
exact ht_witness - 0015
have hst0 : S t = 0 - 0016
specialize add_eq_zero_left (S t) - 0017
specialize add_eq_zero_left x - 0018
apply add_eq_zero_left - 0019
exact hz - 0020
specialize succ_ne_zero t - 0021
apply succ_ne_zero - 0022
exact hst0 - 0023
cases IH - 0024
cases IH_witness - 0025
specialize bounded_common_multiple_step B - 0026
specialize bounded_common_multiple_step x - 0027
apply bounded_common_multiple_step - 0028
exact IH_witness_left - 0029
exact IH_witness_right