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