kernel-Nat.land_one_is_mod
- Kind
- kernel-term
- Status
- checked
Supports: ∀ (x : ℕ), x &&& 1 = x % 2
test "$(cargo run -q --release -p axeyum-lean-kernel --example nat_theorem_inventory -- land_one_is_mod 2>/dev/null | grep -Ec '^Nat\.land_one_is_mod[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits `Nat.land_one_is_mod` (`nat_prelude/land_low_bit.rs`) through the trusted `Kernel::add_declaration` gate. `nat_theorem_inventory`'s rendered type is `(x0 : AxNat) -> Eq AxNat (AxNat.land x0 (succ zero)) (AxNat.mod x0 (succ (succ zero)))`, matching this fact's `formal.statement` up to variable naming and numeral rendering. Anchored with `^Nat\.land_one_is_mod[[:space:]]` so a sibling name cannot satisfy this row; `grep -Ec` consumes the pipe so the tested count decides the exit status. Run `--release` -- the debug build of this inventory example SIGABRTs on stack depth (unrelated to this proof). Mathlib's `&&&` for `Nat` is the SAME function as `Nat.land`, so reconciling this mirror against a NEW `Nat.land_one_is_mod` theorem is honest under the mirror-flip criterion in CLAUDE.md.