Documentation

Analysis.Section_6_3

@[reducible, inline]
noncomputable abbrev Chapter6.Sequence.sup (a : Sequence) :

Definition 6.3.1 (supremum of a sequence)

Equations
Instances For
    @[reducible, inline]
    noncomputable abbrev Chapter6.Sequence.inf (a : Sequence) :

    Definition 6.3.1 (infimum of a sequence)

    Equations
    Instances For
      @[reducible, inline]
      Equations
      Instances For
        @[reducible, inline]
        Equations
        Instances For
          @[reducible, inline]
          Equations
          Instances For
            @[reducible, inline]
            Equations
            Instances For
              theorem Chapter6.Sequence.le_sup {a : Sequence} {n : ℤ} (hn : n ≥ a.m) :
              ↑(a.seq n) ≤ a.sup

              Proposition 6.3.6 (a) (Least upper bound property) / Exercise 6.3.2

              theorem Chapter6.Sequence.sup_le_upper {a : Sequence} {M : EReal} (h : ∀ n ≥ a.m, ↑(a.seq n) ≤ M) :
              a.sup ≤ M

              Proposition 6.3.6 (b) (Least upper bound property) / Exercise 6.3.2

              theorem Chapter6.Sequence.exists_between_lt_sup {a : Sequence} {y : EReal} (h : y < a.sup) :
              ∃ n ≥ a.m, y < ↑(a.seq n) ∧ ↑(a.seq n) ≤ a.sup

              Proposition 6.3.6 (c) (Least upper bound property) / Exercise 6.3.2

              theorem Chapter6.Sequence.ge_inf {a : Sequence} {n : ℤ} (hn : n ≥ a.m) :
              ↑(a.seq n) ≥ a.inf

              Remark 6.3.7 (a)

              theorem Chapter6.Sequence.inf_ge_lower {a : Sequence} {M : EReal} (h : ∀ n ≥ a.m, ↑(a.seq n) ≥ M) :
              a.inf ≥ M

              Remark 6.3.7 (b)

              theorem Chapter6.Sequence.exists_between_gt_inf {a : Sequence} {y : EReal} (h : y > a.inf) :
              ∃ n ≥ a.m, y > ↑(a.seq n) ∧ ↑(a.seq n) ≥ a.inf

              Remark 6.3.7 (c)

              @[reducible, inline]
              Equations
              Instances For
                @[reducible, inline]
                Equations
                Instances For

                  Proposition 6.3.8 (a) / Exercise 6.3.3

                  theorem Chapter6.Sequence.lim_of_monotone {a : Sequence} (hbound : a.BddAbove) (hmono : a.IsMonotone) :
                  ↑(lim a) = a.sup

                  Proposition 6.3.8 (b) / Exercise 6.3.3

                  theorem Chapter6.Sequence.lim_of_antitone {a : Sequence} (hbound : a.BddBelow) (hmono : a.IsAntitone) :
                  ↑(lim a) = a.inf
                  @[reducible, inline]
                  noncomputable abbrev Chapter6.Example_6_3_9 (n : ℕ) :

                  Example 6.3.9 (a)

                  Equations
                  Instances For
                    theorem Chapter6.lim_of_exp {x : ℝ} (hpos : 0 < x) (hbound : x < 1) :
                    (↑fun (n : ℕ) => x ^ n).Convergent ∧ (lim ↑fun (n : ℕ) => x ^ n) = 0

                    Proposition 6.3.1

                    theorem Chapter6.lim_of_exp' {x : ℝ} (hbound : x > 1) :
                    ¬(↑fun (n : ℕ) => x ^ n).Convergent

                    Exercise 6.3.4