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 expanded first-order arithmetic statement
forall m P w. ~(m=0) -> (forall eut_divisor_eu_cancel_product. (exists eut_left_eu_cancel_product. (P) = eut_divisor_eu_cancel_product * eut_left_eu_cancel_product) -> (exists eut_right_eu_cancel_product. (m) = eut_divisor_eu_cancel_product * eut_right_eu_cancel_product) -> eut_divisor_eu_cancel_product = 1) -> (exists eu_mod_left_cancel_balance eu_mod_right_cancel_balance. (w*P) + (m) * eu_mod_left_cancel_balance = (P) + (m) * eu_mod_right_cancel_balance) -> (exists eu_mod_left_cancel_result eu_mod_right_cancel_result. (w) + (m) * eu_mod_left_cancel_result = (1) + (m) * eu_mod_right_cancel_result)Constructive proof overview
Generated structural guide
Cancel the proved coprime finite product in a balanced congruence, including the valid modulus-one case.
The unchanged tactic script uses 3 declared prerequisites and contains 23 exact native proof lines.
Alpha v34 checked-use · first admitted v31 · independently kernel and Lean verified; not Stable
Proof neighborhood
Direct dependencies
mod_eq_cancel_coprime Stable theorem; checked-use authorized mul_comm Stable theorem; checked-use authorized mul_one 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–6
02Use earlier factsL7–13
03Establish hleftL14–17
Original exact command ledger · 23 lines
- 0001
intro m - 0002
intro P - 0003
intro w - 0004
intro hm - 0005
intro hP - 0006
intro hmod - 0007
specialize mod_eq_cancel_coprime (m) - 0008
specialize mod_eq_cancel_coprime (P) - 0009
specialize mod_eq_cancel_coprime (w) - 0010
specialize mod_eq_cancel_coprime (1) - 0011
apply mod_eq_cancel_coprime - 0012
exact hm - 0013
exact hP - 0014
have hleft : P*w=w*P - 0015
specialize mul_comm (P) - 0016
specialize mul_comm (w) - 0017
apply mul_comm - 0018
have hright : P*1=P - 0019
specialize mul_one (P) - 0020
apply mul_one - 0021
rewrite hleft - 0022
rewrite hright - 0023
exact hmod