Documentation

Mathlib.Data.Real.Basic

Real numbers from Cauchy sequences #

This file defines as the type of equivalence classes of Cauchy sequences of rational numbers. This choice is motivated by how easy it is to prove that is a commutative ring, by simply lifting everything to .

The facts that the real numbers are an Archimedean floor ring, and a conditionally complete linear order, have been deferred to the file Mathlib/Data/Real/Archimedean.lean, in order to keep the imports here simple.

The fact that the real numbers are a (trivial) *-ring has similarly been deferred to Mathlib/Data/Real/Star.lean.

structure Real :

The type of real numbers constructed as equivalence classes of Cauchy sequences of rational numbers.

Instances For

    The type of real numbers constructed as equivalence classes of Cauchy sequences of rational numbers.

    Equations
      Instances For
        @[simp]
        theorem CauSeq.Completion.ofRat_rat {abv : } [IsAbsoluteValue abv] (q : ) :
        ofRat q = q
        theorem Real.ext_cauchy {x y : } :
        x.cauchy = y.cauchyx = y

        The real numbers are isomorphic to the quotient of Cauchy sequences on the rationals.

        Equations
          Instances For
            noncomputable instance Real.instInv :
            Equations
              theorem Real.ofCauchy_zero :
              { cauchy := 0 } = 0
              theorem Real.ofCauchy_one :
              { cauchy := 1 } = 1
              theorem Real.ofCauchy_add (a b : CauSeq.Completion.Cauchy abs) :
              { cauchy := a + b } = { cauchy := a } + { cauchy := b }
              theorem Real.ofCauchy_neg (a : CauSeq.Completion.Cauchy abs) :
              { cauchy := -a } = -{ cauchy := a }
              theorem Real.ofCauchy_sub (a b : CauSeq.Completion.Cauchy abs) :
              { cauchy := a - b } = { cauchy := a } - { cauchy := b }
              theorem Real.ofCauchy_mul (a b : CauSeq.Completion.Cauchy abs) :
              { cauchy := a * b } = { cauchy := a } * { cauchy := b }
              theorem Real.ofCauchy_natCast (n : ) :
              { cauchy := n } = n
              theorem Real.ofCauchy_intCast (z : ) :
              { cauchy := z } = z
              theorem Real.ofCauchy_nnratCast (q : ℚ≥0) :
              { cauchy := q } = q
              theorem Real.ofCauchy_ratCast (q : ) :
              { cauchy := q } = q
              theorem Real.cauchy_natCast (n : ) :
              (↑n).cauchy = n
              theorem Real.cauchy_intCast (z : ) :
              (↑z).cauchy = z
              theorem Real.cauchy_ratCast (q : ) :
              (↑q).cauchy = q

              Extra instances to short-circuit type class resolution.

              These short-circuits have an additional property of ensuring that a computable path is found; if Field is found first, then decaying it to these typeclasses would result in a noncomputable version of them.

              def Real.mk (x : CauSeq abs) :

              Make a real number from a Cauchy sequence of rationals (by taking the equivalence class).

              Equations
                Instances For
                  theorem Real.mk_eq {f g : CauSeq abs} :
                  mk f = mk g f g
                  theorem Real.lt_cauchy {f g : CauSeq abs} :
                  { cauchy := f } < { cauchy := g } f < g
                  @[simp]
                  theorem Real.mk_lt {f g : CauSeq abs} :
                  mk f < mk g f < g
                  theorem Real.mk_add {f g : CauSeq abs} :
                  mk (f + g) = mk f + mk g
                  theorem Real.mk_mul {f g : CauSeq abs} :
                  mk (f * g) = mk f * mk g
                  @[simp]
                  theorem Real.mk_pos {f : CauSeq abs} :
                  0 < mk f f.Pos
                  @[simp]
                  theorem Real.mk_le {f g : CauSeq abs} :
                  mk f mk g f g
                  theorem Real.ind_mk {C : Prop} (x : ) (h : ∀ (y : CauSeq abs), C (mk y)) :
                  C x
                  theorem Real.ratCast_lt {x y : } :
                  x < y x < y
                  @[deprecated add_lt_add_iff_left (since := "2025-09-15")]
                  theorem Real.add_lt_add_iff_left {α : Type u_1} [Add α] [LT α] [AddLeftStrictMono α] [AddLeftReflectLT α] (a : α) {b c : α} :
                  a + b < a + c b < c

                  Alias of add_lt_add_iff_left.

                  theorem Real.ofCauchy_sup (a b : CauSeq abs) :
                  { cauchy := ab } = max { cauchy := a } { cauchy := b }
                  @[simp]
                  theorem Real.mk_sup (a b : CauSeq abs) :
                  mk (ab) = max (mk a) (mk b)
                  theorem Real.ofCauchy_inf (a b : CauSeq abs) :
                  { cauchy := ab } = min { cauchy := a } { cauchy := b }
                  @[simp]
                  theorem Real.mk_inf (a b : CauSeq abs) :
                  mk (ab) = min (mk a) (mk b)
                  instance Real.leTotal_R :
                  Std.Total fun (x1 x2 : ) => x1 x2
                  noncomputable instance Real.linearOrder :
                  Equations
                    noncomputable instance Real.instDivInvMonoid :
                    Equations
                      theorem Real.ofCauchy_div (f g : CauSeq.Completion.Cauchy abs) :
                      { cauchy := f / g } = { cauchy := f } / { cauchy := g }
                      noncomputable instance Real.instField :
                      Equations
                        noncomputable instance Real.instDivisionRing :
                        Equations
                          noncomputable instance Real.decidableLT (a b : ) :
                          Decidable (a < b)
                          Equations
                            noncomputable instance Real.decidableLE (a b : ) :
                            Equations
                              noncomputable instance Real.decidableEq (a b : ) :
                              Decidable (a = b)
                              Equations
                                unsafe instance Real.instRepr :

                                Show an underlying Cauchy sequence for real numbers.

                                The representative chosen is the one passed in the VM to Quot.mk, so two Cauchy sequences converging to the same number may be printed differently.

                                Equations
                                  theorem Real.le_mk_of_forall_le {x : } {f : CauSeq abs} :
                                  (∃ (i : ), ji, x (f j))x mk f
                                  theorem Real.mk_le_of_forall_le {f : CauSeq abs} {x : } (h : ∃ (i : ), ji, (f j) x) :
                                  mk f x
                                  theorem Real.mk_near_of_forall_near {f : CauSeq abs} {x ε : } (H : ∃ (i : ), ji, |(f j) - x| ε) :
                                  |mk f - x| ε
                                  theorem Real.mul_add_one_le_add_one_pow {a : } (ha : 0 a) (b : ) :
                                  a * b + 1 (a + 1) ^ b
                                  def IsPowMul {R : Type u_1} [Pow R ] (f : R) :

                                  A function f : R → ℝ is power-multiplicative if for all r ∈ R and all positive n ∈ ℕ, f (r ^ n) = (f r) ^ n.

                                  Equations
                                    Instances For
                                      theorem IsPowMul.map_one_le_one {R : Type u_1} [Monoid R] {f : R} (hf : IsPowMul f) :
                                      f 1 1
                                      def RingHom.IsBoundedWrt {α : Type u_1} [Ring α] {β : Type u_2} [Ring β] ( : α) ( : β) (f : α →+* β) :

                                      A ring homomorphism f : α →+* β is bounded with respect to the functions nα : α → ℝ and nβ : β → ℝ if there exists a positive constant C such that for all x in α, nβ (f x) ≤ C * nα x.

                                      Equations
                                        Instances For