AchievesAbsMin f S c states that f achieves its absolute minimum on S at the point c,
i.e. c ∈ S and f c ≤ f x for every x ∈ S.
Instances For
AchievesAbsMax f S d states that f achieves its absolute maximum on S at the point d,
i.e. d ∈ S and f x ≤ f d for every x ∈ S.
Instances For
IsBoundedOn f S states that f is bounded on S: there exists a nonnegative real
number B such that |f x| ≤ B for every x ∈ S.
Instances For
theorem
ContinuousFunctions.continuous_on_Icc_bounded
(f : ℝ → ℝ)
(a b : ℝ)
(_hab : a ≤ b)
(hf : ContinuousOn f (Set.Icc a b))
:
A real-valued function that is continuous on a closed bounded interval [a, b] is bounded:
there exists B ∈ ℝ such that |f x| ≤ B for all x ∈ [a, b].
theorem
ContinuousFunctions.extreme_value_theorem
(f : ℝ → ℝ)
(a b : ℝ)
(hab : a < b)
(hf : ContinuousOn f (Set.Icc a b))
:
Extreme Value (Min-Max) Theorem: a continuous function on a closed bounded interval [a, b]
attains both an absolute minimum at some point c ∈ [a, b] and an absolute maximum at some
point d ∈ [a, b].