| 820 | def BarnetteSphere(self): |
| 821 | r""" |
| 822 | Returns Barnette's triangulation of the 3-sphere. |
| 823 | |
| 824 | This is a pure simplicial complex of dimension 3 with 8 |
| 825 | vertices and 19 facets, which is a non-polytopal triangulation |
| 826 | of the 3-sphere. It was constructed by Barnette in |
| 827 | [B1970]_. The construction here uses the labeling from De |
| 828 | Loera, Rambau and Santos [DLRS2010]_. Another reference is chapter |
| 829 | III.4 of Ewald [E1996]_. |
| 830 | |
| 831 | EXAMPLES:: |
| 832 | |
| 833 | sage: BS = simplicial_complexes.BarnetteSphere() ; BS |
| 834 | Simplicial complex with vertex set (1, 2, 3, 4, 5, 6, 7, 8) and 19 facets |
| 835 | sage: BS.f_vector() |
| 836 | [1, 8, 27, 38, 19] |
| 837 | |
| 838 | TESTS: |
| 839 | |
| 840 | Checks that this is indeed the same Barnette Sphere as the one |
| 841 | given on page 87 of [E1996]_.:: |
| 842 | |
| 843 | sage: BS2 = SimplicialComplex([[1,2,3,4],[3,4,5,6],[1,2,5,6], |
| 844 | ... [1,2,4,7],[1,3,4,7],[3,4,6,7], |
| 845 | ... [3,5,6,7],[1,2,5,7],[2,5,6,7], |
| 846 | ... [2,4,6,7],[1,2,3,8],[2,3,4,8], |
| 847 | ... [3,4,5,8],[4,5,6,8],[1,2,6,8], |
| 848 | ... [1,5,6,8],[1,3,5,8],[2,4,6,8], |
| 849 | ... [1,3,5,7]]) |
| 850 | sage: BS.is_isomorphic(BS2) |
| 851 | True |
| 852 | |
| 853 | REFERENCES: |
| 854 | |
| 855 | .. [B1970] Barnette, "Diagrams and Schlegel diagrams", in |
| 856 | Combinatorial Structures and Their Applications, Proc. Calgary |
| 857 | Internat. Conference 1969, New York, 1970, Gordon and Breach. |
| 858 | |
| 859 | .. [DLRS2010] De Loera, Rambau and Santos, "Triangulations: |
| 860 | Structures for Algorithms and Applications", Algorithms and |
| 861 | Computation in Mathematics, Volume 25, Springer, 2011. |
| 862 | |
| 863 | .. [E1996] Ewald, "Combinatorial Convexity and Algebraic Geometry", |
| 864 | vol. 168 of Graduate Texts in Mathematics, Springer, 1996 |
| 865 | |
| 866 | """ |
| 867 | return SimplicialComplex([ |
| 868 | (1,2,4,5),(2,3,5,6),(1,3,4,6),(1,2,3,7),(4,5,6,7),(1,2,4,7), |
| 869 | (2,4,5,7),(2,3,5,7),(3,5,6,7),(3,1,6,7),(1,6,4,7),(1,2,3,8), |
| 870 | (4,5,6,8),(1,2,5,8),(1,4,5,8),(2,3,6,8),(2,5,6,8),(3,1,4,8), |
| 871 | (3,6,4,8)]) |
| 872 | |