Exact expanded PA statement
forall r p. ~(r = 0) -> (exists bpvl_gap_factor_two. bpvl_gap_factor_two + (2) = (p)) -> (exists bpvl_gap_factor_result. bpvl_gap_factor_result + (S r) = (r * p))Structural proof guide
Multiplying a nonzero natural by a factor at least two exceeds it.
Direct prerequisites: mul_lt_mul_succ_left_nonzero, mul_le_mul_left, mul_one, le_trans. The authored body proceeds by intermediate claims (2), equality transport (1).
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 r - 0002
intro p - 0003
intro hr - 0004
intro hp - 0005
have hstep : exists k. k + S (r * 1) = r * 2 - 0006
specialize mul_lt_mul_succ_left_nonzero r - 0007
specialize mul_lt_mul_succ_left_nonzero 1 - 0008
apply mul_lt_mul_succ_left_nonzero - 0009
exact hr - 0010
specialize mul_one r - 0011
rewrite mul_one at hstep - 0012
have hscaled : exists k. k + r * 2 = r * p - 0013
specialize mul_le_mul_left 2 - 0014
specialize mul_le_mul_left p - 0015
specialize mul_le_mul_left r - 0016
apply mul_le_mul_left - 0017
exact hp - 0018
specialize le_trans (S r) - 0019
specialize le_trans (r * 2) - 0020
specialize le_trans (r * p) - 0021
apply le_trans - 0022
exact hstep - 0023
exact hscaled