Ask Your Question

Revision history [back]

You can do a Python list extension as follows:

sage: C = polytopes.hypercube(4) ; C
A 4-dimensional polyhedron in ZZ^4 defined as the convex hull of 16 vertices
sage: v = C.vertices()[0] ; v
A vertex at (-1, -1, -1, -1)

sage: [f for f in C.faces(2) if v in f.vertices()]
[<0,1,2,3>, <0,1,4,5>, <0,2,4,6>, <0,1,8,9>, <0,2,8,10>, <0,4,8,12>]