Exact expanded PA statement
forall n. (exists a. S n = 2 * a + 1) -> exists b. n = 2 * bStructural proof guide
Generated structural guide
If a successor is odd, its predecessor is even.
Use the direct prerequisites parity_cases, successor_even_of_odd, odd_not_even as previously established PA formulas.
The proof proceeds by case analysis (2), intermediate claims (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 n - 0002
intro hso - 0003
specialize parity_cases n - 0004
cases parity_cases - 0005
cases parity_cases_witness - 0006
exists x - 0007
exact parity_cases_witness_left - 0008
exfalso - 0009
have hse : exists b. S n = 2 * b - 0010
specialize successor_even_of_odd n - 0011
apply successor_even_of_odd - 0012
exists x - 0013
exact parity_cases_witness_right - 0014
specialize odd_not_even (S n) - 0015
apply odd_not_even - 0016
exact hso - 0017
exact hse