Exact expanded PA statement
forall p h. p = 2 * h + 1 -> ((((exists poh_even_half. h = 2 * poh_even_half) -> (exists poh_one_modulus. p = 4 * poh_one_modulus + 1)) /\ ((exists poh_one_modulus. p = 4 * poh_one_modulus + 1) -> (exists poh_even_half. h = 2 * poh_even_half))))Structural proof guide
Generated structural guide
For a fixed odd decomposition, a modulo-four-one modulus is equivalent to an even half.
Use the direct prerequisites four_mul_eq_double_double, odd_half_of_mod4_one_exact as previously established PA formulas.
The proof proceeds by case analysis (2), equality transport (2).
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 hp - 0004
split - 0005
intro heven - 0006
cases heven - 0007
exists x - 0008
rewrite hp - 0009
rewrite heven_witness - 0010
congr - 0011
symm - 0012
apply four_mul_eq_double_double - 0013
refl - 0014
intro hone - 0015
cases hone - 0016
exists x - 0017
specialize odd_half_of_mod4_one_exact p - 0018
specialize odd_half_of_mod4_one_exact h - 0019
specialize odd_half_of_mod4_one_exact x - 0020
apply odd_half_of_mod4_one_exact - 0021
exact hp - 0022
exact hone_witness