kernel-Int.ne_zero_of_gcd
- Kind
- kernel-term
- Status
- checked
Supports: The proposition declared as `Int.ne_zero_of_gcd` in the pinned Mathlib v4.30 source.
cargo test -p axeyum-lean-kernel --lib int_prelude:: Evidence notes
`declare_ne_zero_of_gcd` (`crates/axeyum-lean-kernel/src/int_prelude/gcd.rs`): `Int.eq_em x 0` case split; the `x != 0` branch is `Or.inl` directly, and the `x = 0` branch builds `y != 0` as a bare lambda -- assuming `y = 0` too, `Int.gcd_zero_right 0` (`gcd 0 0 = natAbs 0`, defeq `0`) transported along both equalities contradicts the hypothesis.