Аналіз I, Глава 6.3 #
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:
- Suprema and infima of sequences
theorem
Chapter6.Sequence.convergent_of_monotone
{a : Sequence}
(hbound : a.bddAbove)
(hmono : a.isMonotone)
:
Твердження 6.3.8 / Вправа 6.3.3
theorem
Chapter6.Sequence.lim_of_monotone
{a : Sequence}
(hbound : a.bddAbove)
(hmono : a.isMonotone)
:
Твердження 6.3.8 / Вправа 6.3.3
theorem
Chapter6.Sequence.convergent_of_antitone
{a : Sequence}
(hbound : a.bddBelow)
(hmono : a.isAntitone)
:
theorem
Chapter6.Sequence.lim_of_antitone
{a : Sequence}
(hbound : a.bddBelow)
(hmono : a.isAntitone)
:
Твердження 6.3.1