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.
Statement with defined notation
∀ B. ∃ c. ¬c = 0 ∧ (∀ x. (∃ y. S x + S y = S B) → Dvd(S x,c))Every purple notation token opens its conservative definition. Expanding the displayed statement recovers the exact first-order Peano-arithmetic formula checked by the unchanged kernel.
Definitions used by this theorem
In the theorem statement
1 occurrences
In local proof propositions
0 occurrences
Exact expanded native-PA statement
forall B. exists c. (~(c = 0) /\ forall t. (exists h. S t + S h = S B) -> exists k. c = S t * k)Proof neighborhood
Direct theorem prerequisites
Direct theorem dependents
Definition-aware tactic body
Only local propositions introduced by have or suffices are compacted. Every changed line has an exact-AST conservative-expansion receipt; the kernel still receives the immutable original tactic script.
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 defined 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