reconciliation-Nat.even_xor
- Kind
- kernel-term
- Status
- checked
Supports: ∀ {m n : ℕ}, Even (m ^^^ n) ↔ (Even m ↔ Even n)
Evidence notes
Registers an independently constructed native theorem (`F:nat-even-xor`, `Nat.even_xor` in `nat_prelude/xor_parity.rs`) whose proposition definitionally matches this proof-free imported goal -- Mathlib's `Nat.xor` is `Nat.bitwise xor`, and our `Nat.xor` is DEFINED the same way (`nat_prelude/xor.rs`: `Nat.xor := Nat.bitwise xor_fn`), so this closes the SAME function's parity characterization, not a lookalike about a different definition (the criterion this repository uses to decide when flipping an `ml430` mirror is honest: Mathlib's `def` is the same function, not merely a theorem about a different one). No Autogenesis operation produced the theorem; the route taken (a fresh parity <-> `mod _ 2` bridge plus one step of `bitwiseAux`'s recursor) is NOT necessarily Mathlib's own proof route.