Infinite sums in topological vector spaces #
Infinite sums commute with scalar multiplication. Version for scalars living in a Monoid
, but
requiring a summability hypothesis.
Infinite sums commute with scalar multiplication. Version for scalars living in a Group
, but
not requiring any summability hypothesis.
Infinite sums commute with scalar multiplication. Version for scalars living in a
DivisionRing
; no summability hypothesis. This could be made to work for a
[GroupWithZero γ]
if there was such a thing as DistribMulActionWithZero
.
Note we cannot derive the mul
lemmas from these smul
lemmas, as the mul
versions do not
require associativity, but Module
does.
Scalar product of two infinites sums indexed by arbitrary types.
Applying a continuous linear map commutes with taking an (infinite) sum.
Alias of ContinuousLinearMap.hasSum
.
Applying a continuous linear map commutes with taking an (infinite) sum.
Alias of ContinuousLinearMap.summable
.
Applying a continuous linear map commutes with taking an (infinite) sum.
Applying a continuous linear map commutes with taking an (infinite) sum.
Given a group α
acting on a type β
, and a function f : β → M
, we "automorphize" f
to a
function β ⧸ α → M
by summing over α
orbits, b ↦ ∑' (a : α), f(a • b)
.
Equations
- MulAction.automorphize f = Quotient.lift (fun (b : β) => ∑' (a : α), f (a • b)) ⋯
Instances For
Given an additive group α
acting on a type β
, and a function f : β → M
,
we automorphize f
to a function β ⧸ α → M
by summing over α
orbits,
b ↦ ∑' (a : α), f(a • b)
.
Equations
- AddAction.automorphize f = Quotient.lift (fun (b : β) => ∑' (a : α), f (a +ᵥ b)) ⋯
Instances For
Automorphization of a function into an R
-Module
distributes, that is, commutes with the
R
-scalar multiplication.
Automorphization of a function into an R
-Module
distributes, that is, commutes with the
R
-scalar multiplication.
Given a subgroup Γ
of a group G
, and a function f : G → M
, we "automorphize" f
to a
function G ⧸ Γ → M
by summing over Γ
orbits, g ↦ ∑' (γ : Γ), f(γ • g)
.
Equations
Instances For
Given a subgroup Γ
of an additive group G
, and a function f : G → M
, we
automorphize f
to a function G ⧸ Γ → M
by summing over Γ
orbits,
g ↦ ∑' (γ : Γ), f(γ • g)
.
Equations
Instances For
Automorphization of a function into an R
-Module
distributes, that is, commutes with the
R
-scalar multiplication.
Automorphization of a function into an R
-Module
distributes, that is, commutes with the
R
-scalar multiplication.