-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprelim.tex
1025 lines (989 loc) · 71.9 KB
/
prelim.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\chapter{Preliminaries}
\label{chap:prelim}
\section{K\"ahler geometry}
\subsection{Basic definitions}
\subsubsection{K\"ahler manifolds}
In this section we recall the basics of K\"ahler geometry. We then review some important results on the existence of canonical metrics on compact K\"ahler manifolds. A good reference for the material here is \cite{griffiths}. Let \(X\) denote a compact real manifold of dimension \(2n\). Suppose we have an almost complex structure \(J\) on \(X\), that is an automorphism \(J\) of \(T_\RR X\) such that \(J^2 = - \text{Id}\). Recall that the complexified tangent bundle, \(T_\CC X := T_\RR X \otimes \CC\), decomposes via eigenspaces of \(J\):
\[
T_\CC X = T^{1,0} X \oplus T^{0,1} X,
\]
where \(T^{(1,0)} X\) has local generators \(\frac{\partial}{\partial z_i} = \frac{1}{2} \left( \frac{\partial}{\partial x_i} - \sqrt{-1} \frac{\partial}{\partial y_i} \right) \), and \(T^{(0,1)} X = \overline{T^{(1,0)} X}\) has local generators \(\frac{\partial}{\partial \bar{z}_i} = \frac{1}{2} \left( \frac{\partial}{\partial x_i} + \sqrt{-1} \frac{\partial}{\partial y_i} \right)\).
Recall also that we have a natural isomorphism of real vector bundles \(T_\RR X \cong T^{(1,0)}\), given by the composition \(T_\RR X \to T_\CC \to T^{1,0}X\). Note, by definition, the action of \(J\) is described by multiplying by \(\sqrt{-1}\) on \(T^{1,0} X\). The decomposition above induces a decomposition of the complexified cotangent bundle:
\[
T^*_\CC X = T^*_{1,0} X \oplus T^*_{0,1} X,
\]
and, moreover, a decomposition:
\begin{equation} \label{decomp}
\bigwedge^n T^*_\CC X = \bigoplus_{p+q = n} \left(\bigwedge^p T^*_{1,0} X \otimes \bigwedge^q T^*_{0,1} X \right)
\end{equation}
We use the following notation for relevant spaces of global sections:
\begin{align}
A^n(X) &:= H^0(X,\bigwedge^n T^*_\CC X) \\
A^{p,q}(X) &:= H^0 ( X, \ (\bigwedge^p T^*_{1,0} X \otimes \bigwedge^q T^*_{0,1} X ) \ ).
\end{align}
A form \(\alpha \in A^{p,q}(X)\) is said to be \textit{of type \((p,q)\)}. The decomposition (\ref{decomp}) induces a corresponding decomposition:
\[
A^n(X) = \bigoplus_{p+q = n} A^{p,q}(X).
\]
\subsubsection{Hermitian and K\"ahler metrics}
Roughly speaking, a metric measures distances on a manifold. On real manifolds one usually \textit{Riemannian metrics}. Complex manifolds come with more structure, and the analogous object compatible with this structure, is a \textit{Hermitian metric}. A Hermitian metric is given by a smooth choice of positive definite Hermitian inner product on the fibers of \(T^{(1,0)}X\), i.e an element of \(H^0(X, T^*_{1,0} X \otimes T^*_{0,1} X) \). Locally we write:
\[
h(z) = \sum h_{ij}(z) dz_i \otimes d\bar{z}_j.
\]
Given a Hermitian metric \(h\) on \(X\), we may consider the real and imaginary parts of \(h\) as real tensors on the underlying real manifold via the isomorphisms \(T_\RR X \cong T^{1,0}X \cong \overline{T^{1,0}X}\). The real part \(g = \Re h\) is a Riemannian metric on \(X\), called the \textit{induced Riemannian metric} of \(h\). Locally we have:
\[
g_z = \sum h_{ij}(z) ( dx_i \otimes d x_j + dy_i \otimes dy_j)
\]
We may also realize the imaginary part \(\omega = - \Im h\), up to sign, as an alternating form on the real tangent bundle \(T_\RR X\), via \(T^{1,0}X \cong \overline{T^{1,0}X}\). Set \(\omega ( v \wedge w ) := - \Im h(v, \bar{w}) = - \frac{i}{2} ( h - \bar{h} ) \). We call \(\omega\) the \textit{associated \((1,1)\)-form} of \(h\). Locally we have:
\[
\omega_z = \sqrt{-1} \sum h_{ij}(z) dz_i \wedge d\bar{z}_j = \sqrt{-1} \sum h_{ij}(z) ( dx_i \otimes dy_j - dy_i \otimes dx_j).
\]
By definition we have \(g(v,w) = g(Jv,Jw)\) and \(\omega(v,w) = g(Jv,w) \) for any \(v,w \in T_\RR X\). In fact we may reconstruct \(h\) from any Riemannian metric \(g\) satisfying \(g(v,w) = g(Jv,Jw)\), or alternatively any real \((1,1)\)-form \(\omega\) satisfying the positive definite condition:
\[
\omega( v \wedge v) > 0 \text{ for all } v \in T_\RR X.
\]
We may now recall the definition of a K\"ahler metric.
\begin{definition}
A Hermitian metric is K\"ahler if the associated \((1,1)\)-form \(\omega\) is closed, i.e \(d \omega = 0\), where \(d: A^2(X,\RR) \to A^3(X,\RR)\) is the usual exterior differential.
\end{definition}
We will bow to convention and often refer to \(\omega\), instead of \(g\), as a K\"ahler metric on \(X\) in this context. The standard first example of a compact K\"ahler manifold is the Fubini-Study metric on complex projective space:
\begin{example}
Let \(s\) be a section of the projection map \(\pi: \CC^{n+1} \backslash \{0\} \to \PP^n\) over some open set \(U \subset \PP^n\). The Fubini-Study metric \(\omega_{FS}\) is then defined to be
\[
\omega_{FS} := i \partial \bar{\partial} \log ||s||^2
\]
This is well-defined as any two sections differ on their shared domain by a non-vanishing holomorphic function, \(s' = fs\). It is clearly closed (since \(d = \partial + \bar{\partial}\)). For the standard section on \(U_0\) with holomorphic coordinates \(z_1,\dots,z_n\) we have:
\[
\omega_{FS} := i \partial \bar{\partial} \log ( 1 + |z_1|^2 + \dots + |z_n|^2)
\]
and at \([1,0,\dots,0] \in U_0\) we have:
\[
\omega_{FS} = i \sum dz_j \wedge d \bar{z}_j
\]
This is positive definite, and so defines a K\"ahler metric on \(\PP^n\).
\end{example}
This leads to a large class of examples including any smooth projective algebraic variety:
\begin{example}
The restriction of \(\omega_{FS}\) to any closed submanifold \(Y \subseteq \PP^n\) induces a K\"ahler structure on \(Y\), as the exterior differential commutes with pulling back differential forms.
\end{example}
Recall the following important result, telling us that any two K\"ahler forms of the same class differ by some real-valued function.
\begin{namedthm}{\(\partial \bar{\partial}\)-lemma}
If \(\omega, \eta\) are two real \((1,1)\)-forms of the same cohomology class then there is a real function \(f: X \to \RR\) such that \(\omega - \eta = \sqrt{-1} \partial \bar{\partial} f\).
\end{namedthm}
\subsection{Line bundles and Kodaira Embedding}
Recall that we can extend the notion of Hermitian metric to an arbitrary complex vector bundle \(E\): a Hermitian metric on \(E\) is defined to be an element \(h \in H^0(X, E \otimes \bar{E})^* \). We now recall the notion of a connection and its curvature. A \textit{connection} may be thought of as a way to differentiate tensor fields, and transport data smoothly about a manifold. In our context, a connection is given by a map:
\[
\nabla: H^0(X,E) \to H^0(X,E \otimes T^* X)
\]
satisfying the Liebniz rule \(\nabla(s f) = \nabla s f + s \otimes df\). There is a unique way to extend a connection to an exterior derivative on \(E\)-valued differential forms:
\[
d^\nabla: \Omega^r(E) \to \Omega^{r+1}(E).
\]
The \textit{curvature} of a connection is the \(2\)-form:
\[
F^\nabla \in H^0(X, \text{End}(E) \otimes \wedge^2 T^* X),
\]
given by:
\[
F^\nabla(u,v)(s) := \nabla_u \nabla_v s - \nabla_v \nabla_u s - \nabla_{[u,v]} s.
\]
There is a canonical connection on the tangent bundle of any Riemannian manifold known as the \textit{Levi-Civita connection}, satisfying \(\nabla g = 0\) and \(\nabla_u v - \nabla_v u = [u,v]\). We have a similar situation for any Hermitian vector bundle on a complex manifold:
\begin{example}
Let \(E\) be a Hermitian vector bundle on a complex manifold \(X\) equipped with a holomorphic structure. There is a unique connection \(\nabla\) on \(E\) such that:
\begin{itemize}
\item For all sections \(s\) we have \(\pi_{1,0} \nabla s = \bar{\partial} s\)
\item For any smooth vector field \(v\) and sections \(s,t\) we have:
\[
v \langle s,t \rangle = \langle \nabla_v s , t \rangle + \langle s, \nabla_v t \rangle
\]
\end{itemize}
This connection is called the \textit{Chern connection} on \(E\).
\end{example}
K\"ahler manifolds may be characterized as those manifolds for which the Levi-Civita connection and Chern connection on the tangent bundle coincide. We now recall the definition of the first Chern class of a Hermitian line bundle, which may be used to define notions of positivity.
\begin{definition}
The first Chern class of a Hermitian line bundle \(L\) is the real cohomology class:
\[
c_1(L) = \frac{1}{2 \pi} [ - \sqrt{-1} \partial \bar{\partial} \log(h) ] \in H^2(X, \ZZ)
\]
\end{definition}
\begin{example}
Suppose \((X,g)\) is a K\"ahler manifold. Then \(g\) induces a Hermitian metric on the holomorphic cotangent bundle \(\Omega^{1,0} X\), which in turn induces a Hermitian metric on the canonical line bundle \(K_X = \wedge^{n} \Omega^{1,0} X\), denoted \(\det(g)\). The curvature of the associated Chern connection to this Hermitian line bundle is called the Ricci curvature form of the manifold, given by:
\[
\Ric(\omega) = - \sqrt{-1} \partial \bar{\partial} \log( \det(g) ).
\]
The real cohomology class \(c_1(K_X) = \frac{1}{2 \pi} [ - \sqrt{-1} \partial \bar{\partial} \log( \det(g) ] \) is called the first Chern class of the K\"ahler manifold \((X,g)\), and is often denoted just by \(c_1(X)\).
\end{example}
We now recall the definition of a positively curved line bundle.
\begin{definition}
A real \((1,1)\)-form is called positive if the associated symmetric bilinear form defined for real tangent vectors is positive definite. A real cohomology class is called positive if it can be represented by a positive \((1,1)\)-form. A line bundle \(L\) is called positive if its first Chern class is positive.
\end{definition}
The following theorem, by Kodaira, characterizes smooth projective varieties amongst compact K\"ahler manifolds. Recall that a line bundle \(L\) is very ample if for some global sections \(s_0,\dots,s_n \in H^0(X,L)\) we obtain a well-defined closed embedding into a projective space, given by:
\[
\varphi_L: p \mapsto [s_0(p),\dots,s_n(p)] \in \PP^n
\]
We say \(L\) is ample if some multiple of \(L\) is very ample.
\begin{namedthm}{Kodaira Embedding Theorem}[{\cite[Theorem 4]{kodaira1954kahler}}]
A holomorphic line bundle over a compact complex manifold is ample if and only if it is positive.
\end{namedthm}
Paired with the following theorem we can talk either about projective K\"ahler manifolds or polarized projective algebraic varieties.
\begin{namedthm}{Chow's Theorem}[{\cite[Theorem 5]{chow1949compact}}]
A closed complex submanifold of projective space is a projective algebraic subvariety.
\end{namedthm}
\subsection{Canonical metrics on K\"ahler manifolds} \label{sec:canonmetric}
In this section we recall some facts about canonical metrics. A canonical metric is a choice of metric dependent only on the complex structure of the manifold, unique up to biholomorphic automorphisms. The material in this section may be found in \cite{szebook}, for example.
As we touched on in the introduction, K\"ahler-Einstein metrics are an important class of canonical metric, and the question of which compact K\"ahler manifolds admit a K\"ahler-Einstein metric has historically received a lot of attention. Recall the definition of a K\"ahler-Einstein metric:
\begin{definition}
Let \(X\) be a K\"ahler manifold. A K\"ahler-Einstein metric on \(X\) is a K\"ahler metric \(\omega \in 2 \pi c_1(X)\) such that \(\Ric \omega = \lambda \omega\) for some real constant \(\lambda\).
\end{definition}
Note if \(X\) is K\"ahler-Einstein then we must have either \(K_X = 0\), \(K_X\) ample, or \(-K_X\) ample. Via Kodaira embedding these correspond to Ricci flat, Ricci positive, and Ricci negative manifolds respectively. We briefly recall the answers to the existence question in the cases of negative and zero Ricci curvature:
\begin{namedthm}{Calabi-Yau Theorem}[{\cite[Theorem 1]{yau1977calabi}}]
Let \((X,\omega)\) be a compact K\"ahler manifold. Let \(\alpha\) be a real \((1,1)\)-form representing \(c_1(X)\). Then there exists a real \((1,1)\)-form \(\omega'\) with \([\omega'] = [\omega]\) such that \(\Ric(\omega) = 2 \pi \alpha \).
\end{namedthm}
\begin{namedthm}{Aubin-Yau Theorem}[{\cite{yau1975,Aubin1976}}]
Let \(X\) be a compact K\"ahler manifold with \(c_1(X) < 0 \). Then there exists a unique K\"ahler metric \(\omega \in -2 \pi c_1(X)\) such that \(\Ric(\omega) = -\omega\).
\end{namedthm}
However the following necessary criterion illustrates that the same is not true in the Fano case \(c_1(X)> 0\). Recall that a complex algebraic group is reductive if it is the complexification of a compact connected real Lie group.
\begin{namedthm}{Matsushima's criterion}[\cite{matsushima1957structure}]
If a Fano manifold \(X\) admits a K\"ahler-Einstein metric, then the holomorphic automorphism group of \(X\) is reductive.\end{namedthm}
In particular this tells us that the blow up of \(\PP^1\) in one or two points is not K\"ahler-Einstein. We end this section by recalling the most general form of canonical metric we will consider. This matches the definition given in \cite[Definiton 3]{datar2016kahler}.
\begin{definition} \label{def:tKRS}
A twisted K\"ahler-Ricci soliton on a Fano manifold \((X,\omega_0)\) is a triple \((\omega,v, t)\) where \(\omega \in 2 \pi c_1(X)\) is a K\"ahler metric, \(v\) is a holomorphic vector field, and \(t \in [0,1]\), such that
\[
\Ric(\omega) - \mathcal{L}_v \omega = t \omega + (1-t) \omega_0
\]
When \(t = 0\) we omit it from the notation and call \((\omega,v)\) a K\"ahler-Ricci soliton. Similarly when \(v\) is trivial we call \((\omega,t)\) a twisted K\"ahler-Einstein metric. When both hold then we talk about \(\omega\) being a K\"ahler-Einstein metric.
\end{definition}
In Section~\ref{sec:eqKstab} we will describe various criteria for the existence of such metrics, but to do so we must first recall some basic tools and language from algebraic and symplectic geometry.
\section{Algebraic and symplectic tools} \label{basics}
In this section we give some definitions from algebraic and symplectic geometry as we will be understanding them throughout the rest of the thesis. In particular we recall some basic geometry invariant theory, which is needed for the arguments in Chapter~\ref{chap:gav}.
\subsection{The algebraic torus} \label{algtorus}
Fix an algebraic torus \(T = (\CC^*)^k\). We have mutually dual character and cocharacter lattices:
\[
M := \Hom(T,\CC^*), \ N = \Hom(\CC^*,N),
\]
respectively. We denote the associated vector spaces by:
\[
M_\mathbb{K} := M \otimes_\ZZ \mathbb{K}, \ N_\mathbb{K} := N \otimes_\ZZ \mathbb{K},
\]
for \(\mathbb{K} = \QQ, \RR\). There is a perfect pairing \(M \times N \to \ZZ\) which extends to a bilinear pairing \(M_\mathbb{K} \times N_\mathbb{K} \to \mathbb{K}\). We may make the identification:
\[
T \cong \spec \CC[M] \cong N \otimes \CC^*.
\]
Finally recall that we may identify the real Lie algebra \(\mathfrak{k}\) of the maximal compact subtorus \(K \subset T\) as \( N_\RR = N \otimes_\ZZ \RR.\)
\subsection{Linearizations} \label{basics:linearizations}
Suppose we have an algebraic group \(G\) acting algebraically on a scheme or variety \(X\). A lift of the this action to a line bundle \(L\) on \(X\) is known as a linearization. Linearizations are used in geometric invariant theory to give a good definition of a quotient of \(X\) by the \(G\)-action.
\begin{definition}
Let \(X\) be a projective scheme together with an action \( \lambda : G \times X \to X\) of a reductive algebraic group \(G\). A linearization of the action \(\lambda\) on \(L\) is an action \(\tilde{\lambda}\) on \(L\) such that:
\begin{itemize}
\item The projection \(\pi\) is \(G\)-equivariant, \(\pi \circ \tilde{\lambda} = \lambda \circ \pi \)
\item For \(g \in G\) and \(x \in X\), the induced map \(L_x \mapsto L_{g \cdot x}\) is linear.
\end{itemize}
\end{definition}
%
%
%
Note a linearization to \(L\) naturally induces linearizations to \(L^\vee\) and \(L^{\otimes r}\) for any \(r \in \mathbb{N}\).
%
%
%
\begin{example}
A linearization of the trivial bundle on a projective variety \(X\) must be of the form
\[
g \cdot (x,z) = (g \cdot x, \chi(x,z)z)
\]
for some \(\chi \in H^0(G \times X, \mathcal{O}_{G \times X}^*) \cong H^0(G, \mathcal{O}_G^*) = \mathfrak{X}(G).\)
\end{example}
The above example tells us that any two linearizations \(\lambda_1,\lambda_2\) of an action to the same line bundle differ by multiplication by some character \(\chi\) of \(G\): fiberwise we have \(\tilde{\lambda}_1 = \chi(x,z) \tilde{\lambda}_2\). Thus, when \(G \cong T\) is an algebraic torus we may identify the set of linearizations with the character lattice \(M\).
\begin{example}
Recall that an action of \(G\) on \(X\) induces a canonical linearization on the tangent and cotangent bundles of \(X\), and so induces a canonical linearization on the anti-canonical bundle \(-K_X\) as the top exterior power of the cotangent bundle.
\end{example}
\subsection{Hamiltonian actions and moment maps} \label{basics:momentmaps}
Here we recall some basic notions of Hamiltonian actions and moment maps. We will follow conventions of \cite{da2006symplectic} and \cite{berman2014complex}. We illustrate the theory with the case of an algebraic torus action. Suppose that \((X,\omega)\) is a symplectic manifold.
\begin{definition}
Let \(\theta: X \to \RR\) be a smooth function. A vector field \(v\) such that \(\iota_v \omega = d \theta\) is called a Hamiltonian vector field, with Hamiltonian function \(\theta\).
\end{definition}
\begin{definition}
Let \(K\) be a real Lie group, with Lie algebra \(\mathfrak{k}\), acting smoothly on \(X\). This action is said to be Hamiltonian if there exists a map \(\mu: X \to \mathfrak{k}^*\), known as the moment map of the action, such that:
\begin{itemize}
\item For any \(\xi \in \mathfrak{k}\) the map \(\mu^\xi : X \to \RR\) given by \(\mu^\xi(p) := \langle \mu(p), \xi \rangle \) is a hamiltonian function for the vector field \(v\) generated by the one-parameter subgroup \(\exp(t \xi) \subset K\).
\item The map \(\mu\) is equivariant with respect to the action of \(K\) on \(X\) and with respect to the coadjoint action.
\end{itemize}
\end{definition}
\begin{example}
Let \(X \subseteq \PP^N\) be a nonsingular complex projective variety and let \(G\) be reductive algebraic group acting effectively on \(\PP^N\), restricting to an action on \(X\). Let \(K\) be the maximal compact subgroup in \(G\), with Lie algebra \(\mathfrak{k}\). The action of \(G\) is given by a representation \(\rho: G \to \text{GL}(N+1)\), and by choosing appropriate coordinates we may assume \(K\) maps to \(U(N+1)\) and so preserves the Fubini-Study form. It can be checked that a moment map \(\mu: X \to \mathfrak{k}^*\) for the \(K\)-action is given by:
\begin{equation}\label{eq:mu}
\mu([x]) \cdot a := \frac{x^t \rho_*(a) \hat{x}}{ |x|^2},
\end{equation}
where \(x\) is any representative of \([x] \in X \subseteq \PP^N\). A different choice of linearization in this setting corresponds to multiplying \(\rho\) by some character \(\chi \in \mathfrak{X}(G)\). Since \(\chi(K)\) is compact, it sits inside \(S^1 \subset \CC^*\), and hence we do not need to change coordinates when considering the effect on the moment map. When we plug this into (\ref{eq:mu}) we see that we have translated the moment map by \(\chi \in \mathfrak{X}(G) \otimes \RR \cong \mathfrak{k}^*\). Moreover, taking the \(r\)th power of \(L\) corresponds to scaling the moment map by a factor of \(r\). This gives a correspondence between rational elements
\[
\chi \in \mathfrak{X}(G) \otimes \QQ \subset \mathfrak{k}^*
\]
and linearizations of powers of \(L\).
\end{example}
\begin{example}
Suppose \(G = T\) is an algebraic torus with character and cocharacter lattices \(M,N\) respectively. Then \(\rho\) is a diagonal matrix of characters \(u_0,\dots,u_{N}\) and we obtain:
\[
\mu([x]) = \frac{\sum_{j=0}^N |x_i|^2 u_i}{|x|^2} \in M
\]
Then, by Atiyah, \cite{atiyah1982convexity}, and Guillemin-Sternberg, \cite{guillemin1982convexity}, the image of \(\mu\) is a convex polytope \(P \subset M\). Here we see that for each one-parameter subgroup \(w \in N\) we have Hamiltonian function:
\[
\theta_w([x]) = \langle \mu([x]), w \rangle
\]
\end{example}
\subsection{Chow and GIT quotients} \label{basics:Chowquotients}
Here we recall the definition of GIT, Chow, and limit quotients of a projective variety by a reductive algebraic group \(G\). We also explain how, when \(G\) is a torus, they may be explicitely calculated via the Kempf-Ness theorem, and recall how GIT quotients behave under smooth blowup. The material here is used in Chapter~\ref{chap:gav}, where we give an exposition of the results of \cite{cable2019general}. Thus, the material here may also be found in the preliminary sections of \cite{cable2019general}.
\subsubsection{GIT quotients}
Recall the basic setup of Mumford's geometric invariant theory, which provides a method for finding geometric quotients on open subsets of a scheme \(X\) when the acting algebraic group \(G\) is reductive.
%
%
%
In \cite{mumford1994} Mumford introduced the notion of a good categorical quotient, which can be shown to be unique if it exists.
%
%
%
\begin{definition}
A surjective \(G\)-equivariant morphism \(\pi : X \to Y\) is a good categorical quotient if the following hold:
\begin{enumerate}
\item We have \(\mathcal{O}_Y = (\pi_* \mathcal{O}_X)^G\);
\item if \(V\) is a closed \(G\)-invariant subset of \(X\) then \(\pi(V)\) is closed;
\item if \(V,W\) are closed \(G\)-invariant subsets of \(X\) and \(V \cap W = \emptyset\) then we have \(\pi(V) \cap \pi(W) = \emptyset\).
\end{enumerate}
\end{definition}
%
%
%
Good quotients do not always exist for a given scheme \(X\), but we might hope that there exists some dense open subset of \(X\) which does admit a good quotient. Consider the affine case, where \(X = \spec A\). For \(G\) reductive then it can be shown that \(X \sslash G : = \spec A^G\) is a good categorical quotient.
The same ansatz works in the projective case once we make a choice of a lift of the action to the ring of sections of a given ample line bundle. This choice is known as a linearization of the group action.
%
%
%
%
%
%
A linearization \(u\) of a group action \(G\) on \(X\) to \(L\) induces an action of \(G\) on the ring of sections \(R(X,L) := \bigoplus_{j \ge 0} H^0(X,L^{\otimes j}) \). Consider the scheme \(X \sslash_u G := \proj R(X,L)^G\). Note we have a birational map from \(X\) to \(X \sslash_u G\), defined precisely at \(x \in X\) such that there exists some \(m> 0 \) and \(s \in R(X,L)^G_m\) such that \(s(x) \neq 0\). Such a point is said to be semi-stable. If in addition \(G \cdot x\) is closed and the stabilizer \(G_x\) is dimension zero, the point \(x\) is said to be stable. The set of semi-stable and stable points will be denoted by \(X^{ss}(u)\) and \(X^{s}(u)\) respectively.
%
%
%
\begin{lemma}[{\cite[Chapter 1, Section 4]{mumford1994}}]
The canonical morphism \(X^{ss}(u) \to X\sslash_u G := \proj R(X,L)^G \) is a good categorical quotient.
\end{lemma}
\subsubsection{Kempf-Ness approach to GIT quotients}
One approach to calculating GIT quotients is via the Kempf-Ness theorem. Let \(X \subseteq \PP^N\) be a nonsingular complex projective variety and let \(G\) be reductive algebraic group acting effectively on \(\PP^N\), restricting to an action on \(X\). Let \(K\) be the maximal compact subgroup in \(G\), with Lie algebra \(\mathfrak{k}\). The action of \(G\) is given by a representation \(\rho: G \to \text{GL}(N+1)\), and by choosing appropriate coordinates we may assume \(K\) maps to \(U(N+1)\) and so preserves the Fubini-Study form. It can be checked that a moment map \(\mu: X \to \mathfrak{k}^*\) is given by:
\begin{equation}\label{eq:mu}
\mu([x]) \cdot a := \frac{x^t \rho_*(a) \hat{x}}{ |x|^2}
\end{equation}
Where \(x\) is any representative of \([x] \in X \subseteq \PP^N\). Note we are now in the situation of the previous subsection, with \(L = \mathcal{O}_X(1)\) under the embedding \(X \subseteq \PP^N\). This moment map is unique up to translations in \(\mathfrak{k}^*\). A different choice of linearization in this setting corresponds to multiplying \(\rho\) by some character \(\chi \in \mathfrak{X}(G)\).
Since \(\chi(K)\) is compact it sits inside \(S^1 \subset \CC^*\), and hence we do not need to change coordinates when considering the effect on the moment map. When we plug this into (\ref{eq:mu}) we see that we have translated the moment map by \(\chi \in \mathfrak{X}(G) \otimes \RR \cong \mathfrak{k}^*\). Moreover, taking the \(r\)th power of \(L\) corresponds to scaling the moment map by a factor of \(r\). This gives a correspondence between rational elements \(\chi \in \mathfrak{X}(G) \otimes \QQ \subset \mathfrak{k}^*\) and linearizations of powers of \(L\).
\begin{example}
Suppose \(G = T\) is an algebraic torus with character and cocharacter lattices \(M,N\) respectively. Then \(\rho\) is a diagonal matrix of characters \(u_0,\dots,u_{N}\) and we obtain:
\[
\mu([x]) = \frac{\sum_{j=0}^N |x_i|^2 u_i}{|x|^2} \in M
\]
Then, by Atiyah, \cite{atiyah1982convexity}, and Guillemin-Sternberg, \cite{guillemin1982convexity}, the image of \(\mu\) is a convex polytope \(P \subset M\).
\end{example}
%
%
%
We will make use of the following theorem of Kempf and Ness. A proof is given in \cite[Chapter 8]{mumford1994}. See also the original work \cite{kempf1979}.
\begin{namedthm}{Kempf-Ness Theorem}[{\cite[Theorem 8.3]{kempf1979}}]\label{thm:KN}
Let \(X \subseteq \PP^N\) be a nonsingular complex projective variety and let \(G\) be reductive algebraic group acting effectively on \(\PP^N\), restricting to an action on \(X\). Consider a linearization of some power of \(L\) corresponding to a rational element \(u \in \mathfrak{k}^*\).
\begin{enumerate}
\item \(X^{ss}(u) = \{ x \in X | \overline{Gx} \cap \mu^{-1}(u) \neq \emptyset \} \). \\
\item The inclusion of \(\mu^{-1}(u)\) into \(X^{ss}(u)\) induces a homeomorphism
\[
\mu^{-1}(u)/K \to X\sslash_u G
\]
where \(\mu^{-1}(u)/K\) is endowed with the quotient topology induced from the classical (closed submanifold topology) on \(\mu^{-1}(u)\), and \(X \sslash_u G\) is endowed with its classical (complex manifold) topology
\end{enumerate}
\end{namedthm}
%
%
%
We can use Theorem~\ref{thm:KN} to calculate GIT quotients by inspection. To be explicit, suppose \(\mu^{-1}(u)/K\) has the structure of a complex projective variety and \(q: X^{ss}(u) \to \mu^{-1}(u)/K\) is a \(G\)-invariant morphism which restricts to the topological quotient map on the moment fibre, such that \(q_* \mathcal{O}_X^G = \mathcal{O}_Y\). The following fact is probably well known, but we prove it here for the reader's convenience.
\begin{lemma}\label{lem:catquot}
The morphism \(q\) is a good categorical quotient, and hence is isomorphic to the GIT quotient map \(X \to X\sslash_u G\).
\end{lemma}
%
%
%
\begin{proof}
It is enough to show that \(q\) sends closed \(G\)-invariant subsets to closed subsets, and disjoint pairs of closed invariant subsets to disjoint pairs of closed subsets.
Firstly suppose that \(V\) is a \(G\)-invariant Zariski-closed subset of \(X\). Then \(q(V) = q(V \cap \mu^{-1}(u))\), and \(V \cap \mu^{-1}(u)\) is \(K\)-invariant and closed in the classical topology of \(\mu^{-1}(u)\). This implies that \(q(V)\) is closed in the classical topology on \(\mu^{-1}(u)/K \simeq X\sslash_u G\). But \(q(V)\) is constructable, as the image of a Zariski-closed subset of \(X\), and so we may conclude that \(q(V)\) is Zariski-closed in \(\mu^{-1}(u)/K \simeq X\sslash_u G\).
Now suppose \(V,W\) are \(G\)-invariant and Zariski-closed in \(X\), with \(x \in V\) and \(y \in W\) such that \(q(x) = q(y)\). By \ref{thm:KN} we may take \({x'} \in \overline{Gx} \cap \mu^{-1}(u), \ {y'} \in \overline{Gy} \cap \mu^{-1}(u)\) such that \(q({x'}) = q({y'})\). These two points lie in the same \(K\)-orbit. By the \(G\)-invariance of \(V,W\) we have \(V \cap W \neq \emptyset\).
\end{proof}
%
%
%
%
%
%
%Consider the action of an algebraic torus \(T\) on complex projective space \(\PP^n\). Suppose we have some subvariety \(X \subseteq \PP^n\) invariant under the \(T\) action. As usual we have character and cocharacter lattices \(M,N\) of \(T\). Putting homogeneous coordinates \(z_i\) on \(\PP^n\) suppose the action is given by weight \(u_i \in M\) on \(z_i\). A moment map for this action on \(\PP^n\) is given by
%\[
%[z_0:\dots : z_n] \mapsto \frac{\sum_i |z_i|^2 u_i}{\sum |z_i|^2}
%\]
%Any other moment map differs by a character \(u \in M \). The restriction, \(\mu, \) of this moment map to \(X\) serves as a moment map on \(X\). The image of \(X\) under \(\mu\) is a convex polytope \(P \subset M \).
%\begin{theorem}[ Cohomology of...]
%Take \(u \in M\). If \(x \in \mu^{-1}(u) \) then
%\[
%T \cdot x \cap \mu^{-1}(u) = S \cdot x
%\]
%\end{theorem}
%\begin{theorem}
%\end{theorem}
\subsubsection{GIT quotients under smooth blowup}
Here we recall some results from \cite{kirwan}, which we will use in the proof of Theorem~\ref{thm:KE2}. Let \(G\) be a reductive group acting on \(X\). Let \(L\) be an ample \(G\)-invariant line bundle on \(X\). Fix some linearization of the \(G\)-action to \(L\). Suppose \(V\) be a smooth closed \(G\)-stable subvariety of \(X\), defined by some ideal sheaf \(\mathcal{J}_V\). Let \(f:W \to X\) be the blow-up of \(X\) along \(V\).
The goal is to construct a linear action on \(W\) lifting the action on \(X\), and describe the GIT quotient \(W^{ss} \to W \sslash G\) in terms of \(X^{ss} \to X \sslash G\) and \(f\). First let us construct an ample line bundle on \(W\). Let \(E\) be the exceptional divisor of the map \(f\). Set \(L_d := f^* L^{\otimes d} \otimes \O(-E)\). For sufficiently large \(d\), \(L_d\) is ample.
Since \(E \cong \PP(N_{V,X})\) and \(\mathcal{O}(-E)_{|E} \cong \mathcal{O}_{\PP(N_{V,X})}(1)\) then the natural action of \(G\) on \(N_{V,X}\) induces an action on \(\mathcal{O}(-E)_{|E}\). We have \(W \backslash E \cong X \backslash V\) and \(\mathcal{O}(-E)_{|W \backslash E}\) is the trivial line bundle, so admits the product action. The action of \(G\) on \(L\) lifts to \(f^* L^{\otimes d} \), and so we obtain a linear action on \(L_d\). By \cite[]{kirwan}, for sufficiently large \(d\) we have \(W^{ss} \subset X^{ss}\). We have the following result:
\begin{lemma}[ {\cite[Lemma 3.11]{kirwan}}]
If \(d\) is a sufficiently large multiple of \(e\) then the GIT quotient \(W \sslash G\) associated to the linearization described above is the blowup of \(X \sslash G\) along the image \(V \sslash G\) of \(V\) in \(X \sslash G\). In particular if \(V \sslash G\) is a divisor on \(X \sslash G\) then \(W \sslash G \cong X \sslash G\).
\end{lemma}
\subsubsection{Chow and limit quotients}
Recall the definition of the Chow quotient, as introduced in \cite{kapranov1993}. If \(G\) is any connected linear algebraic group and \(X\) is a projective \(G\)-variety, then orbit closures of points are generically of the same dimension and degree, and so define points in the corresponding Chow variety. The Chow quotient of the \(G\)-action on \(X\) is the closure of this set of points.
We now recall the definition of the limit quotient, from \cite{mumford1994}. The limit quotient is discussed in detail in \cite{baker2012}. Let \(G\) be a reductive algebraic group, and \(X\) a projective \(G\)-variety. Suppose there are finitely many sets of semi-stable points \(X_1,\dots,X_r\) arising from \(G\)-linearized ample line bundles on \(X\). Whenever \(X_i \subseteq X_j\) holds, there is a dominant projective morphism \(X_i \sslash G \to X_j \sslash G\) which turns the set of GIT quotients into an inverse system. The associated inverse limit \(Y\) admits a canonical morphism \(\bigcap_{i=1}^r X_i \to Y\). The closure of the image of morphism is the limit quotient.
When \(G\) is an algebraic torus there are indeed finitely many semi-stable loci. Moreover, by \cite[Corollary 2.7]{baker2012}, we may calculate the limit quotient by taking the inverse limit of the subsystem obtained by only considering linearizations of powers of one fixed ample line bundle \(L\).
%
%
%
In \cite[Proposition 2.5]{baker2012} it is shown that the Chow quotient and limit quotient coincide when \(G\) is an algebraic torus.
\begin{definition} \label{def:chowpair}
Let \(X\) be a \(T\)-variety. Let \(\pi:X \dashrightarrow Y\) be the Chow quotient map of \(X\) by its torus action. For any prime divisor \(Z\) on \(Y\), the generic stabilizer on a component of \(\pi^{-1}(Z)\) is a finite abelian group. The maximal order across these components is denoted \(m_Z\). We may then define a boundary divisor for \(\pi\), given by:
\begin{equation} \label{boundary}
B := \sum_Z \frac{m_Z-1}{m_Z} \cdot Z
\end{equation}
We call the pair \((Y,B)\) the Chow quotient pair of the \(T\)-variety \(X\).
\end{definition}
\section{$T$-varieties} \label{prelim:Tvar}
In this section we briefly recall the theory of complex \(T\)-varieties. The best reference for more details is \cite{altmann2006polyhedral}. By a \(T\)-variety we will always mean a normal variety with an effective action of an algebraic torus \(T\). Let \(T,M,N\) be as described in \ref{algtorus}. Let us fix some additional definitions. By a \textit{polyhedron} we wil mean the intersection of finitely many closed affine halfspaces of \(N_\QQ\), or its dual \(M_\QQ\). By a \textit{cone} we mean the intersection of finitely many closed linear halfspaces of \(N_\QQ\) or its dual \(M_\QQ\). We will assume all cones are generated by primitive elements of their respective lattices.
\subsection{Toric varieties}
First, for context, let us recall the toric situation. A cone \(\sigma \subset N_\RR\) has a dual cone \(\sigma^\vee := \{m \in M_\RR | \langle m, n \rangle \ge 0 \ \forall n \in N_\RR\}\), and we may construct the normal toric variety \(\spec \CC[\sigma^\vee \cap M]\). The torus action is given by the \(M\)-grading of the algebra \(\CC[\sigma^\vee \cap M]\).
Conversely, given a normal affine toric variety \(X\) with algebraic torus \(T\), \(\CC[X]\) is a semigroup subalgebra of \(\CC[M]\) of the form \(\CC[\sigma^\vee \cap M]\) for some strongly convex rational polyhedral cone \(\sigma \subset N_\RR\). We write \(\TV(\sigma,N):= \spec \CC[\sigma^\vee \cap M] \). Face inclusions of cones correspond to equivariant open embeddings of varieties, and so from a complete fan of cones \(\Sigma\) we may construct a normal toric variety \(X_\Sigma\).
\begin{example} \label{toricexample}
Consider the variety \(X = \Bl_{z} \PP^1 \times \PP^1 \), where \(z = ( [1,0],[1,0]) \). We may lift the \(2\)-torus action on \(\PP^1 \times \PP^1 \) to \(X\). This action becomes effective once we replace the torus \(T\) by \(T/ \pm \text{Id}\). As a toric variety it is given by the fan \(\Sigma\) in Figure~\ref{toricfan}.
\begin{figure}[h]
\centering
\begin{tikzpicture}[scale=0.8]
\fill[color=lightgray,opacity=0.8] (0,0) -- (3,0) -- (3,3) --(0,3);
\fill[color=lightgray,opacity=0.8] (0,0) -- (-3,0) -- (-3,3) --(0,3);
\fill[color=lightgray,opacity=0.8] (0,0) -- (-3,0) -- (-3,-3);
\fill[color=lightgray,opacity=0.8] (0,0) -- (-3,-3) -- (0,-3);
\fill[color=lightgray,opacity=0.8] (0,0) -- (0,-3) -- (3,-3) -- (3,0);
\draw[->,thick] (0,0) -- (0,3);
\draw[->,thick] (0,0) -- (3,0);
\draw[->,thick] (0,0) -- (0,-3);
\draw[->,thick] (0,0) -- (-3,0);
\draw[->,thick] (0,0) -- (-3,-3);
\draw (0,0) node {\textbullet};
\foreach \i in {-3,...,3}{
\foreach \j in {-3,...,3}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\end{tikzpicture}
\caption{$\Sigma \subset N_\QQ$ }
\label{toricfan}
\end{figure}
\end{example}
We also recall the description of equivariant polarizations of toric varieties via convex polytopes. Suppose we have a complete fan \(\Sigma\), with rays \(\Sigma(1)\). Any Cartier divisor on \(X = \TV(\Sigma)\) is linearly equivalent to a \(T\)-equivariant one. Moreover we have the following exact sequence:
\begin{equation} \label{exactseq}
0 \to M \to \cadiv_T(X) \cong \ZZ^{\Sigma(1)} \to \Cl(X) \to 0.
\end{equation}
and relations \(\div(\chi^u) = \sum_{\rho \in \Sigma(1)} \langle u, v_\rho \rangle D_\rho\).
To any lattice polytope \(P \subset M_\QQ\) we can associate a normal projective toric variety \(X_P\) given by its dual fan, and an ample divisor \(D_P\) given by coefficients on the ray generators of \(\Sigma(1)\) specified by the equations of halfspaces defining \(P\).
\begin{example} \label{ex:toricpolytope}
Consider the the following lattice polytope:
\begin{figure}[h]
\centering
\begin{tikzpicture}[scale=1.5]
\draw[thick] (1,-1) -- (1,0) -- (0,1) -- (-1,1) -- (-1,-1) -- (-1,-1) -- (1,-1) ;
\fill[color=lightgray,opacity=0.8] (1,-1) -- (1,0) -- (0,1) -- (-1,1) -- (-1,-1) -- (-1,-1);
\draw (0,0) node {\textbullet};
\foreach \i in {-2,...,2}{
\foreach \j in {-2,...,2}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\end{tikzpicture}
\caption{$P \subset M_\QQ$}
\end{figure}
The normal fan \(\mathcal{N}(P)\) is that of \(\Bl_z \PP^1 \times \PP^1\) as in Example~\ref{toricexample}. We can calculate the corresponding divisor as
\[
D_P = - \sum_{\rho \in \Sigma(1)} D_\rho \sim -K_X.
\]
\end{example}
Conversely the exact sequence \ref{exactseq} may be used to construct a polytope from any equivariant polarization of a projective toric variety. Finally, recall that a polytope is called Fano if the origin is contained in its interior, and each vertex is a primitive lattice point of \(M\). Under the correspondence just described, Fano polytopes correspond exactly to anticanonical polarizations of toric varieties.
\subsection{Higher complexity $T$-varieties}
There is a successful program to extend the combinatorial dictionary of toric varieties to \(T\)-varieties of higher complexity. Roughly speaking, the combinatorial data lives over the Chow quotient of \(X\) by the \(T\)-action, so we have combinatorial data of dimension \(\dim T\), and algebreo-geometric data of dimension of the complexity of the torus action.
Recall that one may define an abelian semigroup structure on the set of all polyhedra via Minkowski addition:
\[
\Delta + \Delta' := \{ v + v' \ | v \in \Delta, \ v' \in \Delta' \}.
\]
It is well known that this gives a representation of any polyhedron \(\Delta = P + \sigma \) where \(P\) is a convex polytope and \(\sigma\). The cone \(\sigma\) is uniquely specified and is known as the tail cone of \(\Delta\). We will write \(\tail \Delta = \sigma\), and call \(\Delta\) a \(\sigma\)-tailed polyhedra in this situation.
The set of \(\sigma\)-tailed polyhedra form a semigroup \(\Pol_\QQ^+(N,\sigma)\) under Minkowski addition. We also include \(\emptyset\) here, with \(\emptyset + \Delta := \emptyset\) for any \(\Delta\). Recall the definition of a polyhedral divisor:
\begin{definition}
Let \(\sigma \subset N_\RR\) be a cone, and \(Y\) a normal projective variety over \(\CC\). A polyhedral divisor on \((Y,N)\) with tail cone \(\sigma\) is an element
\[
\mathcal{D} \in \Pol_\QQ^+(N,\sigma) \otimes \cadiv_\QQ^+(Y),
\]
where \(\cadiv_\QQ^+(Y)\) is the semigroup of effective \(\QQ\)-Cartier divisors on \(Y\). We define \(\tail \D = \sigma\).
\end{definition}
Let \(\Loc \D := Y \backslash \bigcup_{\D_Z = \emptyset} Z\). The evaluation of \(\D\) at \(u \in \sigma^\vee\) is defined to be the \(\QQ\)-Cartier divisor on \(Y\) given by:
\[
\D(u) := \sum_{\D \neq \emptyset} \min_{v \in \D_P} \langle v,u \rangle Z_{|\Loc \D}.
\]
\begin{definition}
A polyhedral divisor \(\D\), as defined above, is called a \(p\)-divisor if \(\D(u)\) is semiample for \(u \in \sigma^\vee\) and, in addition, big for \(u \in \text{int}(\sigma^\vee)\). Note if \(\Loc \D\) affine this is automatically satisfied.
\end{definition}
By \cite[Proposition 3.1]{hausen2018torus}, \(p\)-divisor defines an affine \(T\)-variety in the following manner. Note for \(u \in \sigma^\vee\) we have \(\D(u) + \D(u') \le \D(u+u')\). Consider the sheaf of \(N\)-graded algebras
\[
\mathcal{A} := \bigoplus_{w \in \sigma^{\vee}} \O_{\Loc \D} (\D(u)) \chi^u.
\]
Note the semiample and big conditions in the definition of a \(p\)-divisor ensure that the algebra \(H^0(\Loc \D, \A)\) is finitely generated. We obtain \(T\)-varieties:
\[
\tilde{\TV}(\D) := \spec_{\Loc \D} \mathcal{A} , \ \TV(\D) := \spec H^0(\Loc \D, \mathcal{A})
\]
together with a good quotient \(\tilde{\TV}(\D) \to Y\) (the Chow quotient) of the torus action, and an equivariant contraction \(r: \tilde{\TV}(\D) \to \TV(\D) \). The \(T\)-variety \(\TV(\D)\) remains unchanged if we pull back \(\D\) by some birational \(\varphi: Y' \to Y\). Moreover, modifying \(\D\) by an element in the image of the natural map:
\[
N \otimes_\ZZ \CC(Y)^* \to \Pol_\QQ^+(N,\sigma) \otimes \cadiv_\QQ^+(Y)
\]
does not change \(\TV(\D)\). In the converse direction, by \cite[Proposition 3.4]{hausen2018torus}, any affine \(T\)-variety \(X\) is of the form \(\TV(\D)\) for some \(p\)-divisor \(\D\).
\begin{example}
Let \(Y\) be a normal projective variety and \(D\) an ample integral Cartier divisor on \(Y\). Let \(\D = [1,\infty) \otimes D\). Then we see
\[
\mathcal{A} = \bigoplus_{n \in \ZZ^{\ge 0}} \O (n D) \chi^n,
\]
and so \(\tilde{\TV}(\D)\) is the total space of the line bundle \(\O(D)\).
\end{example}
\begin{example}
Any toric variety \(X\) with torus \(T\) may be considered a higher complexity \(T\)-variety with respect to any proper subtorus \(T' \subset T\). Such a subtorus is given by some surjection of character lattices \(p: M \to M'\). Writing \(M_Y\) for the kernel of \(p\) and denoting the dual surjection \(q:N \to N_Y\), we have mutually dual short exact sequences:
\begin{align*}
0 \xrightarrow{\qquad \ \qquad} N' \xrightarrow{\qquad \ \qquad}&N \xrightarrow{\qquad q \qquad} N_Y \xrightarrow{\qquad \ \qquad} 0 \\ &\ \\
0 \xleftarrow{\qquad \ \qquad} M' \xleftarrow{\qquad p \qquad}&M \xleftarrow{\qquad \ \qquad} M_Y \xleftarrow{\qquad \ \qquad} 0
\end{align*}
Suppose \(X = \TV(\delta)\) for some cone \(\delta \subset \NN_\QQ\). Let \(\sigma = \delta \cap N'_\QQ\). Then the surjection \(M \to M'\) induces a surjection \(\delta^\vee \to \sigma^\vee\). Let \(\Sigma\) be the coarsest fan which refines all images of faces of \(\delta\) under \(q\). It may be shown that \(Y = \TV(\Sigma)\) is the Chow quotient of \(X\) by \(T'\) up to normalization. Then \(X\) is the \(T'\)-variety associated to the \(p\)-divisor:
\[
\D^\delta := \sum_{a \in \Sigma(1)} \D_a \otimes \overline{\orb}(a)
\]
Where \(\D_a := q^{-1}(a) \cap \delta\), and \(\overline{\orb}(a)\) is the torus-invariant divisor on \(Y\) associated to the ray \(a\) under the usual orbit-cone correspondence.
\end{example}
\begin{example}
Consider the toric variety given by the following cone:
\begin{figure}[H] \label{fig:toricfan}
\centering
\begin{tikzpicture}[scale=1]
\draw[dotted,step=1,gray,] (-1,-1) grid (2,2);
\draw[->,thick] (0,0) -- (2,-1);
\draw[->,thick] (0,0) -- (2,2);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (2,-1) -- (2,2) -- (0,0);
\foreach \i in {-1,...,2}{
\foreach \j in {-1,...,2}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\draw (0,0) node {\textbullet};
\end{tikzpicture}
\caption{$\sigma \subset N_\QQ$}
\end{figure}
and subtorus action given by sublattice \(N' := \ZZ e_2 \subset N\). We may read off the downgrade \(p\)-divisor from the following diagram:
\begin{figure}[H]
\centering
\label{fig:data230b}
\resizebox{0.8\textwidth}{!}{
\begin{subfigure}[b]{0.25\linewidth}
\centering
\begin{tikzpicture}[scale=0.8]
\draw[->] (0,0) -- (0,2);
\draw[->] (0,0) -- (0,-2);
\draw (0,0) node {\textbullet};
\draw (0,1) node {\tiny{\textbullet}};
\draw (0,-1) node {\tiny{\textbullet}};
\draw (0,1) node[left] {\tiny{ $\{0\}$}};
\draw (0,-1) node[left] {\tiny{ $\{\infty\}$}};
\end{tikzpicture}
\caption*{$\sigma \subset N_\QQ$}
\end{subfigure}
\begin{subfigure}[b]{0.25\linewidth}
\centering
\begin{tikzpicture}[scale=0.8]
\draw[thick,->] (1,3) -- (-1,3);
\draw[white,->] (1,0) -- (-1,0);
\node[above] (A) at (0,3) {$p$};
\end{tikzpicture}
\end{subfigure}
\begin{subfigure}[b]{0.25\linewidth}
\centering
\begin{tikzpicture}[scale=0.8]
\draw[dotted,step=1,gray,] (-1,-2) grid (4,2);
\draw[->] (0,0) -- (4,-2);
\draw[->,thick,thick] (0,0) -- (2,2);
\draw[thick,->] (1,1) -- (4,1);
\draw[thick,->] (2,-1) -- (4,-1);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (4,-2) -- (4,2) -- (2,2) -- (0,0);
\foreach \i in {-1,...,4}{
\foreach \j in {-2,...,2}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\draw (0,0) node {\textbullet};
\end{tikzpicture}
\caption*{$\sigma \subset N_\QQ$}
\end{subfigure}
}
\end{figure}
and we see this downgraded toric variety is given by the \(p\)-divisor:
\[
\D = \{0\} \otimes [1, \infty) + \{\infty\} \otimes [2,\infty).
\]
\end{example}
One can define morphisms of \(p\)-divisors, and this correspondence turns out to be an equivlance of categories between affine \(T\)-varieties and \(p\)-divisors up to equivalence via the modifications mentioned above. We will not make use of the general data of a morphism of \(p\)-divisors but we will discuss the special case needed for globalization.
By \cite{altmann2008gluing} we have a method of gluing \(p\)-divisors in a natural way to construct general \(T\)-varieties, generalizing the notion of a fan of cones in the toric case. Suppose \(\D',\D\) are polyhedral divisors. We write \(\D' \le \D\) if \(\D_Z'\) is a face of \(\D_Z\) for each Cartier divisor \(Z\) on \(Y\).
Now suppose additionally that \(\D',\D\) are \(p\)-divisors. If \(\D' \le \D\) then we obtain graded morphisms of the respective sheaves of algebras \(\mathcal{A} \to \mathcal{A}'\) giving a \(T\)-equivariant morphism \(\TV(\D') \to \TV(\D)\). Unlike the toric case, this not necessarily an open embedding, as we see in the following example.
\begin{example}
Consider the setup in Example () with \(Y = \PP^1\) and \(D = \{\infty\}\). Then \(r: \tilde{\TV}(\D) \to \TV(\D)\) is isomorphic to the blow up of \(\A^2\) at the origin. If \(\D' = \emptyset \otimes \{\infty\}\) then \(\D' \le \D\) but \(\tilde{TV}(\D')\) intersects the exceptional divisor in \(\tilde{\TV}(\D)\), and so the induced map \(\TV(\D') \to \TV(\D)\) is not an open embedding.
\end{example}
\subsection{\(f\)-divisors and divisorial polytopes}
In this section we focus on the complexity one case, where \(T\)-equivariant open embeddings may be characterized using degree polyhedra of \(p\)-divisors:
\[
\deg \D := \sum_{y \in Y} \D_y.
\]
Note that \(\deg \D \neq \emptyset \iff \Loc \D = Y\). It is also not hard to see that a complexity one polyhedral divisor \(\D\) is a \(p\)-divisor if and only if the following two conditions hold:
\begin{enumerate}
\item \(\deg \D \subsetneq \tail \D\);
\item \(\D(w)\) has a principal multiple for \(w \in (\tail \D )^\vee\) such that \(w^\perp \cap \deg \D \neq 0\).
\end{enumerate}
We have the following characterization of open embeddings:
\begin{theorem}[\cite{ilten2009polarized}]
Let \(Y\) be a curve and \(\D,\D'\) polyhedral and \(p\)-divisors respectively, such that \(\D' \le \D\). Then \(\D'\) is a \(p\)-divisor and \(\TV(\D') \to \TV(\D) \) is an open embedding if and only if \(\deg \D' = \deg \D \cap \tail \D'\).
\end{theorem}
Note that in complexity one \(\Loc \D \) is always birational to \(\PP^1\). Therefore, via pullback, any complexity one normal affine \(\T\)-variety may be realized as \(\TV(\D)\) where \(\D\) is a \(p\)-divisor over \(Y = \PP^1\). Note that in this case that condition 2. above is automatically satisfied.
In complexity one, the object taking the place of a fan of cones is an \(f\)-divisor, first introduced in \cite{ilten2009polarized}. We recall this construction now. By a \textit{polyhedral decomposition} we mean a decomposition of \(N_\QQ\) into a collection of polyhedra, closed under intersection. A polyhedral decomposition has a \textit{tail fan}: a fan comprised of exactly the tail cones of the polyhedra in the decomposition. If \(\mathcal{G}\) is a polyhedral decomposition then we write \(\tail \mathcal{G}\) for its tail fan.
\begin{definition}
An \(f\)-divisor is a pair \( \mathcal{S} = \left( \sum_{y \in \PP^1} S_y \otimes \{y\}, \ \mathfrak{deg} \right)\), where:
\begin{enumerate}
\item \(S_y\) are polyhedral subdivisions sharing a tail fan \(\Sigma\).
\item \(\mathfrak{deg}\) is some subset of \(|\Sigma|\).
\item For any full-dimensional marked \(\sigma \in \Sigma\) then
\[
\D^\sigma := \sum \D_y^\sigma \otimes \{y\}
\]
is a \(p\)-divisor, where \(\D_y^\sigma\) is the unique polyhedron in \(S_y\) with \(\tail(\D_y^\sigma) = \sigma\), and we have \(\deg \D^\sigma = \mathfrak{deg} \cap \sigma\).
\item Only finitely many \(S_y\) may differ from the tailfan \(\Sigma\). We call the finite collection of \(S_y \neq \Sigma\) the \textit{non-trivial slices} of \(\mathcal{S}\).
\end{enumerate}
\end{definition}
In fact to construct \(\mathfrak{deg}\) from the rest of the data it is only necessary to know whether \(\deg \D^\sigma\) is empty or not for each \(\sigma\). We call those cones \(\sigma\) with \(\deg \D^\sigma \neq \emptyset\) the \textit{marked} tailcones of an \(f\)-divisor.
\begin{example} \label{ex:downgradedfan}
Let us describe the downgrade procedure for the toric variety from Example~\ref{toricexample}, with respect to the subtorus given by sublattice \(N' := \ZZ e_1 \subset N\). We may read off the downgrade \(f\)-divisor from the following diagrams:
\begin{figure}[H]
\centering
\label{fig:data230b}
\resizebox{0.8\textwidth}{!}{
\begin{subfigure}[b]{0.3\textwidth}
\centering
\begin{tikzpicture}
\draw[->] (0,0) -- (0,3);
\draw[->] (0,0) -- (0,-3);
\draw[dotted,step=1,gray,] (0,-3) grid (0,3);
\draw (0,0) node {\textbullet};
\draw (0,1) node {\tiny{\textbullet}};
\draw (0,-1) node {\tiny{\textbullet}};
\draw (0,1) node[left] {\tiny{ $\{0\}$}};
\draw (0,-1) node[left] {\tiny{ $\{\infty\}$}};
\foreach \i in {0}{
\foreach \j in {-3,...,3}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\end{tikzpicture}
\caption*{$\Sigma_Y \subset N_Y$}
\end{subfigure}
\begin{subfigure}[b]{0.3\textwidth}
\centering
\begin{tikzpicture}
\draw[thick,->] (1,4) -- (-1,4);
\draw[white,->] (1,0) -- (-1,0);
\node[above] (A) at (0,3) {$p$};
\end{tikzpicture}
\end{subfigure}
\begin{subfigure}[b]{0.3\textwidth}
\centering
\begin{tikzpicture}
\fill[color=lightgray,opacity=0.8]
(0,0) -- (3,0) -- (3,3) -- (0,3) -- cycle;
\fill[color=lightgray,opacity=0.8]
(0,0) -- (-3,0) -- (-3,3) -- (0,3) -- cycle;
\fill[color=lightgray,opacity=0.8]
(0,0) -- (-3,-3) -- (-3,0) -- cycle;
\fill[color=lightgray,opacity=0.8]
(0,0) -- (-3,-3) -- (0,-3) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (0,-3) -- (3,-3) -- (3,0) -- cycle;
%\draw[dotted,step=1,gray,] (-3,-3) grid (3,3);
\draw[->] (0,0) -- (0,3);
\draw[->] (0,0) -- (3,0);
\draw[->] (0,0) -- (0,-3);
\draw[->] (0,0) -- (-3,0);
\draw[->] (0,0) -- (-3,-3);
\draw[thick,->] (0,1) -- (3,1);
\draw[thick,->] (0,1) -- (-3,1);
\draw (0,1) node {\tiny{\textbullet}};
\draw[thick,->] (0,-1) -- (3,-1);
\draw[thick,->] (-1,-1) -- (-3,-1);
\draw[thick,->] (0,1) -- (3,1);
\draw[thick] (0,-1) -- (-1,-1);
\draw (0,-1) node {\tiny{\textbullet}};
\draw (-1,-1) node {\tiny{\textbullet}};
\draw (0,0) node {\textbullet};
\foreach \i in {-3,...,3}{
\foreach \j in {-3,...,3}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\end{tikzpicture}
\caption*{$\Sigma \subset N$}
\end{subfigure}
}
\end{figure}
and we see this downgraded toric variety is given by the \(f\)-divisor:
\begin{figure}[H]
\centering
\label{fig:data230b}
\resizebox{1\textwidth}{!}{
\begin{subfigure}[b]{0.5\linewidth}
\centering
\begin{tikzpicture}[scale=1]
\draw[thick,->] (0,0) -- (3,0);
\draw[thick,->] (0,0) -- (-3,0);
\draw (0,0) node {\textbullet};
\end{tikzpicture}
\caption*{$S_{0}$}
\end{subfigure}
\begin{subfigure}[b]{0.5\linewidth}
\centering
\begin{tikzpicture}[scale=1]
\draw[thick,->] (0,0) -- (3,0);
\draw[thick,->] (-1,0) -- (-3,0);
\draw[thick] (-1,0) -- (0,0);
\draw (-1,0) node {\tiny{\textbullet}};
\draw (0,0) node {\textbullet};
\end{tikzpicture}
\caption*{$S_{\infty} = \deg S$}
\end{subfigure}
}
\end{figure}
\end{example}
\begin{example}
Here we give an example of an \(f\)-divisor describing the complexity one threefold (2.30) from the list of Mori and Mukai \cite{mori1981classification}.
\begin{figure}[H]
\centering
\label{fig:fdivex}
\resizebox{0.9\linewidth}{!}{
\begin{subfigure}[b]{0.30\textwidth}
\centering
\begin{tikzpicture}[scale=0.8]
\fill[color=lightgray,opacity=0.8]
(0,0) -- (2,-2) -- (2,2) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (2,2) -- (0,2) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (0,2) -- (-1,2) -- (-1,0) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(-1,0) -- (-1,2) -- (-3,2) -- (-1,0);
\fill[color=lightgray,opacity=0.8]
(-1,0) -- (-3,2) -- (-3,-2) -- (-1,0);
\draw (0,0) node {\textbullet};
\fill[color=lightgray,opacity=0.8]
(0,0) -- (-1,0) -- (-3,-2) -- (2,-2) -- (0,0);
\draw[dotted,step=1,gray,] (-3,-2) grid (2,2);
\draw[->] (0,0) -- (0,2);
\draw[] (0,0) -- (-1,0);
\draw[->] (-1,0) -- (-1,2);
\draw[->] (0,0) -- (2,2);
\draw[->] (0,0) -- (2,-2);
\draw[->] (-1,0) -- (-3,2);
\draw[->] (-1,0) -- (-3,-2);
\foreach \i in {-3,...,2}{
\foreach \j in {-2,...,2}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\end{tikzpicture}
\caption*{$\mathcal{S}_0$}
\end{subfigure}
\begin{subfigure}[b]{0.30\textwidth}
\centering
\begin{tikzpicture}[scale=0.8]
\fill[color=lightgray,opacity=0.8]
(0,0) -- (0,-1) -- (2,-3) -- (2,2) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (2,2) -- (0,2) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (0,2) -- (-2,2) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (0,-1) -- (2,-3) -- (2,2) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(0,0) -- (-2,2) -- (-2,-3) -- (0,-1) -- (0,0);
\fill[color=lightgray,opacity=0.8]
(0,-1) -- (2,-3) -- (-2,-3) -- (0,-1);
\draw[dotted,step=1,gray,] (-2,-3) grid (2,2);
\draw[->] (0,0) -- (0,2);
\draw[] (0,0) -- (0,-1);
\draw[->] (0,0) -- (2,2);
\draw[->] (0,0) -- (-2,2);
\draw[->] (0,-1) -- (2,-3);
\draw[->] (0,-1) -- (-2,-3);
\draw (0,0) node {\textbullet};
\foreach \i in {-2,...,2}{
\foreach \j in {-3,...,2}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\end{tikzpicture}
\caption*{$\mathcal{S}_1$}
\end{subfigure}
\begin{subfigure}[b]{0.30\textwidth}
\centering
\begin{tikzpicture}[scale=0.8]
\fill[color=lightgray,opacity=0.8]
(0.5,0.5) -- (2,2) -- (2,-1) -- (0.5,0.5);
\fill[color=lightgray,opacity=0.8]
(0.5,0.5) -- (-1,2) -- (-1,-1) -- (0.5,0.5);
\fill[color=lightgray,opacity=0.8]
(0.5,0.5) -- (2,2) -- (0.5,2) -- (0.5,0.5);
\fill[color=lightgray,opacity=0.8]
(0.5,0.5) -- (-1,2) -- (0.5,2) -- (0.5,0.5);
\fill[color=lightgray,opacity=0.8]
(0.5,0.5) -- (2,-1) -- (-1,-1) -- (0.5,0.5);
\draw[dotted,step=1,gray,] (-1,-1) grid (2,2);
\draw[->] (0.5,0.5) -- (2,2);
\draw[->] (0.5,0.5) -- (0.5,2);
\draw[->] (0.5,0.5) -- (-1,2);
\draw[->] (0.5,0.5) -- (-1,-1);
\draw[->] (0.5,0.5) -- (2,-1);
\draw (0,0) node {\textbullet};
\foreach \i in {-1,...,2}{
\foreach \j in {-1,...,2}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\end{tikzpicture}
\caption*{$\mathcal{S}_{\infty}$}
\end{subfigure}
\begin{subfigure}[b]{0.40\textwidth}
\centering
\begin{tikzpicture}[scale=0.8]
\fill[color=lightgray,opacity=0.8]
(2,-2) -- (0.5,-0.5) -- (0.5,0.5) -- (2,2) -- (2,-2);
\fill[color=lightgray,opacity=0.8]
(2,-2) -- (0.5,-0.5) -- (-0.5,-0.5) -- (-2,-2) -- (2,-2);
\fill[color=lightgray,opacity=0.8]
(-2,-2) -- (-0.5,-0.5) -- (-0.5,0.5) -- (-2,2) -- (-2,-2);
\fill[color=lightgray,opacity=0.8]
(0.5,0.5) -- (0.5,2) -- (2,2) -- (0.5,0.5);
\fill[color=lightgray,opacity=0.8]
(-0.5,0.5) -- (-0.5,2) -- (-2,2) -- (-0.5,0.5);
\draw[dotted,step=1,gray,] (-2,-2) grid (2,2);
\draw[] (-0.5,-0.5) -- (0.5,-0.5);
\draw[->] (-0.5,-0.5) -- (-0.5,2);
\draw[->] (0.5,-0.5) -- (0.5,2);
\draw[->] (0.5,0.5) -- (2,2);
\draw[->] (-0.5,0.5) -- (-2,2);
\draw[->] (-0.5,-0.5) -- (-2,-2);
\draw[->] (0.5,-0.5) -- (2,-2);
\draw (0,0) node {\textbullet};
\foreach \i in {-2,...,2}{
\foreach \j in {-2,...,2}{
\draw (\i,\j) node {\tiny{$\circ$}};
}
}
\end{tikzpicture}
\caption*{$\deg \mathcal{S}$}
\end{subfigure}
}
\caption{\(f\)-divisor of a complexity one threefold}
\end{figure}
\end{example}
In complexity one there is a generalization of the correspondence between lattice polytopes and polarized projective toric varieties. First we recall the description of Cartier divisors on the \(T\)-variety \(\TV(\mathcal{S})\) of an \(f\)-divisor \(\mathcal{S}\) from \cite{petersen2011torus}:
\begin{definition}
A Cartier support function on an \(f\)-divisor \(\mathcal{S}\) is a sum:
\[
h = \sum_{y \in \PP^1} h_y \otimes y,
\]
where:
\begin{enumerate}
\item For all \(y \in \PP^1\), \(h_y: N_\QQ \to \QQ\) is a piecewise affine function with respect to the decomposition \(S_y\).
\item For all \(y \in \PP^1\) and \(v \in N\) if \(k \cdot v\) is a lattice point then \(k \cdot h_y(v) \in ZZ\)
\item For each \(y\), the linear part \(\text{lin}(h_y)\) is independent of \(y\).
\item We have \(h_y \neq \text{lin}(h_y)\) for at most finitely many \(y \in \PP^1\).
\item Writing \(h_{|_\sigma}(0) = \sum a_y \cdot y\), where \(a_y\) is the evaluation of the restriction of \(h_y\) to \(\mathcal{S}_y^\sigma\) at \(0\), then for every marked \(\sigma \in \tail \mathcal{S}\), the divisor \(h_{|_\sigma}(0)\) is principal.
\end{enumerate}
We write \(\CaSF(\mathcal{S})\) for the group of Cartier support functions on \(\mathcal{S}\).
\end{definition}
It is shown in \cite{petersen2011torus} that \(\CaSF(\mathcal{S})\) is isomorphic to the group of \(T\)-invariant Cartier Divisors on \(\TV(\mathcal{S})\). If \(h\) is a Cartier support function we denote the corresponding divisor by \(D_h\). We call \(h\) ample if \(D_h\) is ample.
From what we have recalled so far, an equivariantly polarized \(T\)-variety \((X,L)\) may be given by an \(f\)-divisor \(\mathcal{S}\) and a choice of ample Cartier support function \(h \in \CaSF(\mathcal{S})\). We finally recall the construction the novel results of this thesis make most use of, namely the dual picture. A divisorial polytope may be thought of to polarized complexity one \(T\)-varieties what a polytope is to a toric variety. Note the following definition differs from that of say \cite{suss2013fano} by a shift of a divisor of degree \(2\).
\begin{definition} \label{def:divpol}
A divisorial polytope is a function \(\Psi\) on a lattice polytope \(\Box \subset M_\RR\):
\[
\Psi: \Box \to \wdiv_\QQ \PP^1, \ u \mapsto \Sigma_{y \in \PP^1} \Psi_y(u) \cdot \{y\},
\]
such that:
\begin{itemize}
\item For \(y \in \PP^1\) the function \(\Psi_y: \Box \to \RR\) is the minimum of finitely many affine functions, and \(\Psi_y \equiv 0\) for all but finitely many \(y \in \PP^1\).
\item Each \(\Psi_y\) takes integral values at the vertices of the polyhedral decomposition its regions of affine linearity induce on \(\Box\).
\item \(\deg \Psi(u) > -2\) for \(u \in \text{int} (\Box)\);
\end{itemize}
\end{definition}
Let \(\Psi: \Box \to \cadiv_\QQ Y\) be a divisorial polytope. For \(y \in \PP^1\) consider the piecewise affine concave function on \(N_\QQ\) given by:
\[
\Psi^*_y(u) := \min_{v \in \Box}( \langle v,u\rangle - \Psi_P(u) ),
\]
Let \(S_y \) be the polyhedral subdivision induced by \(\Psi_y^*\), with tailfan \(\Sigma\). Let \(\mathfrak{deg}\) be the set of cones \(\sigma \in \Sigma\) such that \(\deg \circ \Psi _{|F_\sigma} \equiv 0\), where \(F_\sigma\) is the face of \(\Box\) where \(\langle \cdot, v \rangle\) takes its minimum value for \(v \in \sigma\). This defines an \(f\)-divisor \(\mathcal{S} = \sum_{y \in \PP^1} S_y \otimes \{y\}\), and \(\Psi_y^*\) is seen to be a Cartier support function on \(\mathcal{S}\). Moreover may reverse the above construction and obtain a divisoral polytope from any pair \(\mathcal{S},h\) where \(\mathcal{S}\) is an \(f\)-divisor and \(h\) is an ample Cartier support function.
For our results we are particularly interested in Fano \(T\)-varieties. We recall the notion of a Fano divisorial polytope. By \cite{}, Fano divisorial polytopes correspond to Fano \(T\)-varieties \((X,-K_X)\).
\begin{definition}
A divisorial polytope \(\Psi: \Box \to \wdiv_\QQ \PP^1\) is said to be Fano if additionally we have that:
\begin{itemize}
\item The origin is an interior lattice point of \(\Box\).
\item The affine linear pieces of each \(\Psi_y\) are of the form \(u \mapsto \frac{\langle v,u \rangle - \beta + 1}{\beta}\) for some primitive lattice element \(v \in N\);
\item Every facet \(F\) of \(\Box\) with \((\deg \circ \Psi _{|F}) \neq -2\) has lattice distance \(1\) from the origin.
\end{itemize}
\end{definition}
\begin{example} \label{ex:polytopedowngrade}
We can perform a downgrade operation on a polytope describing a toric variety. Given a polytope \(P \subset M_\QQ\) and a complexity one subtorus action given by some surjection \(p:M \to M'\), choose a section \(s: M' \to M\). Set \(\Box = p(P)\) and \(\Psi_0(u) := \max( p^{-1}(u) - s(u))\), \(\Psi_\infty := \min(p^{-1}(u) - s(u))\). We obtain a divisorial polytope \(\Psi := \Psi_0 \otimes \{0\} + \Psi_\infty \otimes \{\infty\}\). The corresponding \(T\)-variety is then isomorphic to the toric variety associated to \(P\).
\end{example}
\begin{example}
Consider the toric variety \(\Bl_z \PP^1 \times \PP^1\) with its anticanonical polarization. If we start with the corresponding polytope given in Example~\ref{ex:toricpolytope} and perform the downgrade operation, we end up with divisorial polytope:
\begin{figure}[H]
\centering
\label{fig:data230b}
\resizebox{0.8\textwidth}{!}{
\begin{subfigure}[b]{0.25\linewidth}
\centering
\begin{tikzpicture}[scale=1]
\draw[dotted] (-1,0) -- (1,0);
\draw[dotted] (0,-1) -- (0,1);
\draw[thick] (-1,0) -- (0,1) -- (1,1);
\draw (0,0) node {\tiny{\textbullet}};
\draw (-1,0) node[below] {\tiny{$0$}};
\draw (1,0) node[below] {\tiny{$1$}};
\draw (-1,0) node {\tiny{$[$}};
\draw (1,0) node {\tiny{$]$}};
\end{tikzpicture}
\caption*{$\{0\}$}
\end{subfigure}
\begin{subfigure}[b]{0.25\linewidth}
\centering
\begin{tikzpicture}[scale=1]
\draw[dotted] (-1,0) -- (1,0);
\draw[dotted] (0,-1) -- (0,1);
\draw[thick] (-1,1) -- (1,1);
\draw (0,0) node {\tiny{\textbullet}};
\draw (-1,0) node[below] {\tiny{$0$}};
\draw (1,0) node[below] {\tiny{$1$}};
\draw (-1,0) node {\tiny{$[$}};
\draw (1,0) node {\tiny{$]$}};
\end{tikzpicture}
\caption*{$\{\infty\}$}
\end{subfigure}
}
\end{figure}
It is easy to see, for example, that the resulting \(f\)-divisor from the operation Example~\ref{ex:polytopedowngrade} coincides with the downgrade \(f\)-divisor from Example~\ref{ex:downgradedfan}.
\end{example}
We conclide this section with a few pieces of terminology for divisorial polytopes. The push-forward of the measure induced by \(\omega\) is known as the Duistermaat-Heckman measure, independent of the choice of \(\omega\) and which we denote by \(\nu\). Denote the standard measure on \(M_\RR\) by \(\eta\).
\begin{definition} \label{def:divpoly2}
Let \(\Psi\) be a divisorial polytope.
\begin{itemize}
\item The degree of \(\Psi\) is the map \( \deg \Psi : \Box \to \RR\) given by \( u \mapsto \deg (\Psi(u))\).
\item The barycenter of \(\Psi\) is the point \(\bc(\Psi) \in \Box\) such that for all \(v \in N_\RR\):
\[
\langle \bc(\Psi), v \rangle = \int_\Box v \cdot \deg \Psi \ d \eta = \int_\Box v d \nu.
\]
Note by the second equality we see \(\bc(\Psi) = \bc_\nu(\Box).\)
\item The volume of \(\Psi\) is defined to be:
\[
\vol \Psi = \int_\Box \deg \Psi \ d \eta = \int_\Box d \nu.
\]
\end{itemize}
\end{definition}
\section{Equivariant $K$-stability} \label{sec:eqKstab}
In this section we recall definitions of \(K\)-stability. In summary the \(K\)-stability criteria are concerned with the positivity of certain numerical invariants associated to \textit{test configurations} of our original space. We do not go into technical detail about how \(K\)-stability relates to the existence of canonical metrics here, but give the definitions and theorems we will rely on later in the thesis.
\subsection{Twisted equivariant $K$-stability}
\label{prelim:twisted}
Here we recall notions of Twisted equivariant $K$-stability, following \cite{datar2016kahler}. Let \(X\) be a Fano manifold with the action of a complex reductive group \(G\) of automorphisms containing a maximal torus \(T\). Fix a \(T\)-invariant K\"ahler form \(\omega \in 2 \pi c_1(X)\) induced by the Fano condition. First we define test-configurations of \(X\).
\begin{definition}
A \(G\)-equivariant test configuration for \((X,L)\) is a \(\CC^*\)-equivariant flat family \(\X\) over the affine line equipped with a relatively ample equivariant \(\QQ\)-line bundle \(\mathcal{L}\), such that:
\begin{enumerate}
\item The \(\CC^*\)-action \(\lambda\) on \((\X, \mathcal{L})\) lifts the standard action on \(\mathbb{A}^1\);
\item The general fiber is isomorphic to \(X\) and \(\mathcal{L}\) is the relative anti-canonical bundle of \(\X \to \mathbb{A}^1\).
\item The action of \(G\) extends to \((\X,\mathcal{L})\) and commutes with the \(\CC^*\)-action \(\lambda\).
\end{enumerate}
\end{definition}
A test configuration with \(\X \cong X \times \mathbb{A}^1\) is called a product configuration. If such an isomorphism exists and is \(\CC^*\)-equivariant then we call the test configuration \textit{trivial}. Finally a test configuration with normal special fiber is called \textit{special}.
Suppose from now on \(G = T\) is a maximal torus in \(\Aut(X)\). We then have an induced \(T' = T \times \CC^*\)-action on the special fiber. The canonical lift of \(T'\)-action to \(-K_{\X_0}\) induces a canonical choice of moment map \(\mu: \X_0 \to M_\RR'\). The restriction of \(\lambda\) to \(\X_0\) is generated by the imaginary part of a \(T'\)-invariant vector field \(w\), and by an abuse of notation we also write \(w \in N'_\RR\) for the corresponding one-parameter subgroup. The moment map \(\mu\) then specifies Hamiltonian functions
\[
\theta_w := \langle \mu, w \rangle: \X_0 \to \RR,
\]
as we have seen in Section~\ref{basics:momentmaps}. We now recall a definition of the Donaldson-Futaki invariant in the twisted modified setting.
\begin{definition}
The twisted modified Donaldson-Futaki character of a special test configuration \((\X, \mathcal{L}) \) is given by:
\[
\DF_{t,\xi}(\X,\mathcal{L},w) = \DF_{\xi}(\X,\mathcal{L},w) + \frac{(1-t)}{V} \int_{\X_0} ( \max_{\X_0} \theta_w - \theta_w)e^{\theta_\xi} \ \omega^n .
\]
where \(V = \frac{1}{n!} \int_{\X_0} \omega^n\) is the volume of \(\X_0\), and \(\DF_\xi(\X,\L,w) = \frac{1}{V} \int_{\X_0} \theta_w \omega^n\) is the modified Donaldson-Futaki invariant of the configuration, in the form given in \cite[Lemma 3.4]{berman2014complex}.
\end{definition}
Note that if \((\X,\L)\) is a product configuration then we have \(\X_0 \cong X\). Assuming \(X\) is non-toric, in this case the maximality of \(T\) in \(\Aut(X)\) ensures that the restriction of \(\lambda\) to \(\X_0\) is a one parameter subgroup of \(T\), given by a choice of \(w \in N\). We will use the following definition of \(K\)-stability, as given in \cite{datar2016kahler}.
\begin{definition}
We say the triple \((X,t,\xi)\) is \(G\)-equivariantly \(K\)-semistable if \( \DF_{t,\xi}(\X,\mathcal{L},w) \ge 0\) for all \(G\)-equivariant special configurations \((\X,\mathcal{L},w)\). We say \((X,t,\xi)\) is \(K\)-stable if, in addition, equality holds precisely for product configurations.
\end{definition}
In the non-twisted case \(K\)-stability implies the existence of a K\"ahler-Ricci soliton:
\begin{theorem}[Berman-Witt-Nystrom] \label{thm:BWN}
If \((X,\xi)\) admits a K\"ahler-Ricci soliton then \((X,\xi)\) is \(K\)-stable.
\end{theorem}
In \cite{datar2016kahler} a result in the converse direction is obtained, which we will make heavy use of in Chapter~\ref{3}:
\begin{theorem}[{\cite[Proposition 10]{datar2016kahler}} ] \label{thm:DS}
Let \(X\) be a polarized Fano manifold, with K\"ahler form \(\omega\). Let \(t \in [0,1]\) and \(\xi\) be a soliton candidate for \(X\). If \((X,t)\) is \(G\)-equivariantly \(K\)-semistable then for all \(s <t\) there exists \(\omega_s \in 2 \pi c_1(X)\) such that \(\Ric(\omega_s) - \mathcal{L}_\xi \omega_s = s \omega_s + (1-s) \omega\).
\end{theorem}
\subsection{$K$-stability of $T$-varieties} \label{subsec:IS}
Here we review \(K\)-stability in complexity one. In \cite{ilten2015}, Ilten and Suess described non-product special test configurations for a \(T\)-variety of complexity one in terms of its divisorial polytope. Let \(X\) be a Fano complexity one \(T\)-variety, corresponding to the Fano divisorial polytope \(\Psi : \Box \to \PP^1\). Let \(M,N\) be the usual character and cocharacter lattices respectively. Let \(M' := M \times \ZZ\) and \(N' = \Hom(M',\ZZ)\) with associated vector spaces \(M_\QQ', N_\QQ'\).
\begin{theorem}[\cite{ilten2015}] \label{thm:iltensueskstab}
There exists some \(y \in \PP^1\) such that for at most one \(z \neq y\) the function \(\Psi_z\) has non-integral slope at any \(u \in \Box\), such that \(\X_0\) is the toric variety corresponding to the following polytope:
\begin{equation*}
\Delta_y := \Big\{(u,r) \in M_\QQ' \ \Big| \; u \in \Box,\; -1-\sum_{z \neq y} \Psi_z(u) \leq r \leq 1+\Psi_y(u)\Big\}.\label{eq:special-fibre}
\end{equation*}
Furthermore, the induced \(\CC^*\)-action on \(\X_0\) is given by the one-parameter subgroup of \(T' = T \times \CC^*\) corresponding to \(v'=(-mv,m) \in N'\), for some \(v \in N\). From the point of view of \(K\)-stability it is enough to consider only those configurations with \(m=1\).
\end{theorem}
By the definition of a divisorial polytope, there are only finitely many distinct polytopes \(\Delta_y\): Suppose \(\Psi\) corresponds to \(f\)-divisor \(\mathcal{S}\). For \(y\) such that \(\mathcal{S}_y \neq \tail \mathcal{S}\) we obtain a polytope \(\Delta_y\), but for all other \(y\) we observe that \(\Delta_y\) is independent of \(y\), equal to the polytope:
\[
\Delta_{\gen} := \Big\{(u,r) \in M_\QQ' \ \Big| \; u \in \Box,\; -1- \deg \Psi (u) \leq r \leq 1\Big\}
\]
\begin{definition} \label{def:configpoly}
The special configuration polytopes of a Fano \(T\)-variety are the polytopes \( \Delta_y \ (\text{ for } \mathcal{S}_y \neq \tail \mathcal{S} ) \text{ and } \Delta_{\gen} \) corresponding to normal toric varieties.
\end{definition}
See Figure~\ref{fig:degen230} and Figure~\ref{fig:degen323} for two examples of special configuration polytopes, and Appendix~\ref{appendix1} for the data to construct the special configurations we need for results in this thesis. As observed in \cite{ilten2015}, we also obtain a description of the (non-twisted) Donaldson-Futaki character of $(\X_0,\xi')$:
\begin{equation}
\DF_{t,\xi'}(\X,\mathcal{L},v') = \frac{1}{\vol \Delta_y}\left(\int_{\Delta_y} \langle u', v' \rangle \cdot e^{\langle u', \xi'\rangle} du'\right),\label{eq:futaki-character}
\end{equation}