Module docstring
{"# Multiplying two infinite sums in a normed ring
In this file, we prove various results about (∑' x : ι, f x) * (∑' y : ι', g y) in a normed
ring. There are similar results proven in Mathlib.Topology.Algebra.InfiniteSum (e.g
tsum_mul_tsum), but in a normed ring we get summability results which aren't true in general.
We first establish results about arbitrary index types, ι and ι', and then we specialize to
ι = ι' = ℕ to prove the Cauchy product formula
(see tsum_mul_tsum_eq_tsum_sum_antidiagonal_of_summable_norm).
","### Arbitrary index types ","### ℕ-indexed families (Cauchy product)
We prove two versions of the Cauchy product formula. The first one is
tsum_mul_tsum_eq_tsum_sum_range_of_summable_norm, where the n-th term is a sum over
Finset.range (n+1) involving Nat subtraction.
In order to avoid Nat subtraction, we also provide
tsum_mul_tsum_eq_tsum_sum_antidiagonal_of_summable_norm,
where the n-th term is a sum over all pairs (k, l) such that k+l=n, which corresponds to the
Finset Finset.antidiagonal n. "}