kernel-Nat.dist_add_add_left
- Kind
- kernel-term
- Status
- checked
Supports: ∀ (k n m : ℕ), (k + n).dist (k + m) = n.dist m
test "$(cargo run -q --release -p axeyum-lean-kernel --example nat_theorem_inventory -- dist_add_add_left 2>/dev/null | grep -Ec '^Nat\.dist_add_add_left[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits `Nat.dist_add_add_left` 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_left[[: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).