kernel-Int.even_add_prime
- Kind
- kernel-term
- Status
- checked
Supports: The proposition declared as `Int.even_add'` in the pinned Mathlib v4.30 source.
cargo test -p axeyum-lean-kernel --lib int_prelude:: Evidence notes
`Int.even_add'` in `crates/axeyum-lean-kernel/src/int_prelude/parity.rs` (`declare_even_add_prime`, kernel name `even_add'` via the same apostrophe-suffix convention as `Nat.bitwise_bit'`). Confirmed a DIFFERENT proposition from `F:ml430-int-even-add-3c4536e3` (`Int.even_add`) by reading both Mathlib source files directly (`Mathlib/Algebra/Group/Int/Even.lean` for `even_add`, `Mathlib/Algebra/Ring/Int/Parity.lean` for `even_add'`), per the prior lane's finding. Shares `declare_even_add`'s outer case-split and additive-`emod` machinery (`even_add_family_stmt_and_proof`, `modeq_add`); the only difference is the inner predicate (`Odd` via `odd_fact`/`odd_pred` instead of `Even` via `even_fact`/`even_pred`).