kernel-Nat.land_one_one
- Kind
- kernel-term
- Status
- checked
Supports: land(1, 1) = 1
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- land_one_one 2>/dev/null | grep -Ec '^Nat\.land_one_one[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits this theorem through the trusted `Kernel::add_declaration` gate, which re-checks the proof term against the stated type, so producing this row at all is a machine-checked proof. `land 1 1 = landAux 1 1 1`: one fuel step exposes the guard (`n = 0`? no; `m = 0`? no), computes `2 * landAux 0 (1/2) (1/2) + (1%2)*(1%2) = 2*0 + 1 = 1`, entirely by delta+iota -- the proof is `Eq.refl`. `nat_theorem_inventory` exits non-zero for a name that does not exist, and `grep -Ec` consumes the pipe and the count is tested, so the exit status depends on what the run found. Anchored with `^Nat\.land_one_one[[:space:]]` (verified exactly 1 row).