Simplicial Complexes Code

Simplicial complexes allow us to code finitely defined topological spaces in a systematic way.

I have put the code here.

Introduction

A 'simplex' is a set of vertices such that every subset is included in the simplex. For example a tetrahedron contains all its faces, lines and points.

A 'simplicial complex' is a set of these simplexes which may have vertices in common.

Because each simplex contains its subsets, this is a combinatorial structure. When used in this way the structure is known as an 'abstract simplicial complex' optionally we can also associate a point in a space with each vertex, in this case the structure is known as an 'geometric simplicial complex' and it has geometric/topological/homotopy properties.

It is intended that this code is able to be able to support both abstract and geometric simplicial complexes.

Three types of cell complex are implemented:

  • SimpectialComplex
  • DeltaComplex
  • CubicalComplex

 

complexes code

Creating Simplicial Complexes

Here are 3 ways to construct a simplicial complex:

Using SimplicialComplexFactory - This allows common complexes to be easily created.

Here is an example of building from factory:

FACTORY:=SimplicialComplexFactory(Integer)

   (1)  SimplicialComplexFactory(Integer)
                           Type: Type

(2) -> band()$FACTORY

   (2)  points 1..6
          (1,2,3)
          (1,2,6)
          (1,5,6)
          (2,3,4)
          (3,4,5)
          (4,5,6)
          Type: FiniteSimplicialComplex(Integer)

Using functions like product, star, link and join to construct complexes from simpler cases.

We can join two complexes like this:

(1) -> ASIMP := FiniteSimplicialComplex(Integer)

(1)  FiniteSimplicialComplex(Integer)
                                       Type: Type

(1) -> line := line()$ASIMP

   (1)  points 1..2
           (1,2)
             Type: FiniteSimplicialComplex(Integer)
(2) -> simplicialJoin(line,line,true)

   (2)  points 1..4
         (1,2,3,4)
             Type: FiniteSimplicialComplex(Integer)

Build from lists of indexes.

Here is an example of building from lists of indexes.

This example has 4 points:

  • point 1 and 2 are endpoins of a line.
  • point 3 does not exist but we want to reserve the index.
  • point 4 exist but is not connected to anything.
(3) -> v1:List(List(NNI)):=[[1::NNI,2::NNI],[4::NNI]]

   (3)  [[1,2],[4]]
               Type: List(List(NonNegativeInteger))
(4) -> sc1 := simplicialComplex([],4,v1)$ASIMP

   (4)  points 1..4
           (1,2)
            (4)
             Type: FiniteSimplicialComplex(Integer)

Representation of Simplicial Complexes

The FiniteSimplicialComplex representation holds whole Simplicial
Complex. This consists of:

If the dimension given for the simplicial complex is 'k' then:

For example, a triangle has 3 vertexes, so it is maximum size face in 3-1=2 dimensions.

dimension vertex simplice - (faces)
0 0 elements point
1 1 element vertex line - (edge)
2 2 element vertex triangle
3 3 element vertex tetrahedron
n n element vertex simplice

So to represent this structure we use the following representation:

Rep := Record(VERTSET : List(VS), SIMP : List(OrientedFacet))

where:

Delta Complex

The above representation defines faces, of any dimension, by their vertices. This is an efficient way to define them, the only disadvantage is that intermediate parts, such as edges, are not indexed. It is sometimes useful to be able to do this, for example, when generating homotopy groups such as the fundamental group.

To do this we represent the complex as a sequence of 'face maps' each one indexed into the next.

As an example consider the representation for a single tetrahedron:

The usual representation would be: (1,2,3,4)
which is very efficient but it does not allow us to refer to its edges and triangles.  

Here we have indexed:

  • The 4 vertices (in red)
  • The 6 edges (in green)
  • The 4 triangles (in blue)
indexed representation
This representation holds all these indexes so that we don't have to keep creating them and they can be used consistently.

Face Maps

So the tetrahedron indexes its 4 triangles, each triangle indexes its 3 edges and each edge indexes its 2 vertices.

Each face table therefore indexes into the next. To show this I have drawn some of the arrows (I could not draw all the arrows as that would have made the diagram too messy).

indexed table

Since edges, triangles, tetrahedrons, etc. are oriented we need to put the indexed in a certain order.

Edges are directed in the order of the vertex indices. That is low numbered index to high numbered index: edge numbering

