Explicit limits and colimits #
This file collects some constructions of explicit limits and colimits in CompHaus
,
which may be useful due to their definitional properties.
So far, we have the following:
- Explicit pullbacks, defined in the "usual" way as a subset of the product.
- Explicit finite coproducts, defined as a disjoint union.
The pullback of two morphisms f,g
in CompHaus
, constructed explicitly as the set of
pairs (x,y)
such that f x = g y
, with the topology induced by the product.
Equations
- CompHaus.pullback f g = CompHaus.of ↑{xy : ↑X.toTop × ↑Y.toTop | f xy.1 = g xy.2}
Instances For
The projection from the pullback to the first component.
Equations
- CompHaus.pullback.fst f g = ContinuousMap.mk fun (x : ↑(CompHaus.pullback f g).toTop) => match x with | { val := (x, snd), property := property } => x
Instances For
The projection from the pullback to the second component.
Equations
- CompHaus.pullback.snd f g = ContinuousMap.mk fun (x : ↑(CompHaus.pullback f g).toTop) => match x with | { val := (fst, y), property := property } => y
Instances For
Construct a morphism to the explicit pullback given morphisms to the factors which are compatible with the maps to the base. This is essentially the universal property of the pullback.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The homeomorphism from the explicit pullback to the abstract pullback.
Equations
Instances For
The coproduct of a finite family of objects in CompHaus
, constructed as the disjoint
union with its usual topology.
Equations
- CompHaus.finiteCoproduct X = CompHaus.of ((a : α) × ↑(X a).toTop)
Instances For
The inclusion of one of the factors into the explicit finite coproduct.
Equations
- CompHaus.finiteCoproduct.ι X a = ContinuousMap.mk fun (x : ↑(X a).toTop) => { fst := a, snd := x }
Instances For
To construct a morphism from the explicit finite coproduct, it suffices to specify a morphism from each of its factors. This is essentially the universal property of the coproduct.
Equations
- CompHaus.finiteCoproduct.desc X e = ContinuousMap.mk fun (x : ↑(CompHaus.finiteCoproduct X).toTop) => match x with | { fst := a, snd := x } => (e a) x
Instances For
The coproduct cocone associated to the explicit finite coproduct.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The explicit finite coproduct cocone is a colimit cocone.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The isomorphism from the explicit finite coproducts to the abstract coproduct.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The homeomorphism from the explicit finite coproducts to the abstract coproduct.
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.