kernel-Nat.choose_symm_add
- Kind
- kernel-term
- Status
- checked
Supports: ∀ {a b : ℕ}, (a + b).choose a = (a + b).choose b
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- choose_symm_add 2>/dev/null | grep -Ec '^Nat\.choose_symm_add[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits `Nat.choose_symm_add` 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 the `grep -c` count (tested `-ge 1`, not piped into `grep -q`) requires the admitted declaration to actually be printed. A two-line corollary of `choose_symm_of_eq_add` instantiated at `n := a+b`, whose hypothesis `n = a+b` is closed by `refl`.