Collection of convex functions #
In this file we prove that certain specific functions are strictly convex, including the following:
Even.strictConvexOn_pow
: For an evenn : ℕ
with2 ≤ n
,fun x => x ^ n
is strictly convex.strictConvexOn_pow
: Forn : ℕ
, with2 ≤ n
,fun x => x ^ n
is strictly convex on .strictConvexOn_zpow
: Form : ℤ
withm ≠ 0, 1
,fun x => x ^ m
is strictly convex on .strictConcaveOn_sin_Icc
:sin
is strictly concave onstrictConcaveOn_cos_Icc
:cos
is strictly concave on
TODO #
These convexity lemmas are proved by checking the sign of the second derivative. If desired, most
of these could also be switched to elementary proofs, like in
Analysis.Convex.SpecificFunctions.Basic
.