The real numbers are an Archimedean floor ring, and a conditionally complete linear order. #
Equations
Equations
- Real.instSupSet = { sSup := fun (s : Set ℝ) => if h : s.Nonempty ∧ BddAbove s then Classical.choose ⋯ else 0 }
theorem
Real.sSup_def
(s : Set ℝ)
:
sSup s = if h : s.Nonempty ∧ BddAbove s then Classical.choose ⋯ else 0
@[deprecated isGLB_sInf]
Alias of isGLB_sInf
.
Equations
- One or more equations did not get rendered due to their size.
theorem
Real.iSup_le
{ι : Sort u_1}
{f : ι → ℝ}
{a : ℝ}
(hf : ∀ (i : ι), f i ≤ a)
(ha : 0 ≤ a)
:
⨆ (i : ι), f i ≤ a
As ⨆ i, f i = 0
when the domain of the real-valued function f
is empty, it suffices to show
that all values of f
are at most some nonnegative number a
to show that ⨆ i, f i ≤ a
.
See also ciSup_le
.
theorem
Real.le_iInf
{ι : Sort u_1}
{f : ι → ℝ}
{a : ℝ}
(hf : ∀ (i : ι), a ≤ f i)
(ha : a ≤ 0)
:
a ≤ ⨅ (i : ι), f i
As ⨅ i, f i = 0
when the domain of the real-valued function f
is empty, it suffices to show
that all values of f
are at least some nonpositive number a
to show that a ≤ ⨅ i, f i
.
See also le_ciInf
.