For triangles we go in the order of the edges, except the middle edge is reversed.

On the diagram the edges are coloured as follows:

  • green arrows - not reversed
  • purple arrows - reversed

This gives the triangles a consistent winding

indexed triangle
However the whole tetrahedron is not yet consistent because some adjacent edges go in the same direction and some go in opposite directions. indexed tetrahedron
This gives the orientation of the faces as given by the right hand rule. That is: if the thumb of the right hand is outside the tetrahedion, pointing toward the face, then the fingers tend to curl round in the direction of the winding. right hand rule

I have put more information about delta complexes on the page here.

Abstract Simplicial Complex vs. Geometric Simplicial Complex

If we apply the restrictions explained so far we have an abstract simplicial complex, However, for a geometric simplicial complex there are some additional conditions.

The additional tests for a geometric simplicial complex are described on the page here.

An Abstract Simplicial Complex is purely combinatorial, that is we don't need the geometric information.

Therefore the AbstractSimplicialComplex domain does not need coordinates for the vertices and they can be denoted by symbols.

Simplicial Maps

Allow edges to be collapsed into vertices.

Oriented Simplexes Maps

Because the code uses Lists instead of Sets the simplexes are oriented by default, if that is not needed then we can just ignore the order.

Topological Aspects of Simplicial Complexes

We implement topological aspects of simplicial complexes such as boundaries and cycles.

The code for this is explained on the page here.

boundary

Operations on Simplicial Complexes

Here are some examples, first we setup some simplicial complexes to work with:
(1) -> ASIMP := FiniteSimplicialComplex(Integer)

   (1)  FiniteSimplicialComplex(Integer)
                                               Type: Type
(2) -> v1:List(List(NNI)) := [[1::NNI,2::NNI,3::NNI],[4::NNI,2::NNI,1::NNI]]

   (2)  [[1,2,3],[4,2,1]]
                     Type: List(List(NonNegativeInteger))
(3) -> sc1 := simplicialComplex([],v1)$ASIMP

   (3)  points 1..4
          (1,2,3)
         -(1,2,4)
                   Type: FiniteSimplicialComplex(Integer)
(4) -> sort(sc1)

   (4)  points 1..4
          (1,2,3)
         -(1,2,4)
                   Type: FiniteSimplicialComplex(Integer)
(5) -> v2:List(List(NNI)) := [[1::NNI,2::NNI]]

   (5)  [[1,2]]
                     Type: List(List(NonNegativeInteger))
(6) -> sc2 := simplicialComplex([],v2)$ASIMP

   (6)  points 1..2
           (1,2)
                   Type: FiniteSimplicialComplex(Integer)
Now we can calculate a boundary. Note that this corresponds to the red line on the diagram above.
(7) -> boundary(sc1)$ASIMP

   (7)  points 1..4
          -(1,3)
           (2,3)
           (1,4)
          -(2,4)
                   Type: FiniteSimplicialComplex(Integer)
Now we can test star, join and link.
(8) -> star(sc1,orientedFacet(1,[4]))

   (8)  points 1..4
         -(1,2,4)
                           Type: FiniteSimplicialComplex(Integer)
(9) -> link(sc1,orientedFacet(1,[4]))

   (9)  points 1..4
          -(1,2)
           (1,4)
          -(2,4)
                   Type: FiniteSimplicialComplex(Integer)
(10) -> cone(sc1,5)

   (10)  points 1..4
          (1,2,3,5)
          (1,2,4,5)
                   Type: FiniteSimplicialComplex(Integer)
(11) -> boundary(sc2)$ASIMP

   (11)  points 1..2
             (1)
            -(2)
                   Type: FiniteSimplicialComplex(Integer)
(12) -> simplicialJoin(sc1,sc2,false)

   (12)  points 1..6
           (1,2,3)
          -(1,2,4)
                   Type: FiniteSimplicialComplex(Integer)

We can also calculate products and sums of simplicial complexes. Products are quite complicated so I have put this on a separate page here.

Vertex Set Code

We want an indexed set of points, the simplest way to do the indexing is to use 'List' instead of 'Set'.

The vertices themselves may be either:

So we cave a category that can represent any of these types and then a domain for each type.

Next Steps

Bibliography

For more details see:


metadata block
see also:
Correspondence about this page

This site may have errors. Don't use for critical systems.

Copyright (c) 1998-2023 Martin John Baker - All rights reserved - privacy policy.