Exact expanded PA statement
forall n c d. ~(n = 0) -> n = c * d -> ~(d = 1) -> exists k. k + S c = nStructural proof guide
A factor with a nonunit cofactor is strictly smaller than a nonzero product.
Direct prerequisites: divisor_le_nonzero, le_eq_or_lt, mul_left_cancel_nonzero, mul_one. The authored body proceeds by case analysis (1), intermediate claims (3).
Proof neighborhood
Direct dependencies
Direct dependents
Formal native tactic body
Dependencies are hypotheses of this body receipt. The focused endpoint audits separately check the complete empty-context certificates.
- 0001
intro n - 0002
intro c - 0003
intro d - 0004
intro hn - 0005
intro hfactor - 0006
intro hd - 0007
have hle : exists k. k + c = n - 0008
specialize divisor_le_nonzero c - 0009
specialize divisor_le_nonzero n - 0010
apply divisor_le_nonzero - 0011
exact hn - 0012
exists d - 0013
exact hfactor - 0014
have hcases : c = n \/ exists k. k + S c = n - 0015
specialize le_eq_or_lt c - 0016
specialize le_eq_or_lt n - 0017
apply le_eq_or_lt - 0018
exact hle - 0019
cases hcases - 0020
exfalso - 0021
apply hd - 0022
have hc : ~(c = 0) - 0023
intro hc0 - 0024
apply hn - 0025
trans c - 0026
symm - 0027
exact hcases_left - 0028
exact hc0 - 0029
specialize mul_left_cancel_nonzero c - 0030
specialize mul_left_cancel_nonzero d - 0031
specialize mul_left_cancel_nonzero 1 - 0032
apply mul_left_cancel_nonzero - 0033
exact hc - 0034
trans n - 0035
symm - 0036
exact hfactor - 0037
trans c - 0038
symm - 0039
exact hcases_left - 0040
symm - 0041
specialize mul_one c - 0042
exact mul_one - 0043
exact hcases_right