kernel-Nat.land_aux_eq_land_of_le
- Kind
- kernel-term
- Status
- checked
Supports: for every fuel, m, n with m <= fuel, landAux fuel m n = land m n
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- land_aux_eq_land_of_le 2>/dev/null | grep -Ec '^Nat\.land_aux_eq_land_of_le[[: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. `nat_theorem_inventory` exits non-zero for a name that does not exist, and `grep -Ec` consumes the pipe and the tested count is what decides the exit status. Anchored with `^Nat\.land_aux_eq_land_of_le[[:space:]]` so a future `_of_le_` sibling cannot satisfy this row.