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
∀ p. ∀ a. Prime(p) → ¬Dvd(p,a) → Coprime(p,a)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
3 occurrences
In local proof propositions
2 occurrences
Exact expanded native-PA statement
forall p a. (~(p = 1) /\ forall c e. p = c * e -> c = 1 \/ e = 1) -> ~(exists k. a = p * k) -> forall d. (exists x. p = d * x) -> (exists y. a = d * y) -> d = 1Proof 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 (1)
01Fix variables and assumptionsL1–4
02Use earlier factsL5–6
03Establish hsplitL7–9
Establish this local claim before using it. It is not an additional assumption. The following proof commands apply prime coprime or divides.
- L7
have hsplit : Coprime(p,a) ∨ Dvd(p,a)Definitions: Coprime(p,a)Dvd(p,a)Original native command in the exact edition - L8
apply prime_coprime_or_divides - L9
exact hp
04Separate the logical casesL10–10
Follow the explicit conjunction, disjunction, witness, or contradiction step recorded below.
- L10
cases hsplit
05Use earlier factsL11–11
Instantiate or apply named facts and discharge the corresponding proof obligations.
- L11
exact hsplit_left
06Separate the logical casesL12–12
Follow the explicit conjunction, disjunction, witness, or contradiction step recorded below.
- L12
exfalso
Original defined command ledger · 14 lines
- 0001
intro p - 0002
intro a - 0003
intro hp - 0004
intro hnot - 0005
specialize prime_coprime_or_divides p - 0006
specialize prime_coprime_or_divides a - 0007
have hsplit : Coprime(p,a) ∨ Dvd(p,a)Exact native replay line
have hsplit : (forall d. (exists x. p = d * x) -> (exists y. a = d * y) -> d = 1) \/ exists k. a = p * k - 0008
apply prime_coprime_or_divides - 0009
exact hp - 0010
cases hsplit - 0011
exact hsplit_left - 0012
exfalso - 0013
apply hnot - 0014
exact hsplit_right