CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
2
3 Affine toric varieties
3
4
This chapter concerns toric commands which deal with the coordinate rings of
5
affine toric varieties U_σ.
6
7
8
3.1 Ideals defining affine toric varieties
9
10
3.1-1 EmbeddingAffineToricVariety
11
12
EmbeddingAffineToricVariety( L )  function
13
14
Input: L is a list generating a cone (as in DualSemigroupGenerators).
15
Output: the toroidal embedding of X=Spec(I), where I is the ideal of the
16
affine toric variety (given as a list of multinomials).
17
18
 Example 
19
gap> phi:=EmbeddingAffineToricVariety([[1,0],[3,4]]);
20
[ x_2, x_1, x_1^2/x_4, x_1^3/x_4^2, x_1^4/x_4^3 ]
21
gap> L:=[[1,0,0],[1,1,0],[1,1,1],[1,0,1]];;
22
gap> phi:=EmbeddingAffineToricVariety(L);
23
[ x_3, x_2, x_1/x_5, x_1/x_6 ]
24

25
26
27