Exact expanded PA statement
forall n h. n = h + h -> ~(n = 1)Structural proof guide
Generated structural guide
A doubled predecessor cannot equal one.
Use the direct prerequisites even_odd_exclusive_pointwise, mul_comm, zero_add as previously established PA formulas.
The proof proceeds by intermediate claims (2), equality transport (1), certified simplification (1), closed numeral normalization (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 n - 0002
intro h - 0003
intro heven - 0004
intro hone - 0005
have heven_two : n = 2 * h - 0006
trans h + h - 0007
exact heven - 0008
trans h * 2 - 0009
simp [zero_add] - 0010
specialize mul_comm h - 0011
specialize mul_comm 2 - 0012
apply mul_comm - 0013
have hone_odd : n = 2 * 0 + 1 - 0014
rewrite hone - 0015
norm_num - 0016
specialize even_odd_exclusive_pointwise n - 0017
specialize even_odd_exclusive_pointwise h - 0018
specialize even_odd_exclusive_pointwise 0 - 0019
apply even_odd_exclusive_pointwise - 0020
exact heven_two - 0021
exact hone_odd