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. ∀ q. Prime(p) → Prime(q) → ¬p = q → Coprime(p,q)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
1 occurrences
Exact expanded native-PA statement
forall p q. (~(p = 1) /\ forall c e. p = c * e -> c = 1 \/ e = 1) -> (~(q = 1) /\ forall c e. q = c * e -> c = 1 \/ e = 1) -> ~(p = q) -> forall d. (exists x. p = d * x) -> (exists y. q = 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 (2)
01Fix variables and assumptionsL1–5
02Establish hnotL6–9
03Establish hfactorL10–13
04Separate the logical casesL14–15
05Use earlier factsL16–18
06Calculate and transport equalitiesL19–19
Carry out the recorded arithmetic or equality steps; inspect the exact commands for their direction and premises.
- L19
symm
Original defined command ledger · 25 lines
- 0001
intro p - 0002
intro q - 0003
intro hp - 0004
intro hq - 0005
intro hpq - 0006
have hnot : ¬Dvd(p,q)Exact native replay line
have hnot : ~(exists k. q = p * k) - 0007
intro hdiv - 0008
specialize prime_divisor_eq_one_or_self q - 0009
specialize prime_divisor_eq_one_or_self p - 0010
have hfactor : p = 1 \/ q = p - 0011
apply prime_divisor_eq_one_or_self - 0012
exact hq - 0013
exact hdiv - 0014
cases hfactor - 0015
cases hp - 0016
apply hp_left - 0017
exact hfactor_left - 0018
apply hpq - 0019
symm - 0020
exact hfactor_right - 0021
specialize prime_not_divides_coprime p - 0022
specialize prime_not_divides_coprime q - 0023
apply prime_not_divides_coprime - 0024
exact hp - 0025
exact hnot