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 p r n. ((~(p = 1) /\ forall frm_prime_left_ftsp_p frm_prime_right_ftsp_p. p = frm_prime_left_ftsp_p * frm_prime_right_ftsp_p -> frm_prime_left_ftsp_p = 1 \/ frm_prime_right_ftsp_p = 1)) -> n = r * p -> (exists ftcn_factor_ftsp_square. (n) = (p * p) * ftcn_factor_ftsp_square) -> (exists ftcn_factor_ftsp_suffix. (r) = (p) * ftcn_factor_ftsp_suffix)Constructive proof overview
Generated structural guide
If a prime square divides a product with one terminal prime factor, that same prime divides the remaining prefix product.
The unchanged tactic script uses 4 declared prerequisites and contains 29 exact native proof lines.
dependency-curried kernel-checked theorem body; Alpha enrollment and checked-use authority follow separately sealed release evidence; Stable membership remains unchanged
Proof neighborhood
Direct dependencies
prime_nonzero Stable theorem; checked-use authorized mul_left_cancel_nonzero Stable theorem; checked-use authorized mul_comm Stable theorem; checked-use authorized mul_assoc 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 dependency-curried candidate body does not grant checked theorem use or 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
02Separate the logical casesL7–7
Follow the explicit conjunction, disjunction, witness, or contradiction step recorded below.
- L7
cases hsquare
03Establish hpnonzeroL8–13
04Establish hbalanceL14–22
05Construct an explicit witnessL23–23
Supply the displayed value, then prove that it has the required property.
- L23
exists x
Original exact command ledger · 29 lines
- 0001
intro p - 0002
intro r - 0003
intro n - 0004
intro hprime - 0005
intro hproduct - 0006
intro hsquare - 0007
cases hsquare - 0008
have hpnonzero : ~(p = 0) - 0009
specialize prime_nonzero p - 0010
intro hpzero - 0011
apply prime_nonzero - 0012
exact hprime - 0013
exact hpzero - 0014
have hbalance : p * r = p * (p * x) - 0015
trans r * p - 0016
apply mul_comm - 0017
trans n - 0018
symm - 0019
exact hproduct - 0020
trans (p * p) * x - 0021
exact hsquare_witness - 0022
apply mul_assoc - 0023
exists x - 0024
specialize mul_left_cancel_nonzero p - 0025
specialize mul_left_cancel_nonzero r - 0026
specialize mul_left_cancel_nonzero (p * x) - 0027
apply mul_left_cancel_nonzero - 0028
exact hpnonzero - 0029
exact hbalance