Analysis I, Section 7.2: Infinite series #
I have attempted to make the translation as faithful a paraphrasing as possible of the original text. When there is a choice between a more idiomatic Lean solution and a more faithful translation, I have generally chosen the latter. In particular, there will be places where the Lean code could be "golfed" to be more elegant and idiomatic, but I have consciously avoided doing so.
Main constructions and results of this section:
- Formal series and their limits.
- Absolute convergence; basic series laws.
Definition 7.2.2 (Convergence of series)
Equations
- s.partial N = ∑ n ∈ Finset.Icc s.m N, s.seq n
Instances For
Equations
- s.convergesTo L = Filter.Tendsto s.partial Filter.atTop (nhds L)
Instances For
Remark 7.2.3
Example 7.2.4
Equations
Instances For
Equations
- Chapter7.Series.example_7_2_4' = Chapter7.Series.mk' fun (n : { n : ℤ // n ≥ 1 }) => 2 ^ ↑n
Instances For
Corollary 7.2.6 (Zero test) / Exercise 7.2.3
Proposition 7.2.9 (Absolute convergence test) / Example 7.2.4
Example 7.2.13
Equations
Instances For
Proposition 7.2.14 (a) (Series laws) / Exercise 7.2.5. The convergesTo form can be more convenient for applications.
Proposition 7.2.14 (b) (Series laws) / Exercise 7.2.5. The convergesTo form can be more convenient for applications.
The corresponding API for subtraction was not in the textbook, but is useful in later sections, so is included here.
Lemma 7.2.15 (telescoping series) / Exercise 7.2.6