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 #
Product of two infinite sums indexed by arbitrary types.
See also tsum_mul_tsum
if f
and g
are not absolutely summable, and
tsum_mul_tsum_of_summable_norm'
when the space is not complete.
ℕ
-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
.
The Cauchy product formula for the product of two infinite sums indexed by ℕ
,
expressed by summing on Finset.antidiagonal
.
See also tsum_mul_tsum_eq_tsum_sum_antidiagonal
if f
and g
are
not absolutely summable, and tsum_mul_tsum_eq_tsum_sum_antidiagonal_of_summable_norm'
when the space is not complete.
The Cauchy product formula for the product of two infinite sums indexed by ℕ
,
expressed by summing on Finset.range
.
See also tsum_mul_tsum_eq_tsum_sum_range
if f
and g
are
not absolutely summable, and tsum_mul_tsum_eq_tsum_sum_range_of_summable_norm'
when the
space is not complete.