We make the cone corresponding to the (affine) terminal quotient
singularity C
3/(Z/5) where Z/5 acts as the 5th roots
of unity in the diagonal representation (diag)(1, 2, 3).
> L := ToricLattice(3);
> v := L ! [1/5,2/5,3/5];
> LL,emb := AddVectorToLattice(v);
> C := PositiveQuadrant(L);
> CC := Image(emb,C);
> CC;
Cone CC with 3 generators:
(1, 0, 0),
(0, 1, 0),
(3, 1, 5)
We can check that this really is terminal and compute its Gorenstein
index, the least positive multiple of the canonical class that
is Cartier.
> IsTerminal(CC);
true
> GorensteinIndex(CC);
5 (1, 1, -3/5)
We can compute a resolution of singularities of this cone,
the analogue of a simplicial subdivision for cones,
although we must treat it as a fan to do so.
> F := Fan(CC);
> F;
Fan F with 3 rays:
(0, 1, 0),
(1, 0, 0),
(3, 1, 5)
and one cone with indices:
[ 1, 2, 3 ]
> Resolution(F);
Fan with 8 rays:
(0, 1, 0),
(1, 0, 0),
(3, 1, 5),
(2, 1, 2),
(1, 1, 1),
(3, 1, 3),
(3, 1, 4),
(2, 1, 3)
and 11 cones
Note that this is not a minimal resolution: such a resolution
would only need to subdivide at the four additional rays
at the (original) lattice points 1/5(1, 2, 3), 1/5(2, 4, 1),
1/5(3, 1, 4) and 1/5(4, 3, 2).
[Next][Prev] [Right] [Left] [Up] [Index] [Root]