Definition 19: Edge Boundary and Vertex Incidence for Cell Complexes #
For a cell complex X (Def_7), we define:
edgeBoundaryCell X S— the edge boundaryδS = {e ∈ X₁ | ∃ u ∈ ∂₁e, u ∈ S, ∃ w ∈ ∂₁e, w ∉ S}incidentVerticesCell X E— vertices incident to edgesE:Γ(E) = {v ∈ X₀ | ∃ e ∈ E, v ∈ ∂₁ e}incidentEdges X v— edges incident to vertexv:δv = {e ∈ X₁ | v ∈ ∂₁ e}edgeBoundaryVertex X S v— edges in the edge boundary incident tov:(δS)_v = δS ∩ δv
Main Results #
mem_edgeBoundaryCell— membership characterization forδSmem_incidentVerticesCell— membership characterization forΓ(E)mem_incidentEdges— membership characterization forδvmem_edgeBoundaryVertex— membership characterization for(δS)_vedgeBoundaryVertex_subset—(δS)_v ⊆ δSedgeBoundaryVertex_subset_incidentEdges—(δS)_v ⊆ δvmem_edgeBoundaryVertex_iff— alternate characterization
Edge Boundary #
The edge boundary δS = {e ∈ X₁ | ∃ u ∈ ∂₁e, u ∈ S, ∃ w ∈ ∂₁e, w ∉ S} of a vertex
subset S ⊆ X₀. An edge e is in δS iff its boundary contains a vertex in S and
a vertex outside S.
Instances For
Membership in the edge boundary: e ∈ δS iff ∂₁ e meets both S and Sᶜ.
Witness: the edge boundary is nonempty when there exists an edge with one endpoint
in S and one outside S.
Incident Vertices #
The set of vertices incident to a set of edges E ⊆ X₁:
Γ(E) = {v ∈ X₀ | ∃ e ∈ E, v ∈ ∂₁ e}.
Equations
- X.incidentVerticesCell E = {v : X.cells 0 | ∃ e ∈ E, v ∈ X.bdry e}
Instances For
Membership in incident vertices: v ∈ Γ(E) iff there exists an edge e ∈ E
with v ∈ ∂₁ e.
Witness: incidentVerticesCell is nonempty when E contains an edge with a
nonempty boundary.
Incident Edges (Star of a vertex) #
The set of edges incident to a vertex v: δv = {e ∈ X₁ | v ∈ ∂₁ e},
i.e., the star of v.
Equations
- X.incidentEdges v = {e : X.cells 1 | v ∈ X.bdry e}
Instances For
Membership in incident edges: e ∈ δv iff v ∈ ∂₁ e.
Witness: incidentEdges is nonempty when there exists an edge whose boundary
contains v.
Edge Boundary Vertex #
The edges in the edge boundary δS that are incident to vertex v:
(δS)_v = δS ∩ δv = {e ∈ X₁ | e ∈ δS ∧ v ∈ ∂₁ e}.
Equations
- X.edgeBoundaryVertex S v = {e ∈ X.edgeBoundaryCell S | v ∈ X.bdry e}
Instances For
Membership in the edge boundary at vertex v: e ∈ (δS)_v iff
e ∈ δS and v ∈ ∂₁ e.
edgeBoundaryVertex is a subset of the edge boundary.
edgeBoundaryVertex is a subset of the incident edges.
Witness: edgeBoundaryVertex is nonempty when there exists an edge in δS
incident to v.
Alternate characterization: e ∈ (δS)_v iff v ∈ ∂₁ e, ∂₁ e meets S,
and ∂₁ e meets Sᶜ.