Аналіз I, Глава 7.2 #
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.
@[reducible, inline]
Визначення 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
Ремарка 7.2.3
@[reducible, inline]
Приклад 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)
Наслідок 7.2.6 (Zero test) / Вправа 7.2.3
theorem
Chapter7.Series.diverges_of_nodecay
{s : Series}
(h : ¬Filter.Tendsto s.seq Filter.atTop (nhds 0))
:
s.diverges
Твердження 7.2.9 (Absolute convergence test) / Example 7.2.4
@[reducible, inline]
Приклад 7.2.13
Equations
Instances For
Лема 7.2.15 (telescoping series) / Вправа 7.2.6