Zulip Chat Archive

Stream: Is there code for X?

Topic: Differentiable from deriv ≠ 0


Yaël Dillies (Nov 02 2021 at 14:25):

I just PRed docs#strict_convex_on_univ_of_deriv2_pos and it strikes me now that hf'' : differentiable ℝ (deriv f) is unneeded because of the junk value value of the derivative being 0. What's the quickest way to get differentiable ℝ (deriv f) from ∀ x, (deriv^[2] f x) < 0?

Yury G. Kudryashov (Nov 02 2021 at 14:42):

You can add (untested)

lemma differentiable_at_of_deriv_ne_zero (h : deriv f x  0) : differentiable_at 𝕜 f x :=
not_imp_comm.1 deriv_zero_of_not_differentiable_at h

Last updated: Dec 20 2023 at 11:08 UTC