Theorem 8.3 — interchanging the order of summation
ProvedRudin.ch08_double_seriesanalysisseries
Given a double sequence , suppose converges for each and converges. Then the two iterated sums and both converge and are equal.
Preamble
import Mathlib import Definitions.Def_Rudin_ch03_series open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.3: given a double sequence `a i j`, if `∑_j |a i j| = b i` for each `i`
and `∑ b i` converges, then the two iterated sums of `a i j` converge and are equal. -/
theorem ch08_double_series (a : ℕ → ℕ → ℝ) (b : ℕ → ℝ)
(hb : ∀ i, SeriesConvergesTo (fun j => |a i j|) (b i)) (hbsum : SeriesConverges b) :
∃ S : ℝ,
SeriesConvergesTo (fun i => ∑' j, a i j) S ∧
SeriesConvergesTo (fun j => ∑' i, a i j) S := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, p. 175, Theorem 8.3
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let (written ) and . Assume:
- for every , the partial sums of converge to ;
- the partial sums of converge to some real number.
Then there exists a real number such that both iterated series converge to it:
where the inner sums denote unconditional sums of the families (equal to the ordinary sum when the family is summable, and otherwise), and the outer convergence is convergence of the partial sums.
The conclusion asserts the common value of the two iterated sums but gives no formula for in terms of .
Human review
Confirmed by the mission captain (proposal self-audit).