kernel-Nat.clog_anti_left
- Kind
- kernel-term
- Status
- checked
Supports: ∀ {b c n : ℕ}, 1 < c → c ≤ b → Nat.clog b n ≤ Nat.clog c n
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- clog_anti_left 2>/dev/null | grep -Ec '^Nat\.clog_anti_left[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits `Nat.clog_anti_left` through the trusted `Kernel::add_declaration` gate (declared in `nat_prelude/log_clog_mirrors.rs`'s `declare_clog_anti_left`). Route: exactly `Nat.log_anti_left`'s wrapper (see that fact's evidence), over `Nat.clog_antitone_left` instead of `Nat.log_antitone_left` -- derive `1 < b` from `1 < c` and `c ≤ b` via `Nat.lt_of_lt_of_le`, then re-dispatch. `nat_theorem_inventory`'s rendered type for `Nat.clog_anti_left` is `(x0:AxNat)->(x1:AxNat)->(x2:AxNat)->(x3:Lt (succ zero) x1)->(x4:Le x1 x2)->Le (clog x2 x0) (clog x1 x0)`, matching this fact's `formal.statement` verbatim (`x0`=n, `x1`=c, `x2`=b). `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; verified against a deliberately misspelled name (`clog_anti_leftxxxxx`) that this same pipeline reports `0`.