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
Instances For
    def lowerBounds {α : Type u_1} [LE α] (s : Set α) :
    Set α

    The set of lower bounds of a set.

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

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

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

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

        Equations
        Instances For
          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
          Instances For
            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
            Instances For
              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
              Instances For
                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
                Instances For