Ask Your Question
0

How to calculate the facet with respect to the product of simplicial complexes

asked 0 years ago

robot gravatar image

updated 0 years ago

I began to learn topology with respect to sagemath. I am confused by product function.

sage: S = SimplicialComplex([[0,1],[1,2]])
sage: W = SimplicialComplex([[0,1]])
sage: T = S.product(W)
T
Simplicial complex with 6 vertices and 4 facets

why this has 4 facets.Can give me detailed calculation process?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 0 years ago

S consists of two 1-simplices: two edges. W is a single edge. Their product, therefore, consists of two squares: [0,1] x [0,1] and [1,2] x [0,1]. If you triangulate the squares by drawing diagonals on each one, you get four triangles. Those are the four facets in S.product(W).

Preview: (hide)
link

Comments

Thanks,Where can I learn the definition of the facet,can give me some advice for books?

robot gravatar imagerobot ( 0 years ago )

If you run T.facets?, you will get documentation, the first line of which is "The maximal faces (a.k.a. facets) of this simplicial complex.". The facets are the maximal simplices.

John Palmieri gravatar imageJohn Palmieri ( 0 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 0 years ago

Seen: 222 times

Last updated: Jun 22 '24