Interior and boundary of a manifold #
Define the interior and boundary of a manifold.
Main definitions #
- IsInteriorPoint x:
p ∈ Mis an interior point if, forφbeing the preferred chart atx,φ xis an interior point ofφ.target. - IsBoundaryPoint x:
p ∈ Mis a boundary point if,(extChartAt I x) x ∈ frontier (range I). - interior I M is the interior of
M, the set of its interior points. - boundary I M is the boundary of
M, the set of its boundary points.
Main results #
ModelWithCorners.univ_eq_interior_union_boundary:Mis the union of its interior and boundaryModelWithCorners.interior_boundary_disjoint: interior and boundary ofMare disjointBoundarylessManifold.isInteriorPoint: ifMis boundaryless, every point is an interior pointModelWithCorners.Boundaryless.boundary_eq_emptyandof_boundary_eq_empty:Mis boundaryless if and only if its boundary is emptyModelWithCorners.interior_prod: the interior ofM × Nis the product of the interiors ofMandN.ModelWithCorners.boundary_prod: the boundary ofM × Nis∂M × N ∪ (M × ∂N).ModelWithCorners.BoundarylessManifold.prod: ifMandNare boundaryless, so isM × NModelWithCorners.interior_disjointUnion: the interior of a disjoint unionM ⊔ M'is the union of the interior ofMandM'ModelWithCorners.boundary_disjointUnion: the boundary of a disjoint unionM ⊔ M'is the union of the boundaries ofMandM'ModelWithCorners.boundaryless_disjointUnion: ifMandM'are boundaryless, so is their disjoint unionM ⊔ M'
Tags #
manifold, interior, boundary
TODO #
xis an interior point iff any chart aroundxmaps it tointerior (range I); similarly for the boundary.- the interior of
Mis open, hence the boundary is closed (and nowhere dense) In finite dimensions, this requires e.g. the homology of spheres. - the interior of
Mis a manifold without boundary boundary Mis a submanifold (possibly with boundary and corners): follows from the corresponding statement for the model with cornersI; this requires a definition of submanifolds- if
Mis finite-dimensional, its boundary has measure zero
p ∈ M is an interior point of a manifold M iff its image in the extended chart
lies in the interior of the model space.
Equations
- I.IsInteriorPoint x = (↑(extChartAt I x) x ∈ interior (Set.range ↑I))
Instances For
p ∈ M is a boundary point of a manifold M iff its image in the extended chart
lies on the boundary of the model space.
Equations
- I.IsBoundaryPoint x = (↑(extChartAt I x) x ∈ frontier (Set.range ↑I))
Instances For
The interior of a manifold M is the set of its interior points.
Equations
- ModelWithCorners.interior M = {x : M | I.IsInteriorPoint x}
Instances For
The boundary of a manifold M is the set of its boundary points.
Equations
- ModelWithCorners.boundary M = {x : M | I.IsBoundaryPoint x}
Instances For
Every point is either an interior or a boundary point.
A manifold decomposes into interior and boundary.
The interior and boundary of a manifold M are disjoint.
The boundary is the complement of the interior.
The interior is the complement of the boundary.
Type class for manifold without boundary. This differs from ModelWithCorners.Boundaryless,
which states that the ModelWithCorners maps to the whole model vector space.
- isInteriorPoint' (x : M) : I.IsInteriorPoint x
Instances
Boundaryless ModelWithCorners implies boundaryless manifold.
The empty manifold is boundaryless.
If I is boundaryless, M has full interior.
Boundaryless manifolds have empty boundary.
M is boundaryless iff its boundary is empty.
Manifolds with empty boundary are boundaryless.
Interior and boundary of the product of two manifolds.
The interior of M × N is the product of the interiors of M and N.
The boundary of M × N is ∂M × N ∪ (M × ∂N).
If M is boundaryless, ∂(M×N) = M × ∂N.
If N is boundaryless, ∂(M×N) = ∂M × N.
The product of two boundaryless manifolds is boundaryless.
If M and M' are boundaryless, so is their disjoint union M ⊔ M'.