Ask Your Question

Vikram Saraph's profile - activity

2015-09-20 00:38:13 +0200 commented question Categorical product of simplicial complexes

No, see my comment on John Palmieri's answer. The (categorical) product of two 1-simplexes is the standard simplex on (1+1)*(1+1) = 4 vertices, or the standard 3-simplex, or a tetrahedron.

2015-09-20 00:36:28 +0200 commented answer Categorical product of simplicial complexes

I completely forgot I posted this question! Anyways, the categorical product of two complexes A and B is a complex with vertex set V(A) \times V(B), and a set of vertices S in V(A) \times V(B) is a simplex if pi_1(S) is a simplex in A and pi_2(S) is a simplex in B, where pi_i are projections onto each coordinate.

If A is the standard n simplex, and B is the standard m simplex, then A \times B is the standard (n+1)(m+1) - 1 simplex.

This definition can be found in Dmitry Kozlov's Combinatorial Algebraic Topology.

2014-07-03 03:15:57 +0200 received badge  Student (source)
2014-07-03 00:25:08 +0200 asked a question Categorical product of simplicial complexes

Does Sage have some function that takes the categorical product of two finite simplicial complexes? I see that the SimplicialComplex library has a product() function that appears to take the topologicalproduct of two complexes (details here: http://www.sagemath.org/doc/reference...), but this isn't what I'm looking for.

The example given on the linked webpage is Simplex(1).product(Simplex(1)), which returns [('L0R0', 'L0R1', 'L1R1'), ('L0R0', 'L1R0', 'L1R1')], or a square with a diagonal through it. This is what I would expect from a topological product, since the product of two lines is a square. However, the categorical product of two complexes is different and is in general not homeomorphic to their topological product. The categorical product of two edges (1-simplexes) should be a tetrahedron and not a square.

Is there a Sage function that will do this for me? I'm not familiar with the markdown syntax on this forum so sorry about the poor formatting.