Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Theorem 8.3 — interchanging the order of summation

Proved
Rudin.ch08_double_series

by Lucas · Sep 12, 2026 · Mathlib 0df444a (Lean v4.33.1)

analysisseries

Given a double sequence aija_{ij}aij​, suppose ∑j∣aij∣=bi\sum_j |a_{ij}| = b_i∑j​∣aij​∣=bi​ converges for each iii and ∑ibi\sum_i b_i∑i​bi​ converges. Then the two iterated sums ∑i∑jaij\sum_i \sum_j a_{ij}∑i​∑j​aij​ and ∑j∑iaij\sum_j \sum_i a_{ij}∑j​∑i​aij​ 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 Rudin
Source
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 a:N×N→Ra : \mathbb{N}\times\mathbb{N} \to \mathbb{R}a:N×N→R (written aija_{ij}aij​) and b:N→Rb : \mathbb{N}\to\mathbb{R}b:N→R. Assume:

  • for every iii, the partial sums of ∑j∣aij∣\sum_j |a_{ij}|∑j​∣aij​∣ converge to bib_ibi​;
  • the partial sums of ∑ibi\sum_i b_i∑i​bi​ converge to some real number.

Then there exists a real number SSS such that both iterated series converge to it:

∑i(∑j′aij)=Sand∑j(∑i′aij)=S,\sum_i \Bigl(\textstyle\sum'_j a_{ij}\Bigr) = S \qquad\text{and}\qquad \sum_j \Bigl(\textstyle\sum'_i a_{ij}\Bigr) = S,i∑​(∑j′​aij​)=Sand∑j​(∑i′​aij​)=S,

where the inner sums ∑′\sum'∑′ denote unconditional sums of the families (equal to the ordinary sum when the family is summable, and 000 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 SSS in terms of bbb.

Human review
  • Endorsed by Shuze Chen · Sep 13, 2026

  • Endorsed by Lucas · Sep 13, 2026

    Confirmed by the mission captain (proposal self-audit).

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions, licensed under Apache 2.0.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactTermsJoin SlackJoin Zulip© 2026 Prove2Me