Zulip Chat Archive
Stream: general
Topic: how to prove this by calculating derivatives?
Zihao Zhang (Apr 02 2025 at 11:07):
how to prove this by calculating derivatives?
import Mathlib
example : (fun x : ℝ => Real.exp x) >= (fun x => x+1) := by
Edward van de Meent (Apr 02 2025 at 11:25):
@loogle "fderiv", "mono"
loogle (Apr 02 2025 at 11:25):
:search: HasFDerivWithinAt.mono, HasFDerivAtFilter.mono, and 13 more
Edward van de Meent (Apr 02 2025 at 11:27):
i was slightly off with my loogle... you will find a relevant theorem around docs#strictMonoOn_of_hasDerivWithinAt_pos
Edward van de Meent (Apr 02 2025 at 11:29):
TIL the difference between docs#deriv and docs#fderiv
Last updated: May 02 2025 at 03:31 UTC