Ask Your Question
0

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

asked 2024-06-22 19:28:49 +0200

robot gravatar image

updated 2024-06-22 19:35:53 +0200

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?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
0

answered 2024-06-22 19:38:24 +0200

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).

edit flag offensive delete link more

Comments

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

robot gravatar imagerobot ( 2024-06-22 19:48:24 +0200 )edit

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 ( 2024-06-22 20:36:24 +0200 )edit

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: 2024-06-22 19:28:49 +0200

Seen: 146 times

Last updated: Jun 22