kernel-Nat.dist_add_add_right
- Kind
- kernel-term
- Status
- checked
Supports: ∀ (n k m : ℕ), (n + k).dist (m + k) = n.dist m
test "$(cargo run -q --release -p axeyum-lean-kernel --example nat_theorem_inventory -- dist_add_add_right 2>/dev/null | grep -Ec '^Nat\.dist_add_add_right[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits `Nat.dist_add_add_right` through the trusted `Kernel::add_declaration` gate (`nat_prelude/dist.rs`, `declare_dist_more_all`, lane draw9-first-theorems). `nat_theorem_inventory`'s rendered type matches this fact's `formal.statement`. Anchored with `^Nat\.dist_add_add_right[[: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).