(Co)product of a family of filters #
In this file we define two filters on Π i, α i
and prove some basic properties of these filters.
Filter.pi (f : Π i, Filter (α i))
to be the maximal filter onΠ i, α i
such that∀ i, Filter.Tendsto (Function.eval i) (Filter.pi f) (f i)
. It is defined asΠ i, Filter.comap (Function.eval i) (f i)
. This is a generalization ofFilter.prod
to indexed products.Filter.coprodᵢ (f : Π i, Filter (α i))
: a generalization ofFilter.coprod
; it is the supremum ofcomap (eval i) (f i)
.
If a function tends to a product Filter.pi f
of filters, then its i
-th component tends to
f i
. See also Filter.Tendsto.apply_nhds
for the special case of converging to a point in a
product of topological spaces.
The indexed product of finitely many principal filters
is the principal filter corresponding to the cylinder Set.univ.pi s
.
If the index type is infinite, then mem_pi_principal
and hasBasis_pi_principal
may be useful.
The indexed product of a (possibly, infinite) family of principal filters
is generated by the finite Set.pi
cylinders.
If the index type is finite, then the indexed product of principal filters
is a pricipal filter, see pi_principal
.
The indexed product of a (possibly, infinite) family of principal filters
is generated by the finite Set.pi
cylinders.
If the index type is finite, then the indexed product of principal filters
is a pricipal filter, see pi_principal
.
The indexed product of finitely many pure filters pure (f i)
is the pure filter pure f
.
If the index type is infinite, then mem_pi_pure
and hasBasis_pi_pure
below may be useful.
The indexed product of a (possibly, infinite) family of pure filters pure (f i)
is generated by the sets of functions that are equal to f
on a finite set.
If the index type is finite, then the indexed product of pure filters is a pure filter,
see pi_pure
.
The indexed product of a (possibly, infinite) family of pure filters pure (f i)
is generated by the sets of functions that are equal to f
on a finite set.
If the index type is finite, then the indexed product of pure filters is a pure filter,
see pi_pure
.
n
-ary coproducts of filters #
Coproduct of filters.
Equations
- Filter.coprodᵢ f = ⨆ (i : ι), Filter.comap (Function.eval i) (f i)