Exact expanded PA statement
forall p h. p = 2 * h + 1 -> ((((exists poh_odd_half. h = 2 * poh_odd_half + 1) -> (exists poh_three_modulus. p = 4 * poh_three_modulus + 3)) /\ ((exists poh_three_modulus. p = 4 * poh_three_modulus + 3) -> (exists poh_odd_half. h = 2 * poh_odd_half + 1))))Structural proof guide
Generated structural guide
For a fixed odd decomposition, a modulo-four-three modulus is equivalent to an odd half.
Use the direct prerequisites mul_add, four_mul_eq_double_double, odd_half_of_mod4_three_exact as previously established PA formulas.
The proof proceeds by case analysis (2), equality transport (2), 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 hp - 0004
split - 0005
intro hodd - 0006
cases hodd - 0007
exists x - 0008
rewrite hp - 0009
rewrite hodd_witness - 0010
simp [mul_add] - 0011
congr - 0012
congr - 0013
congr - 0014
symm - 0015
apply four_mul_eq_double_double - 0016
intro hthree - 0017
cases hthree - 0018
exists x - 0019
specialize odd_half_of_mod4_three_exact p - 0020
specialize odd_half_of_mod4_three_exact h - 0021
specialize odd_half_of_mod4_three_exact x - 0022
apply odd_half_of_mod4_three_exact - 0023
exact hp - 0024
exact hthree_witness