Exact expanded PA statement
forall c a b q r. (exists u. a = c * u) -> (exists v. b = c * v) -> a = b * q + r -> exists w. r = c * wStructural proof guide
Generated structural guide
A common divisor of a dividend and divisor also divides the remainder.
Use the direct prerequisites mul_assoc, factor_difference as previously established PA formulas.
The proof proceeds by case analysis (2), equality transport (1).
Referenced ingredients
Proof neighborhood
Direct dependencies
Direct dependents
Formal native tactic body
Dependencies are introduced as named hypotheses before line 1. Linked names are exact direct references. This Stable checked-use theorem is independently kernel-checked when replayed.
- 0001
intro c - 0002
intro a - 0003
intro b - 0004
intro q - 0005
intro r - 0006
intro ha - 0007
intro hb - 0008
intro h - 0009
cases ha - 0010
cases hb - 0011
specialize factor_difference c - 0012
specialize factor_difference x - 0013
specialize factor_difference (x1 * q) - 0014
specialize factor_difference r - 0015
apply factor_difference - 0016
trans a - 0017
symm - 0018
exact ha_witness - 0019
trans b * q + r - 0020
exact h - 0021
congr - 0022
rewrite hb_witness - 0023
apply mul_assoc - 0024
refl