kernel-Nat.dvd_lcm_left
- Kind
- kernel-term
- Status
- checked
Supports: ∀ (m n : ℕ), m ∣ m.lcm n
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- dvd_lcm_left 2>/dev/null | grep -Ec '^Nat\.dvd_lcm_left[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits `Nat.dvd_lcm_left` through the trusted `Kernel::add_declaration` gate (declared in `nat_prelude/lcm.rs`'s `declare_dvd_lcm_left`, landed before this session). Route: induction on the first argument; at `succ k`, `lcm a b = (a/gcd)*(gcd*b/gcd)`-style cancellation shows `a` divides the quotient. `nat_theorem_inventory`'s rendered type for `Nat.dvd_lcm_left` is `((x0 : AxNat) -> ((x1 : AxNat) -> AxNat.dvd x0 (AxNat.lcm x0 x1)))`, matching this fact's `formal.statement` verbatim (`x0`/`x1`/`x2` are the universally quantified variables in order). `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.