Exact expanded PA statement
forall p h a. p = 2 * h + 1 -> p = 4 * a + 3 -> h = 2 * a + 1Structural proof guide
Generated structural guide
The half of a fixed odd number congruent to three modulo four is exactly odd.
Use the direct prerequisites mul_add, four_mul_eq_double_double, odd_half_unique as previously established PA formulas.
The proof proceeds by intermediate claims (1), certified simplification (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 Alpha-v16 checked-use theorem is independently kernel-checked when replayed; it is not a Stable theorem.
- 0001
intro p - 0002
intro h - 0003
intro a - 0004
intro hp - 0005
intro hfour - 0006
have hcanonical : p = 2 * (2 * a + 1) + 1 - 0007
trans 4 * a + 3 - 0008
exact hfour - 0009
simp [mul_add] - 0010
congr - 0011
congr - 0012
congr - 0013
apply four_mul_eq_double_double - 0014
specialize odd_half_unique p - 0015
specialize odd_half_unique h - 0016
specialize odd_half_unique (2 * a + 1) - 0017
apply odd_half_unique - 0018
exact hp - 0019
exact hcanonical