Documentation

Mathlib.Order.Bounds.Defs

Definitions about upper/lower bounds #

In this file we define:

def upperBounds {α : Type u_1} [LE α] (s : Set α) :
Set α

The set of upper bounds of a set.

Equations
def lowerBounds {α : Type u_1} [LE α] (s : Set α) :
Set α

The set of lower bounds of a set.

Equations
def BddAbove {α : Type u_1} [LE α] (s : Set α) :

A set is bounded above if there exists an upper bound.

Equations
def BddBelow {α : Type u_1} [LE α] (s : Set α) :

A set is bounded below if there exists a lower bound.

Equations
def IsLeast {α : Type u_1} [LE α] (s : Set α) (a : α) :

a is a least element of a set s; for a partial order, it is unique if exists.

Equations
def IsGreatest {α : Type u_1} [LE α] (s : Set α) (a : α) :

a is a greatest element of a set s; for a partial order, it is unique if exists.

Equations
def IsLUB {α : Type u_1} [LE α] (s : Set α) :
αProp

a is a least upper bound of a set s; for a partial order, it is unique if exists.

Equations
def IsGLB {α : Type u_1} [LE α] (s : Set α) :
αProp

a is a greatest lower bound of a set s; for a partial order, it is unique if exists.

Equations
def IsCofinal {α : Type u_1} [LE α] (s : Set α) :

A set is cofinal when for every x : α there exists y ∈ s with x ≤ y.

Equations