kernel-Nat.log_anti_left
- Kind
- kernel-term
- Status
- checked
Supports: ∀ {b c n : ℕ}, 1 < c → c ≤ b → Nat.log b n ≤ Nat.log c n
test "$(cargo run -q -p axeyum-lean-kernel --example nat_theorem_inventory -- log_anti_left 2>/dev/null | grep -Ec '^Nat\.log_anti_left[[:space:]]')" -ge 1 Evidence notes
`build_nat_prelude` admits `Nat.log_anti_left` through the trusted `Kernel::add_declaration` gate (declared in `nat_prelude/log_clog_mirrors.rs`'s `declare_log_anti_left`). Route: `Nat.log_antitone_left` (`nat_prelude/log_clog_order.rs`) already proves the same conclusion but takes `1 < b` as an EXPLICIT third hypothesis (that file's diagonal `AntitoneOn`-unfold framing states it pointwise rather than deriving it); Mathlib's `log_anti_left` needs only `1 < c` and `c ≤ b`. `1 < b` follows from those two via `Nat.lt_of_lt_of_le`, so this fact's proof is a one-line wrapper: derive `1 < b`, then re-dispatch to `log_antitone_left`. `nat_theorem_inventory`'s rendered type for `Nat.log_anti_left` is `(x0:AxNat)->(x1:AxNat)->(x2:AxNat)->(x3:Lt (succ zero) x1)->(x4:Le x1 x2)->Le (log x2 x0) (log 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 (`log_anti_leftxxxxx`) that this same pipeline reports `0`.