kernel-Nat.land_div_two
- Kind
- kernel-term
- Status
- checked
Supports: ∀ {a b : ℕ}, (a &&& b) / 2 = a / 2 &&& b / 2
test "$(cargo run -q --release -p axeyum-lean-kernel --example nat_theorem_inventory -- land_div_two 2>/dev/null | grep -Ec '^Nat\.land_div_two[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits `Nat.land_div_two` (`nat_prelude/land_div_two.rs`) through the trusted `Kernel::add_declaration` gate. `nat_theorem_inventory`'s rendered type is `(x0 x1 : AxNat) -> Eq (div (land x0 x1) 2) (land (div x0 2) (div x1 2))`, matching this fact's `formal.statement` up to variable naming. Anchored with `^Nat\.land_div_two[[:space:]]`; `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_div_two` theorem is honest under the mirror-flip criterion in CLAUDE.md.