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 a b g. ~(a = 0) -> ((((exists ec_gcd_left_gfull_nonzero. a = g * ec_gcd_left_gfull_nonzero) /\ (exists ec_gcd_right_gfull_nonzero. b = g * ec_gcd_right_gfull_nonzero)) /\ forall ec_gcd_common_gfull_nonzero. (exists ec_gcd_common_left_gfull_nonzero. a = ec_gcd_common_gfull_nonzero * ec_gcd_common_left_gfull_nonzero) -> (exists ec_gcd_common_right_gfull_nonzero. b = ec_gcd_common_gfull_nonzero * ec_gcd_common_right_gfull_nonzero) -> exists ec_gcd_greatest_gfull_nonzero. g = ec_gcd_common_gfull_nonzero * ec_gcd_greatest_gfull_nonzero)) -> ~(g = 0)Constructive proof overview
Generated structural guide
A gcd of a nonzero left input is nonzero, without restricting the right input.
The unchanged tactic script uses 2 declared prerequisites and contains 20 exact native proof lines.
Alpha v34 checked-use · first admitted v27 · independently kernel and Lean verified; not Stable
Proof neighborhood
Direct dependencies
is_gcd_dvd_left Stable theorem; checked-use authorized factor_nonzero_left Stable theorem; checked-use authorizedDirect 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
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
02Establish hdivL6–11
03Separate the logical casesL12–12
Follow the explicit conjunction, disjunction, witness, or contradiction step recorded below.
- L12
cases hdiv
04Fix variables and assumptionsL13–13
Work with arbitrary variables or the premises of the current implication.
- L13
intro hz
Original exact command ledger · 20 lines
- 0001
intro a - 0002
intro b - 0003
intro g - 0004
intro ha - 0005
intro hg - 0006
have hdiv : exists q. a = g * q - 0007
specialize is_gcd_dvd_left g - 0008
specialize is_gcd_dvd_left a - 0009
specialize is_gcd_dvd_left b - 0010
apply is_gcd_dvd_left - 0011
exact hg - 0012
cases hdiv - 0013
intro hz - 0014
specialize factor_nonzero_left a - 0015
specialize factor_nonzero_left g - 0016
specialize factor_nonzero_left x - 0017
apply factor_nonzero_left - 0018
exact ha - 0019
exact hdiv_witness - 0020
exact hz