@[reducible, inline]
Definition 7.2.2 (Convergence of series)
Equations
- s.partial N = ∑ n ∈ Finset.Icc s.m N, s.seq n
Instances For
@[reducible, inline]
Equations
- s.convergesTo L = Filter.Tendsto s.partial Filter.atTop (nhds L)
Instances For
Remark 7.2.3
theorem
Chapter7.Series.convergesTo_uniq
{s : Series}
{L L' : ℝ}
(h : s.convergesTo L)
(h' : s.convergesTo L')
:
@[reducible, inline]
Example 7.2.4
Equations
Instances For
@[reducible, inline]
Equations
- Chapter7.Series.example_7_2_4' = Chapter7.Series.mk' fun (n : { n : ℤ // n ≥ 1 }) => 2 ^ ↑n
Instances For
theorem
Chapter7.Series.decay_of_converges
{s : Series}
(h : s.converges)
:
Filter.Tendsto s.seq Filter.atTop (nhds 0)
Corollary 7.2.6 (Zero test) / Exercise 7.2.3
theorem
Chapter7.Series.diverges_of_nodecay
{s : Series}
(h : ¬Filter.Tendsto s.seq Filter.atTop (nhds 0))
:
s.diverges
Proposition 7.2.9 (Absolute convergence test) / Exercise 7.2.4
@[reducible, inline]
Example 7.2.13
Equations
Instances For
theorem
Chapter7.Series.convergesTo.add
{s t : Series}
{L M : ℝ}
(hs : s.convergesTo L)
(ht : t.convergesTo M)
:
(s + t).convergesTo (L + M)
Proposition 7.2.14 (a) (Series laws) / Exercise 7.2.5. The convergesTo form can be more convenient for applications.
theorem
Chapter7.Series.convergesTo.smul
{s : Series}
{L c : ℝ}
(hs : s.convergesTo L)
:
(c • s).convergesTo (c * L)
Proposition 7.2.14 (b) (Series laws) / Exercise 7.2.5. The convergesTo form can be more convenient for applications.
@[implicit_reducible]
The corresponding API for subtraction was not in the textbook, but is useful in later sections, so is included here.
theorem
Chapter7.Series.convergesTo.sub
{s t : Series}
{L M : ℝ}
(hs : s.convergesTo L)
(ht : t.convergesTo M)
:
(s - t).convergesTo (L - M)
Lemma 7.2.15 (telescoping series) / Exercise 7.2.6