-
Notifications
You must be signed in to change notification settings - Fork 0
/
holrenorm_v3.tex
2410 lines (2077 loc) · 150 KB
/
holrenorm_v3.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
\documentclass[10pt]{amsart}
\usepackage{macros,amsmath}
%Formatting
\linespread{1.25}
\usepackage{parskip}
\setlength{\parindent}{18pt}
\setlength{\parindent}{0cm}
\setcounter{tocdepth}{2}
\setcounter{secnumdepth}{5}
\def\brian{\textcolor{blue}{BW: }\textcolor{blue}}
\title{Renormalization for holomorphic field theories}
\author{Brian R. Williams}
\address{Northeastern University}
\email{brwilliams@northeastern.edu}
\urladdr{}
\date{}
\begin{document}
\maketitle
\begin{abstract}
We introduce the concept of a holomorphic field theory on any complex manifold in the language of the Batalin-Vilkovisky formalism.
When the complex dimension is one, this setting agrees with that of chiral conformal field theory.
Our main result concerns the behavior of holomorphic theories under renormalization group flow.
Namely, we show that holomorphic theories are one-loop finite.
We use this to completely characterize holomorphic anomalies in any dimension.
Throughout, we compare our approach to holomorphic field theories to more familiar approaches including that of supersymmetric field theories.
\end{abstract}
\tableofcontents
\section{Introduction}
From a mathematical perspective, much of the appeal of quantum field theory is that often theories depend naturally on input geometric data.
Furthermore, the usual quantities in quantum field theory such as expectation values and the partition function produce invariants of these underlying geometries.
An important and fruitful instance of this is the notion of a {\em topological field theory}.
Mathematically, a topological field theory can be defined on an arbitrary manifold of a fixed dimension.
In a precise way, topological theories depend naturally on the smooth structure of the manifold (or smooth structures on associated data such as a bundle).
A more complicated class of theories are Riemannian field theories, which, in addition to smooth structures, are sensitive to input metric data.
These theories have more refined invariants associated to them, such as the $\beta$-function, and are often more relevant to physical examples.
In this paper, we study a class of theories that lie between the aforementioned examples.
These {\em holomorphic theories} depend naturally on the complex structure of the underlying space-time.
The idea of studying holomorphic dependence in quantum field theory is certainly not a new one.
The most well-known case of this appears in complex dimension one with the notion of a chiral conformal field theory.
Here, the holomorphic structure shines most brightly through the {\em operator product expansion} (OPE) of chiral operators in the theory.
This says that the dependence on the product of operators on their relative position is holomorphic, even at the quantum level.
These operators combine to form a mathematical object called a vertex algebra.
Numerous calculations in conformal field theory reduce to algebraic manipulations at the level of vertex algebras.
Furthermore, on arbitrary algebraic curves, the phenomena of operator product expansions has been interpreted mathematically through the pioneering work of Beilinson and Drinfeld on chiral algebras \cite{BD}.
This is arguably one of the greatest successes of mathematics in describing a small, albeit important, class of field theories.
Past dimension one, in complex dimensions two, four and six, an approach to studying special types of holomorphic theories has appeared in the work of Nekrasov and collaborators \cite{NekThesis, NekChiral, NekCFT}.
There is a holomorphic version of Chern-Simons theory that has appeared in \cite{Popov1, Popov2}.
A holomorphic theory of gravity has been proposed in \cite{BCOV} and studied most recently in the formalism used here in the work of Costello and Costello-Li \cite{CL1,CosKos1, CosM}.
We will discuss the relationship of our approach to holomorphic field theory to these works throughout this paper.
The goal of this paper is two-fold.
In the first part the discussion is fairly formal.
After a short recollection of field theory in the Batalin-Vilkovisky formalism, we go on to define the definition of a holomorphic field theory on any complex manifold.
We characterize holomorphic deformations of holomorphic theories and provide numerous examples of these theories in the language we set up.
The second part of the paper proceeds to study quantizations of holomorphic field theories defined on $\CC^d$, for any $d \geq 1$.
Of course, studying properties of quantization is extremely theory-dependent.
Nevertheless, our main result says that when it comes to renormalization, holomorphic theories are generically well-behaved.
We show that the renormalization of a holomorphic theory on $\CC^d$ is {\em finite} for quantization at one-loop.
A more precise statement is given in Theorem \ref{thm: holrenorm3}.
The approach to quantum field theory we use follows Costello's theory of renormalization and the Batalin-Vilkovisky formalism developed in \cite{CosRenorm}.
In broad strokes, it says that to construct a full quantum field theory it suffices to define the theory at each energy (or length) scale and to ask that these descriptions be compatible as we vary the scale.
Concretely, this compatibility is through the {\em renormalization group (RG) flow} and is encoded by an operator $W(P_{\epsilon < L}, -)$ acting on the space of functionals.
The functional $W(P_{\epsilon < L},-)$ is defined as a sum over weights of graphs which is how Feynman diagrams appear in Costello's formalism.
The infamous infinities of quantum field theory arise due to studying behavior of theories at arbitrarily high energies (or small lengths).
In physics this is called the ultra-violet (UV) divergence.
Our result can be interpreted by saying that, at one-loop, holomorphic theories have no UV divergences.
Although we do not consider this topic in the present paper, a large collection of examples of holomorphic theories come from familiar physical theories.
Namely, holomorphic theories generically appear as minimal {\em twists} of supersymmetric theories.
These are more general than the topological twists considered by Witten in \cite{WittenTwist}.
Any supercharge $Q$ of a supersymmetric theory satisfying $Q^2 = 0$ allows one to construct a ``twist".
In some cases, where Clifford multiplication with $Q$ spans all translations such a twist becomes a topological theory (in the weak sense).
In any case, however, such a $Q$ defines a ``holomorphic twist" \cite{CostelloHolomorphic}, which results in the type of holomorphic theories we consider.
Regularization in supersymmetric theories, especially gauge theories, is notoriously difficult.
Our result implies that after twisting the analytic difficulties become much easier to deal with.
Consequently, facets of these theories, such as their anomalies, can be cast in a more algebraic framework.
For a recent discussion of holomorphic aspects of twists of supersymmetric theories see \cite{EagSab}.
In no way does this paper tell the complete story of holomorphic field theory.
A major future program of the author is to study the behavior of operators for holomorphic field theory, even in the case that the complex manifold is $X = \CC^d$.
In general, the operators of any quantum field theory form a {\em factorization algebra} \cite{CG1,CG2}.
For one-dimensional holomorphic theories, our formalism recovers the theory of chiral and vertex algebras \cite{BWVir, GGW, CG1}.
When $d \geq 2$ there is strong evidence that the factorization algebras of holomorphic theories combine to form some higher dimensional vertex algebra structure, where the OPE still varies holomorphically with respect to the relative location of the operators.
We will return to this in later publications.
\subsection{Acknowledgements}
The author thanks Owen Gwilliam for comments and suggestions he made on a previous version of this paper that appeared in the author's thesis.
The author would also like to thank Northwestern University, where he received support as a graduate student whilst most of this work took place.
In addition, the author enjoyed support as a graduate student research fellow under Award DGE-1324585.
\section{The definition of a holomorphic field theory}
The goal of this section is to define the notion of a holomorphic field theory.
This is a variant of Costello's definition of a theory in the Batalin-Vilkovisky formalism, which we will recall at a rapid pace in the first part of this section.
In crude summary, to arrive at the definition of a holomorphic field theory we modify the definition of an ordinary BV theory by inserting the word ``holomorphic" in front of most objects (bundles, differential operators, etc..).
By applying the Dolbeault complex in appropriate locations, we will recover Costello's definition of a theory, but with a holomorphic flavor, see Table \ref{table: holtoBV}.
\subsection{A recollection of the BV-BRST formalism}
In this section we will give an expedient review of the classical Batalin-Vilkovisky formalism.
We will also set up the requisite conventions and notations that we will use throughout this paper.
\subsubsection{Classical field theory} \label{sec: classical bv}
Classical field theory is a formalism for describing a physical system in terms of objects called {\em fields}.
Mathematically, the space of fields is a (most often infinite dimensional) vector space $\sE$.
Classical physics is described by the critical locus of a (usually real or complex valued) linear functional on the space of fields
\be\label{actionfnl}
S : \sE \to \RR \;\; {\rm or} \;\; \CC,
\ee
called the {\em action functional}.
The critical locus is the locus of fields that have zero variation
\be
{\rm Crit}(S) := \{\varphi \in \sE \; | \; \d S (\varphi) = 0\} .
\ee
A field $\varphi$ satisfying the equation $\d S (\varphi) = 0$ is said to be a {\em solution to the classical equations of motion}.
Even in the finite dimensional case, if the functional $S$ is not sufficiently well-behaved the critical locus can be still be highly singular.
The starting point of the classical Batalin-Vilkovisky formalism is to instead consider the {\em derived} critical locus.
To get a feel for this, we review the finite dimensional situation.
Let $M$ be a manifold, which is our ansatz for $\sE$ at the moment, and suppose $S : M \to \RR$ is a smooth map.
The critical locus is the intersection of the graph of $\d S$ in $T^*M$ with the zero section $0 : M \to T^*M$.
Thus, functions on the critical locus are of the form
\ben
\sO({\rm Crit}(S)) = \sO(\Gamma(\d S)) \tensor_{\sO(T^*M)} \sO(M) .
\een
The derived critical locus is a derived space whose dg ring of functions is
\ben
\sO({\rm Crit}^{h}(S)) = \sO(\Gamma(\d S)) \tensor^{\LL}_{\sO(T^*M)} \sO(M).
\een
We have replaced the strict tensor product with the derived one.
Using the Koszul resolution of $\sO(M)$ as a $\sO(T^*M)$-module one can write this derived tensor product as a complex of polyvector fields equipped with some differential:
\ben
\sO({\rm Crit}^h(S)) \simeq \left({\rm PV}^{-*}(M), \iota_{\d S}\right) .
\een
In cohomological degree $-i$ we have ${\rm PV}^{-i} (M) = \Gamma(M, \wedge^i TM)$ and $\iota_{\d S}$ denotes contraction with the one-form $\d S$ (which raises cohomological degree with our regrading convention).
With our grading convention we have $\sO(T^*[-1] M) = {\rm PV}^{-*}(M)$.
The space $\sO(T^*[-1]M)$ has natural shifted Poisson structure, which takes the form of the familiar Schouten-Nijenhuis bracket of polyvector fields.
The takeaway is that the derived critical locus of a functional $S : M \to \RR$ has the structure of a $(-1)$-shifted symplectic space.
This will be the starting point for our definition of a theory in the BV formalism in the general setting.
In all non-trivial examples the space of fields $\sE$ is infinite dimensional and we must be careful with what functionals $S$ we allow.
The space of fields we consider will always have a natural topology, and we will choose functionals that are continuous with respect to it.
We include a discussion of our convention for infinite dimensional vector spaces including duals and spaces of functionals in the Appendix.
In general, the space of fields of a field theory is equal to the space of smooth sections of a $\ZZ$-graded vector bundle $E \to X$ on a manifold $\sE = \Gamma(X, E)$.
The $\ZZ$-grading is the cohomological, or BRST \footnote{Named after Becchi, Rouet, Stora, Tyutin, for which our approach to field theory is greatly influenced by their original mathematical approach to quantization.}, grading of the theory.
\subsubsection{Local functionals}
The class of functionals $S : \sE \to \RR$ defining the classical theories we consider are required to be {\em local}, or given by the integral of a Lagrangian density.
We define this concept now.
Let $D_X$ denote the sheaf of smooth differential operators on $X$.
If $E$ is any graded vector bundle on $X$ let ${\rm Jet}(E)$ denote its bundle of $\infty$-jets.
This is a smooth vector bundle, albeit infinite rank, on $X$ whose fiber over $y \in X$ can be identified with
\ben
E_y \times \CC[[x_1, \ldots, x_n]] .
\een
Here, $\{x_i\}$ is a formal coordinate near $y$.
This object is given the natural structure of a pro object in the category of vector bundles.
We let $J(E)$ denote the associated sheaf of smooth sections.
It is well-known that ${\rm Jet}(E)$ is equipped with a natural flat connection rendering $J(E)$ with the structure of a smooth $D_X$-module.
In the Appendix we define the algebra of functions $\sO(\sE(X))$ on the space of global sections $\sE(X)$.
This is the completed symmetric algebra on the linear dual of $\sE(X)$, where the tensor product and dual are interpreted in the appropriate topological sense.
Likewise, there is the space of reduced functionals $\sO_{red}(\sE(X)) = \sO(\sE(X)) / \RR$.
It is the quotient of all functionals by the constant polynomial functions.
The space $\sO_{red}(J(E))$ inherits a natural $D_X$-module structure from $J(E)$.
We refer to $\sO_{red}(J(E))$ as the space of {\em Lagrangians} on the vector bundle $E$.
Every element $F \in \sO_{red}(J(E))$ can be expanded as $F = \sum_n F_n$ where each $F_n$ is an element
\ben
F_n \in {\rm Hom}_{C^\infty_X} (J(E)^{\tensor n}, C^\infty_X)_{S_n} \cong {\rm PolyDiff}(\sE^{\tensor n}, C^\infty(X))_{S_n}
\een
where the right-hand side is the space of polydifferential operators.
The proof of the isomorphism on the right-hand side can be found in Chapter 5 of \cite{CosRenorm}.
We refer to $\sO_{red}(J(E))$ as the (left) $D_X$-module of {\em Lagrangians} on the vector bundle $E$.
A local functional is given by a Lagrangian densities modulo total derivatives.
The mathematical definition is the following.
\begin{dfn} \label{dfn: local fnl}
Let $E$ be a graded vector bundle on $X$.
Define the sheaf of {\em local functionals} on $X$ to be
\ben
\oloc(\sE) = {\rm Dens}_X \tensor_{D_X} \sO_{red}(J(E)),
\een
where we use the natural right $D_X$-module structure on densities.
\end{dfn}
Note that we always consider local functionals coming from Lagrangians modulo constants.
We will not be concerned with local functions associated to constant Lagrangians.
From the expression for functionals in Lemma \ref{lem: fnls} we see that integration defines an inclusion of sheaves
\be\label{local inclusion}
i : \oloc(\sE) \hookrightarrow \sO_{red}(\sE_c) .
\ee
Often times when we describe a local functional we will write down its value on test compactly supported sections, then check that it is given by integrating a Lagrangian density, which amounts to lifting the functional along $i$.
\subsubsection{The definition of a classical field theory}
Before giving the definition, we need to recall what the proper notion of a shifted symplectic structure is in the geometric setting that we work in.
\begin{dfn}\label{dfn: symplectic}
Let $E$ be a graded vector bundle on $X$.
A $k$-{\em shifted symplectic structure} is an isomorphism of graded vector spaces
\ben
E \cong_{\omega} E^![k] = \left({\rm Dens}_X \tensor E^\vee\right)[k]
\een
that is graded anti-symmetric.
\end{dfn}
If $\omega^*$ is the formal adjoint of the isomorphism $\omega^* : E \cong E^![k]$, anti-symmetry amounts to the condition $\omega^* = - \omega$.
In general, $\omega$ does {\em not} induces a Poisson structure on the space of all functionals $\sO(\sE)$.
This is because, as we have seen above, elements of this space are given by distributional sections and hence we cannot pair elements with overlapping support.
The symplectic structure does, however, induce a Poisson bracket on {\em local} functionals. \footnote{Note that $\oloc(\sE)$ is not a shifted Poisson algebra since there is no natural commutative product.}
We will denote the bracket induced by a shifted symplectic structure by $\{-,-\}$.
We are now ready to give the precise definition of a classical field theory.
\begin{dfn}[\cite{CG2} Definition 5.4.0.3] \label{dfn: classical}
A {\em classical field theory} in the BV formalism on a smooth manifold $X$ is a $\ZZ$-graded vector bundle $E$ equipped with a $(-1)$-shifted symplectic structure together with a local functional $S \in \oloc(\sE)$ such that:
\begin{enumerate}
\item the functional $S$ satisfies the {\em classical master equation}
\ben
\{S, S\} = 0;
\een
\item $S$ is at least quadratic, so we can write it (in a unique way) as
\ben
S(\varphi) = \omega(\varphi, Q \varphi) + I(\varphi)
\een
where $Q$ is a linear differential operator such that $Q^2 = 0$, and $I \in \oloc(\sE)$ is at least cubic;
\item the complex $(\sE, Q)$ is elliptic.
\end{enumerate}
\end{dfn}
In the physics literature, the operator $Q$ is known as the linearized BRST operator, and $\{S,-\} = Q + \{I,-\}$ is the full BRST operator.
Ellipticity of the complex $(\sE,Q)$ is a technical requirement that will be very important in our approach to the issue of renormalization in perturbative quantum field theory.
The classical master equation is equivalent to
\ben
Q I + \frac{1}{2} \{I,I\} = 0 .
\een
A {\em free theory} is a classical theory with $I = 0$ in the notation above.
Thus, a free theory is a simply an elliptic complex equipped with a $(-1)$-shifted symplectic pairing where the differential in the elliptic complex is graded skew-self adjoint for the pairing.
Although the space $\sO(\sE)$ does not have a well-defined shifted Possoin bracket induced from the symplectic pairing, the operator $\{S,-\} : \sO(\sE) \to \sO(\sE)[1]$ {\em is} well-defined since $S$ is local by assumption.
By assumption, it is also square zero.
The complex of global classical observables of the theory is defined by
\ben
\Obs^{\cl}_{\sE}(X) = (\sO(\sE(X)), \{S,-\}) .
\een
This complex is the field theoretic replacement for functions on the derived locus of $S$ from the beginning of this section.
Although it does not have a $P_0$-structure, there is a subspace that does.
This is sometimes referred to as the {\em BRST} complex in the physics literature.
%Suppose that $E$ is the graded vector bundle underlying the data of a free theory in the BV formalism.
%It is shown in \brian{ref} \cite{CG2} that the inverse of the $(-1)$-shifted symplectic form induces a bracket $\{-,-\}$ of cohomological degree $+1$ on local functionals $\oloc(\sE)$.
%This bracket satisfies a graded version of the Jacobi identity, and is compatible with the BV differential $Q$.
%In summary, the shift of local functionals $\oloc(\sE)[-1]$ inherits the structure of a dg Lie algebra.
\subsubsection{A description using $L_\infty$ algebras}
There is a completely equivalent way to describe a classical field theory that helps to illuminate the mathematical meaningfulness of the definition given above.
The requisite concept we need to introduce is that of a {\em local Lie algebra} (or local $L_\infty$ algebra).
First, recall that an $L_\infty$ algebra is a modest generalization of a dg Lie algebra where the Jacobi identity is only required to hold up to homotopy.
The data of an $L_\infty$ algebra is a graded vector space $V$ with, for each $k \geq 1$, a $k$-ary bracket
\ben
\ell_k : V^{\tensor k} \to V[2-k]
\een
of cohomological degree $2-k$.
These maps are required to satisfy a series of conditions, the first of which says $\ell_1^2 = 0$.
The next says that $\ell_2$ is a bracket satisfying the Jacobi identity up to a homotopy given by $\ell_3$.
For a detailed definition see we refer the reader to \cite{StasheffDG, GetzlerLie}.
We now give the definition of a local $L_\infty$ algebra on a manifold $X$.
This has appeared in Chapter 4 of \cite{CG2}.
\begin{dfn}
A {\em local $L_\infty$ algebra} on $X$ is the following data:
\begin{itemize}
\item[(i)] a $\ZZ$-graded vector bundle $L$ on $X$, whose sheaf of smooth sections we denote $\sL^{sh}$, and
\item[(ii)] for each positive integer $n$, a polydifferential operator in $n$ inputs
\ben
\ell_n : \underbrace{\sL \times \cdots \times \sL}_{\text{$n$ times}} \to \sL[2-n]
\een
\end{itemize}
such that the collection $\{\ell_n\}_{n \in \NN}$ satisfy the conditions of an $L_\infty$ algebra.
In particular, $\sL$ is a sheaf of $L_\infty$ algebras.
\end{dfn}
The simplest example of a local Lie algebra starts with the data of an ordinary Lie algebra $\fg$.
We can then take the constant bundle $\ul{\fg}_X$ with fiber $\fg$.
The Lie bracket on $\fg$ extends to define the structure of a local Lie algebra.
In this case, the sheaf of Lie algebras is $C^\infty_X \tensor \fg$.
Another important example of a local Lie algebra is given by the Lie algebra of vector fields ${\rm Vect}(X)$ on a smooth manifold.
The Lie bracket of vector fields is a bidifferential operator on the tangent bundle and this equips the sheaf of sections with the structure of a sheaf of Lie algebras.
%We will study the holomorphic version of this local Lie algebra in Chapter \ref{chap: symmetries}.
Just as in the case of an ordinary graded vector bundle, we can discuss local functionals on a local Lie algebra $L$.
In this case, the $L_\infty$ structure maps give this the structure of a sheaf of complexes, providing a local version of the Chevalley-Eilenberg cochain complex.
Indeed, the $\infty$-jet bundle $J L$ is an $L_\infty$ algebra object in $D_X$-modules and so we can define the $D_X$-module of reduced Chevalley-Eilenberg cochains $\cred^*(J L)$.
Mimicking the definition above, we arrive at the following local version of Lie algebra cohomology that will come up again and again in this thesis.
\begin{dfn}
Let $L$ be a local Lie algebra.
The local Chevalley-Eilenberg cochain complex is the sheaf of cochain complexes
\ben
\cloc^*(\sL) = {\rm Dens}_X \tensor_{D_X} \cred^*(L) .
\een
We denote the global sections by $\cloc^*(\sL(X))$.
\end{dfn}
The {\em local cohomology} of a local Lie algebra is the cohomology of the local CE complex, which we will denote $H^*_{\rm loc}(\sL(X))$.
\begin{rmk}
We have already remarked that for a graded vector bundle $E$ there is an embedding $\oloc(\sE) \hookrightarrow \sO_{red}(\sE)$.
This translates to an embedding of sheaves of cochain complexes $\cloc^*(\sL) \hookrightarrow \cred^*(\sL_c)$ for any local Lie algebra $\sL$.
In the case of vector fields, there is a related cochain complex that has been studied extensively in the context of characteristic classes of foliations \cite{Fuks, Guillemin, LosikDiag, Bernstein}.
Suppose, for simplicity, that $X$ is a compact smooth manifold.
If ${\rm Vect}(X)$ is the Lie algebra of vector fields on $X$ then the (reduced) {\em diagonal cochain complex} is the subcomplex
\ben
{\rm C}^*_{\Delta,\rm red}({\rm Vect}(X)) \subset \cred^*({\rm Vect}(X))
\een
consisting of cochains $\varphi : {\rm Vect}(X)^{\tensor k} \to \CC$ satisfying $\varphi(X_1,\ldots,X_k) = 0$ if $\bigcap_{i=1}^k {\rm Supp}(X_i) = \emptyset$.
That is, the cocycle vanishes unless all of the supports of the inputs overlap nontrivially.
The inclusion of the local cochain complex $\cloc^*({\rm Vect}(X)) \subset \cred^*({\rm Vect}(X))$ factors through this subcomplex to give a sequence of inclusions
\ben
\cloc^*({\rm Vect}(X)) \hookrightarrow {\rm C}^*_{\Delta,\rm red}({\rm Vect}(X)) \hookrightarrow \cred^*({\rm Vect}(X)) .
\een
This is because the cochain of ${\rm Vect}(X)$ defined from a local cochain involves the integral of local operators applied to the inputs.
\end{rmk}
It turns out that the definition of a classical field theory can be repackaged in terms of certain structures on a local $L_\infty$ algebra.
The first piece of data we need to transport to the $L_\infty$ side is that of a symplectic pairing.
The underlying data of a local $L_\infty$ algebra $L$ is a graded vector bundle.
In Definition \ref{dfn: symplectic} we have already defined a $k$-shifted symplectic pairing.
On the local Lie algebra sign, we ask for $k=-3$ shifted symplectic structures that are also invariant for the $L_\infty$ structure maps.
Also, an important part of a classical field theory is ellipticity.
We say a local $L_\infty$ algebra is {\em elliptic} if the complex $(\sL, \d = \ell_1)$ is an elliptic complex.
\begin{prop}[\cite{CG2} Proposition 5.4.0.2]
The following structures are equivalent:
\begin{enumerate}
\item a classical field theory in the BV formalism $(\sE, \omega, S)$;
\item an elliptic local Lie algebra structure on $L = E [1]$ equipped with a $(-3)$-shifted symplectic pairing.
\end{enumerate}
\end{prop}
\begin{proof} (Sketch)
The underlying graded vector bundle of the space of fields $\sE$ is $E$ and we obtain the bundle underlying the local $L_\infty$ algebra by shifting this down $L = E[1]$.
The $(-1)$-shifted symplectic structure on $E$ transports to a $(-3)$-shifted on on $L$.
The $L_\infty$ structure maps for $L$ come from the Taylor components of the action functional $S$.
The exterior derivative of $S$ is a section
\ben
\d S \in \cloc^*(\sL, \sL^![-1]),
\een
where on the right-hand side we have zero differential.
The Taylor components are of the form $(\d S)_n : \sL^{\tensor n} \to \sL^![-1]$.
Using the shifted symplectic pairing we can identify these Taylor components with maps $(\d S)_n : \sL^{\tensor n} \to \sL[2]$.
Thus, $\d S$ can be viewed as a section of $\cloc^*(\sL, \sL[2])$.
This is precisely the space controlling deformations of $\sL$ as a local Lie algebra.
One checks immediately that the classical master equation is equivalent to the fact that $\d S$ is a derivation, hence it determines the structure of a local Lie algebra.
The first Taylor component $\ell_1$ is precisely the operator $Q$ before, so ellipticity of $(\sE, Q)$ is equivalent to ellipticity of $(\sL, \ell_1)$.
\end{proof}
%The functionals we consider are required to be continuous with a certain topology on the topological vector space $\sE$.
%\subsubsection{Deformation theory} \label{sec: formal moduli}
%
%There is a deep relationship to the way in which we formulate perturbative classical field theories and deformation theory.
%We diverge a bit from our discussion of field theory to explain this.
%
%\begin{thm}
%There is an equivalence (of $\infty$-categories) between the category of formal (pointed) moduli problems and the category of dg Lie algebras.
%\end{thm}
%
%\begin{rmk}
%Every $L_\infty$ algebra is equivalent (in a functorial way) to a dg Lie algebra.
%Often times this theorem is formulated in terms of $L_\infty$ algebras.
%\end{rmk}
%
%The ideas of deformation theory leading up to this theorem have been developed by many influential mathematicians in the past forty years including Quillen, Deligne, Kontsevich, Drinfeld, and Feigin.
%The modern formulation of the theorem above and its proof is due to Lurie \cite{LurieDagX}.
%
%By definition, a {\em formal moduli problem} over $\CC$ (valued in simplicial sets) is a functor (of simplicially enriched categories) of the form
%\ben
%F : {\rm dgArt}_\CC \to {\rm sSets}
%\een
%where ${\rm dgArt}_{\CC}$ is the category of dg Artin algebras.
%These are finite dimensional $\CC$-linear dg algebras $A$ concentrated in cohomological degrees $\leq 0$ such that $H^0 A$ is Artinian in the usual sense.
%One requires that $F$ satisfies the following conditions:
%\begin{enumerate}
%\item $F(\CC) \simeq *$ ($F$ is pointed);
%\item $F$ takes surjective maps of dg Artin algebras to fibrations of simplicial sets;
%\item if $A\to B, C \to B$ are maps of dg Artin algebras such that one of them is surjective on $H^0$, then $F$ preserves the fiber product: $F(A \times_B C) \xto{\simeq} F(A) \times_{F(B)} F(C)$.
%\end{enumerate}
%
%The most important way in which formal moduli problems arise is through the {\em Maurer-Cartan} equation.
%Suppose $\fg$ is an $L_\infty$ algebra (over $\CC$) and $(R,\fm)$ a dg Artin algebra.
%Define the simplicial set
%\ben
%{\rm MC}(\fg \tensor \fm) \in {\rm sSet}
%\een
%which assigns to an $n$-simplex the set of Maurer-Cartan elements $\alpha \in \fg \tensor \fm \tensor \Omega^*(\Delta^n)$.
%It is a classical result that ${\rm MC}(\fg) : (A, \fm) \mapsto {\rm MC}(\fg \tensor \fm)$ defines a formal moduli problem, see \cite{GetzlerLie}.
%In fact, the functor $\fg \mapsto {\rm MC}(\fg)$ is the one which provides the equivalence of the main theorem of deformation theory above.
%Sometimes, we will use the notation $B \fg$ to denote this formal moduli problem associated to $\fg$.
%Since a Maurer-Cartan element of $\fg \tensor \fm$ is equivalent to a map of commutative dg algebras $\clie^*(\fg) \to A$ preserving the maximal ideals, we see that $\clie^*(\fg)$ is precisely the space of functions on $B \fg$.
%
%\begin{rmk}
%There are many natural instances of formal moduli problems.
%For instance, if $X$ is any derived scheme then and $x \in X$ is a point, then the formal neighborhood $X^{\wedge}_x$ is a formal moduli problem.
%\end{rmk}
%
%Local Lie algebras, as we've introduced above, provide a natural ''sheafy" version of dg Lie, or $L_\infty$, algebras over smooth manifolds.
%If $\sL$ is a local Lie algebra on a manifold $X$, then for each open $U \subset X$ one can define the Maurer-Cartan space $B(\sL(U))(A) = {\rm MC}(\sL(U) \tensor \fm)$ just as above.
%This defines a (homotopy) sheaf of formal moduli problems on $X$.
%Motivated by the ordinary case we can make the following definition.
%
%\begin{dfn}
%An {\em elliptic moduli problem} is a sheaf of formal moduli problems represented by an elliptic $L_\infty$ algebra $\sL$.
%\end{dfn}
%
%According the previous section, we see that a classical theory in the BV formalism is simply a elliptic moduli problem that is equipped with the data of a shifted symplectic pairing.
\subsection{The definition of a holomorphic field theory}
In this section we fix a complex manifold $X$ of complex dimension $d$.
We start with the definition of a {\em free} holomorphic field theory on $X$, from there we will go on to describe how to incorporate interactions.
\subsubsection{Free holomorphic theories}
The essential information that governs a classical field theory are its equations of motion.
For a free theory, the equations of motion are linear in the space of fields.
At least classically, the setting of free theories can essentially be reduced to the study linear partial differential equations.
First, we must come to terms with the fields of a holomorphic theory.
Just as in the case of an ordinary field theory, they will arise as sections of some $\ZZ$-graded vector bundle on $X$.
The $\ZZ$-grading plays the same role as in the usual setting, it counts the BRST, or ghost, degree.
We will also refer to this as the cohomological degree.
For a {\em holomorphic theory} the crucial step is that we impose that this graded vector bundle be holomorphic.
By a holomorphic $\ZZ$-graded vector bundle we mean a $\ZZ$-graded vector bundle $
V^\bullet = \oplus_i V^i [-i]$ (which we will usually abbreviate simply as $V$) such that each graded piece $V^i$ is a holomorphic vector bundle (here $V^i$ is in cohomological degree $+i$).
Thus, in order to define a holomorphic field theory on a complex manifold $X$ we start with the data:
\begin{itemize}
\item[(1)] a $\ZZ$-graded holomorphic vector bundle $V^\bullet = \oplus_i V^i [-i]$ on $X$, so that the finite dimensional holomorphic vector bundle $V^i$ is in cohomological degree $i$.
\end{itemize}
\begin{rmk}
For supersymmetric theories it may be desirable to include an additional $\ZZ/2$, or fermionic, grading into the data of the space of fields, but we do not consider that here.
\end{rmk}
A free classical theory is made up of a space of fields as above together with the data of a linearized BRST differential $Q^{BRST}$ and a shifted symplectic pairing of cohomological degree $-1$.
Ordinarily, the BRST operator is simply a differential operator on the underlying vector bundle defining the fields.
For the class of theories we are considering, we require this operator be holomorphic.
For completeness, we briefly recall this notion.
Suppose that $E$ and $F$ are two holomorphic vector bundles on $X$.
Note that the Hom-bundle ${\rm Hom}(E,F)$ inherits a natural holomorphic structure.
By definition, a {\em holomorphic differential operator of order $m$} is a linear map
\ben
D : \Gamma^{hol}(X ; E) \to \Gamma^{hol}(X ; F)
\een
such that, with respect to a holomorphic coordinate chart $\{z_i\}$ on $X$, $D$ can be written as
\be\label{local holomorphic}
D|_{\{z_i\}} = \sum_{|I| \leq m} a_I (z) \frac{\partial^{|I|}}{\partial z_I}
\ee
where $a_I(z)$ is a local holomorphic section of ${\rm Hom}(E,F)$.
Here, the sum is over all multi-indices $I = (i_1,\ldots, i_d)$ and
\ben
\frac{\partial^{|I|}}{\partial z_I} := \prod_{k=1}^d \frac{\partial^{i_k}}{\partial z_k^{i_k}} .
\een
The length of the multi-index $I$ is defined by $|I| := i_1 + \cdots + i_d$.
\begin{eg}
The most basic example of a holomorphic differential operator is the $\partial$ operator for the trivial vector bundle.
For each $1 \leq \ell \leq d = \dim_\CC(X)$, it is a holomorphic differential operator from $E = \wedge^\ell T^{1,0*}X$ to $F = \wedge^{\ell+1} T^{1,0*}X$ which on sections is
\ben
\partial : \Omega^{\ell, hol}(X) \to \Omega^{\ell+1, hol}(X) .
\een
Locally, of course, it has the form
\ben
\partial = \sum_{i = 1}^{d} (\d z_i \wedge (-)) \frac{\partial}{\partial z_i},
\een
where $\d z_i \wedge (-)$ is the vector bundle homomorphism $\wedge^\ell T^{1,0*}X \to \wedge^{\ell+1} T^{1,0*}X$ sending $\alpha \mapsto \d z_i \wedge \alpha$.
\end{eg}
The next piece of data we fix is:
\begin{itemize}
\item[(2)] a square-zero holomorphic differential operator
\ben
Q^{hol} : \sV^{hol} \to \sV^{hol}
\een
of cohomological degree $+1$.
Here $\sV^{hol}$ denotes the holomorphic sections of $V$.
\end{itemize}
Finally, to define a free theory we need the data of a shifted symplectic pairing.
For reasons to become clear in a moment, we must choose this pairing to have a strange cohomological degree.
The last piece of data we fix is:
\begin{itemize}
\item[(3)] an invertible bundle map
\ben
(-,-)_V : V \tensor V \to K_X[d-1]
\een
Here, $K_X$ is the canonical bundle on $X$.
\end{itemize}
The definition of the fields of an ordinary field theory are the {\em smooth} sections of the vector bundle $V$.
In our situation this is a silly thing to do since we lose all of the data of the complex structure we used to define the objects above.
The more natural thing to do is to take the {\em holomorphic} sections of the vector bundle $V$.
By construction, the operator $Q^{hol}$ and the pairing $(-,-)_V$ are defined on holomorphic sections, so on the surface this seems reasonable.
The technical caveat that the sheaf of holomorphic sections does not satisfy certain conditions necessary to study renormalization and observables in our approach to QFT.
For more details on this see Remark \ref{rmk: hol sec bad}.
The solution to this problem is to take a natural resolution of holomorphic sections in order to relate to the usual definition of a classical BV theory.
Given any holomorphic vector bundle $V$ we can define its {\em Dolbeault complex} $\Omega^{0,*}(X , V)$ with its Dolbeault operator
\ben
\dbar : \Omega^{0,p}(X, V) \to \Omega^{0,p+1}(X, V) .
\een
Here, $\Omega^{0,p}(X, V)$ denotes smooth sections of the vector bundle $\Wedge^p (T^{0,1})^{\vee} X \tensor V$.
For any $U \subset X$ open subset, the complex $\Omega^{0,*}(U,V)$ is defined.
In this way, we obtain a natural sheaf of complexes on $X$, that we denote by $\Omega^{0,*}_X(V)$.
The fundamental property of the Dolbeault complex is that by Dolbeault's Theorem it provides a resolution for the sheaf of holomorphic sections:
\ben
\sV^{hol} \to \Omega^0_X(V) \xto{\dbar} \Omega^{0,1}_X(V) \xto{\dbar} \cdots .
\een
We now take a graded holomorphic vector bundle $V = V^{\bullet}$ as above, equipped with the differential operator $Q^{hol}$.
The Dolbeault resolution $\Omega^{0,*}(X, V^\bullet)$ is now equipped with two differentials $Q^{hol}$ and $\dbar$.
The complex of fields is the totalization of this complex:
\ben
\sE_V = {\rm Tot}\left(\Omega^{0,*}(X, V), \dbar, Q^{hol}\right) = \left(\Omega^{0,*}(X, V), \dbar + Q^{hol}\right) .
\een
The operator $\dbar + Q^{hol}$ will be the linearized BRST operator of our theory.
By assumption, we have $[\dbar, Q^{hol}]$ so that $(\dbar + Q^{hol})^2 = 0$ and hence the fields still define a complex.
By construction, $\sE_V$ has the natural structure of a sheaf of complexes.
When we want to consider global sections over $X$ we use the notation $\sE_V(X)$.
There is similarly a cosheaf of compactly supported sections $\sE_{V,c}$ whose underlying graded is the compactly supported Dolbeault forms $\Omega^{0,*}_c(X, V)$.
The pairing $(-,-)_V$ defines a pairing on $\sE_V$ as follows.
The thing to observe here is that $(-,-)_V$ extends to the Dolbeault complex in a natural way: we simply combine the wedge product of forms with the pairing on $V$.
We obtain the following composition.
\ben
\xymatrix{
\sE_{V,c} \tensor \sE_{V,c} \ar[r]^-{(-,-)_V} \ar@{.>}[dr]_-{\omega_V} & \Omega^{0,*}_c(X , K_X) [d-1] \ar[d]^-{\int_X} \\
& \CC[-1] .
}
\een
The top Dolbeault forms with values in the canonical bundle $K_X$ are precisely the top forms on the smooth manifold $X$, and we use the integration map $\int_X : \Omega^{d,d}_c(X) \to \CC$.
We note that integration is of cohomological degree $d$, as exhibited in the diagram.
We arrive at the following definition.
\begin{dfn/lem}\label{dfn hol free theory}
A {\em free holomorphic theory} on a complex manifold $X$ is the data $(V, Q^{hol}, (-,-)_V)$ as in (1), (2), (3) above such that $Q^{hol}$ is a square zero elliptic differential operator that is graded skew self-adjoint for the pairing $(-,-)_V$.
The triple $(\sE_V, Q_V = \dbar + Q^{hol}, \omega_V)$ defines a free BV theory in the usual sense.
\end{dfn/lem}
The usual prescription for writing down the associated action functional holds in this case.
If $\varphi \in \Omega^{0,*}(X , V)$ denotes a field the action is
\ben
S(\varphi) = \int_X \left(\varphi, (\dbar + Q^{hol}) \varphi \right)_V .
\een
We arrive at an example, which is a higher dimensional version of a familiar chiral CFT.
\begin{eg}\label{eg bg} {\em The free $\beta\gamma$ system}.
Suppose that
\ben
V = \ul{\CC} \oplus K_X [d - 1] .
\een
Let $(-,-)_V$ be the pairing
\ben
(\ul{\CC} \oplus K_X) \tensor (\ul{\CC} \oplus K_X) \to K_X \oplus K_X \to K_X
\een
sending $(\lambda, \mu) \tensor (\lambda',\mu') \mapsto (\lambda \mu', \lambda'\mu) \mapsto \lambda\mu' + \lambda' \mu$.
In this example we set $Q^{hol} = 0$.
One immediately checks that this is a holomorphic free theory as above.
The space of fields can be written as
\ben
\sE_V = \Omega^{0,*}(X) \oplus \Omega^{d,*}(X)[d - 1] .
\een
We write $\gamma \in \Omega^{0,*}(X)$ for a field in the first component, and $\beta \in \Omega^{d,*}(X)[d - 1]$ for a field in the second component.
The action functional reads
\ben
S(\gamma + \beta, \gamma'+\beta') = \int_{X} \beta \wedge \dbar \gamma' + \beta' \wedge \dbar \gamma .
\een
When $d = 1$ this reduces to the ordinary chiral $\beta\gamma$ system from conformal field theory.
The $\beta\gamma$ system is a bosonic version of the ghost $bc$ system that appears in the quantization of the bosonic string, see Chapter 6 of \cite{Polchinski1}.
For instance, we will see how this theory is the starting block for constructing general holomorphic $\sigma$-models.
\end{eg}
Of course, there are many variants of the $\beta\gamma$ system that we can consider.
For instance, if $E$ is {\em any} holomorphic vector bundle on $X$ we can take
\ben
V = E \oplus K_{\CC^d} \tensor E^\vee
\een
where $E^\vee$ is the linear dual bundle.
The pairing is constructed as in the case above where we also use the evaluation pairing between $E$ and $E^\vee$.
In thise case, the fields are $\gamma \in \Omega^{0,*}(X, E)$ and $\beta \in \Omega^{d,*}(X, E^\vee)[d-1]$.
The action functional is simply
\ben
S(\gamma, \beta) = \int {\rm ev}_E(\beta \wedge \dbar \gamma) .
\een
When $E$ is a tensor bundle of type $(r,s)$ this theory is a bosonic version of the $bc$ ghost system of spin $(r,s)$.
For a general bundle $E$ we will refer to it as the $\beta\gamma$ system with coefficients in the bundle $E$.
In \cite{BWhCDO} we study the quantization of the {\em curved} higher dimensional $\beta\gamma$ system and its relationship to complex invariants generalizing that of the elliptic genus.
%\begin{eg}
%{\em The free chiral scalar}.
%Another basic example is the free chiral scalar.
%This is a bit outside\brian{finish}
%Let $X$ be a complex manifold with Hermitian metric $g$.
%Let $V = \ul{\CC}$, the trivial vector bundle.
%\brian{do this}
%\end{eg}
\begin{rmk} \label{rmk: hol sec bad}
We will only work with a holomorphic theory prescribed by the data $(V, (-,-)_V, Q^{hol})$ through its associated BV theory.
One might propose a definition of a BV theory in the analytic category based off of holomorphic sections of holomorphic vector bundles.
There are numerous technical reason why this approach fails in our approach to QFT.
In particular, the sheaf of holomorphic sections of a holomorphic bundle is not fine, and there do not exists partitions of unity in general.
In addition, there is no holomorphic analog of compactly supported smooth functions.
Compactly supported functions are imoportant when considering locality in field theory.
For instance, the main result of \cite{CG2} is that the observables of any QFT form a factorization algebra, which is heavily on the existence of sections with compact support.
\end{rmk}
\subsubsection{Interacting holomorphic theories} \label{sec: interacting}
\def\olochol{\sO_{\rm loc}^{hol}}
We proceed to define what an interacting holomorphic theory is.
A general interacting field theory with space of fields $\sE$ is prescribed by a functional
\ben
S : \sE \to \CC
\een
that satisfies the {\em classical master equation}.
The key technical condition is that this functional must, in addition, be {\em local}.
%Recall, the sheaf of local functionals on $\sE = \Gamma(E)$ is defined as the sheaf of Lagrangian densities
%\ben
%\oloc(\sE) = {\rm Dens}_M \tensor_{D_M} \sO_{red}(JE) .
%\een
%In the expression above $JE$ stands for the sheaf of smooth sections of the $\infty$-jet bundle ${\rm Jet}(E)$ which has the structure of a $D_X$-module.
Since $X$ is a complex manifold, it makes sense to consider the sheaf of holomorphic differential operators that we denote by $D_X^{hol}$.
If $V$ is a holomorphic vector bundle we define the bundle of holomorphic $\infty$-jets ${\rm Jet}^{hol}(V)$ as follows \cite{GriffithsGreen, WongChandler}.
This is a pro-vector bundle that is holomorphic in a natural way.
The fibers of this infinite rank bundle ${\rm Jet}^{hol}(V)$ are isomorphic to
\ben
{\rm Jet}^{hol}(V)|_w = V_w \tensor \CC[[z_1,\ldots,z_d]],
\een
where $w \in X$ and where $\{z_i\}$ is the choice of a holomorphic formal coordinate near $w$.
We denote by $J^{hol} V$ the sheaf of holomorphic sections of this jet bundle.
The sheaf $J^{hol}V$ has the structure of a $D_X^{hol}$-module, that is, it is equipped with a holomorphic flat connection $\nabla^{hol}$.
This situation is completely analogous to the smooth case.
Locally, the holomorphic flat connection on ${\rm Jet}^{hol}(V)$ is of the form
\ben
\nabla^{hol} |_w = \sum_{i=1}^d \d w_i \left(\frac{\partial}{\partial w_i} - \frac{\partial}{\partial z_i}\right),
\een
where $\{w_i\}$ is the local coordinate on $X$ near $w$ and $z_i$ is the fiber coordinate labeling the holomorphic jet expansion.
%Using holomorphic jets we can make a completely analogous definition in our setting.
One natural appearance of the bundle of holomorphic jets is in providing an explicit description of holomorphic differential operators.
The statement in the smooth category is simply that a differential operator between vector bundles is equivalent to the data of a map of $D$-modules between the associated $\infty$-jet bundles.
In a completely analogous way, holomorphic differential operators are the same as bundle maps between the associated holomorphic jet bundles.
A similar result holds for {\em poly}differential operators, which we also state.
\begin{lem}
Suppose $V,W$ are holomorphic vector bundles with spaces of holomorphic sections given by $\sV^{hol},\sW^{hol}$ respectively.
There is an isomorphism of sheaves on $X$
\ben
{\rm Diff}^{hol}(\sV^{hol}, \sW^{hol}) \cong {\rm Hom}_{D_X^{hol}} (J^{hol}(V), J^{hol}(W)) .
\een
Similarly, if $V_1,\ldots,V_n,W$ are holomorphic bundles on $X$, there is an isomorphism
\ben
{\rm PolyDiff}^{hol}(\sV_1^{hol} \times \cdots \times \sV_n^{hol}, \sW^{hol}) \cong {\rm Hom}(J^{\rm hol}(V_1) \tensor \ldots \tensor J^{\rm hol}(V_n), W) .
\een
In both cases, the right-hand side denotes the space of homomorphisms of holomorphic $D$-modules that are compatible with the adic topology on jets.
\end{lem}
We will utilize this intepretation of holomorphic jet bundles momentarily.
In ordinary field theory, local functionals are defined as integrals of Lagrangian densities.
By definition, a Lagrangian density is a density valued functional on the fields that only depends on the fields through it's partial derivatives.
In the holomorphic setting we have the following definition.
\begin{dfn}\label{dfn hol lag}
Let $V$ be a vector bundle.
The space of {\em holomorphic Lagrangian densities} on $V$ is
\ben
{\rm Lag}^{hol}(V) = \Omega^{d,hol}_X \tensor_{\sO^{hol}_X} \left(\prod_{n > 0} {\rm Hom}_{\sO^{hol}_X} (J^{hol}(V)^{\tensor n} , \sO^{hol}_X)_{S_n} \right) .
\een
The hom space inside the parentheses denotes maps of holomorphic vector bundles respecting the natural filtration on jets.
That is, we require the bundle maps to be continuous with respect to the natural adic topology.
We also take coinvariants for the symmetric group $S_n$.
\end{dfn}
Note that we take the product over $n > 0$.
We do not want to consider Lagrangians that are constant in the fields.
Equivalently, a holomorphic Lagrangian density is of the form $\omega \tensor F$ where $\omega$ is a top holomorphic form and $F$ is a functional $F = \sum_k F_k$ where, for each $k$, the multilinear map
\ben
F_k : \sV^{hol} \times \cdots \times \sV^{hol} \to \sO^{hol}_X
\een
depends only on the holomorphic $\infty$-jet of sections of $V$.
%\begin{dfn}
%Suppose $V$ is a graded holomorphic vector bundle.
%We define the sheaf of {\em holomorphic} local functionals on $V$ by
%\ben
%\olochol(V) = \Omega^{d,hol}_X \tensor_{D^{hol}_X} \sO_{red}(J^{hol}V) [d]
%\een
%\end{dfn}
Next, suppose that $V$ is part of the data of a free holomorphic theory $(V, Q^{hol},(-,-)_V)$.
The pairing $(-,-)_V$ endows the space of holomorphic Lagrangians with a sort of bracket that we now construct.
Suppose $\omega \tensor F, \omega' \tensor F' \in {\rm Lag}^{hol}(V)$.
For simplicity, we assume $F,F'$ are of homogenous symmetric degree $k,k'$ respectively.
Consider the natural map
\be\label{bracket1}
\begin{tikzcd}
\left(\Omega^{d,hol}_X \tensor {\rm Hom}(J^{hol}(V)^{\tensor k} , \sO_X^{hol})\right) \tensor \left(\Omega^{d,hol}_X \tensor {\rm Hom}(J^{hol}(V)^{\tensor k'} , \sO_X^{hol})\right) \ar[d] \\
\left(\Omega^{d,hol}_X \tensor \Omega^{d,hol}_X\right) \tensor {\rm Hom}(J^{hol}(V)^{\tensor(k+k')}, \sO^{hol}_X)
\end{tikzcd}
\ee
for which the product $(\omega \tensor F) \tensor (\omega' \tensor F')$ maps to $(\omega \tensor \omega') \tensor (F \tensor F')$.
The bundle map $(-,-)_V : V \tensor V \to K_X[d-1]$ is invertible, hence it determines a section $(-,-)^{-1}_V$ of $V \tensor V \tensor K_X^\vee$ of cohomological degree $d-1$, where $K_X^\vee$ is the dual bundle to $K_X$.
Sections of $K_X^\vee$ will be denoted ${\rm PV}^d_X$ (the PV is stands for polyvector fields).
The element $(-,-)_V^{-1}$ determines a map
\be\label{bracket2}
{\rm Hom}(J^{hol}(V)^{\tensor (k+k')}, \sO^{hol}_X) \xto{(-,-)^{-1}_V} {\rm Hom} (J^{hol}(V)^{\tensor (k+k'-2)} , {\rm PV}^d_X).
\ee
Explicitly, this sends the element $F \tensor F'$ to the functional
\ben
\varphi_1 \tensor \cdots \varphi_{k+k'-2}\mapsto (F \tensor F' \tensor {\rm id}_{K_X^\vee})(\varphi_1 \tensor \cdots \varphi_{k+k'-2} \tensor (-,-)_V^{-1}) \in {\rm PV}^d_X .
\een
Finally, using the natural pairing between top polyvector fields and top holomorphic forms, we obtain a map
\be\label{bracket3}
\left(\Omega^{d,hol}_X \tensor \Omega^{d,hol}_X\right) \tensor {\rm Hom}(J^{hol}(V)^{\tensor(k+k'-2)}, {\rm PV}^d_X) \to \Omega^{d,hol}_X \tensor {\rm Hom}(J^{hol}(V)^{\tensor (k+k')}, \sO^{hol}_X) .
\ee
Upon symmetrizing the inputs, we see that the image of $(\omega \tensor F) \tensor (\omega' \tensor F')$ under the composition of the maps (\ref{bracket1}), (\ref{bracket2}), and (\ref{bracket3}) determines an element $\{F,F'\}^{hol}\in {\rm Lag}^{hol}(V)$.
We extend to non-homogenous functionals in the obvious way.
%In the first arrow we have evaluated $(-,-)^{-1}_V$ on the first two factors and the second arrow is simply the evaluation pairing.
%We symmetrize this to obtain an element $\{F, F'\}^{hol} \in {\rm Hom}({\rm Jet}^{hol}(V)^{\tensor (k+k'-2)} , K_X)_{S_{k+k'-2}}$.
%Extending to inhomogenous polynomial degree functionals is done in the obvious way.
In conclusion, we have produced a bilinear map
\ben
\{-,-\}^{hol} : {\rm Lag}^{hol}(V) \times {\rm Lag}^{hol}(V) \to {\rm Lag}^{hol}(V) [d-1].
\een
Note that this bracket is of cohomological degree $-d+1$ and lowers the polynomial degree by two.
%\begin{rmk}
%Note that the above still makes sense if $(-,-)_V$ is a polydifferential operator...\brian{should i say more?}
%\end{rmk}
We can now state the definition of a classical holomorphic theory.
Note that top holomorphic forms have a natural action by the Lie algebra of holomorphic vector fields $\sT_X^{hol}$ via Lie derivative.
This induces an action of holomorphic vector fields on the space of holomorphic Lagrangians.
% is a homogenous holomorphic Lagrangian then $L_\xi \cdot F$ is the holomorphic Lagrangian defined by
%\ben
%(\varphi_1,\ldots,\varphi_n) \mapsto L_\xi F(\varphi_1,\ldots,\varphi_n) .
%\een
\begin{dfn}
A {\em classical holomorphic theory} on a complex manifold $X$ is the data of a free holomorphic theory $(V, Q^{hol}, (-,-)_V)$ plus a holomorphic Lagrangian
\ben
I^{hol} \in \Omega^{d,hol}_X \tensor_{\sO^{hol}_X} \prod_{n \geq 3} {\rm Hom} (J^{hol}(V)^{\tensor n} , \sO^{hol}_X)_{S_n} \subset {\rm Lag}^{hol}(V)
\een
of cohomological degree $d$ such that the following holomorphic Lagrangian
\ben
Q^{hol} I^{hol} + \frac{1}{2} \{I^{hol}, I^{hol}\}^{hol}
\een
is in the image of a some holomorphic vector field.
That is, there exists some $\xi \in \sT_X^{hol}$ and $F \in {\rm Lag}^{hol}(V)$ such that $Q^{hol}I^{hol} + \frac{1}{2} \{I^{hol}, I^{hol}\}^{hol} = L_\xi F$.
\end{dfn}
\begin{rmk}
Note that in the definition we require that the functional $I^{hol}$ be at least cubic.
For brevity, we will denote the subspace $\prod_{n \geq 3} {\rm Hom} ({\rm Jet}^{hol}(V)^{\tensor n} , K_X)_{S_n}$ by ${\rm Lag}^{hol,+}(V)$.
\end{rmk}
There is an alternative way to understand the condition on the functional $I^{hol}$ to define a classical holomorphic theory.
To define it, we introduce the notion of a holomorphic local functional.
A holomorphic local functional is, by definition, a holomorphic Lagrangian defined up to a total holomorphic derivative.
Precisely, we have the following definition.
\begin{dfn}
\label{dfn: interacting}
The sheaf of holomorphic local functionals is defined to be the quotient
\ben
\olochol(V) := {\rm Lag}^{hol}(V) / \sT_X^{hol} \cdot {\rm Lag}^{hol}(V),
\een
where $\sT_X \cdot {\rm Lag}^{hol}(V)$ denotes the subspace of holomorphic Lagrangians that are in the image of the Lie derivative by some holomorphic vector field.
\end{dfn}
Equivalently, we may express this quotient using holomorphic $D$-modules in the following way.
The left $D_{X}^{hol}$-module structure on $J^{hol}(V)$ carries over to a left $D_X^{hol}$-module structure on the product
\ben
\prod_{n > 0} {\rm Hom}_{\sO^{hol}_X} (J^{hol}(V)^{\tensor n}, \sO^{hol}_X) .
\een
Moreover, we have already mentioned that there is the natural structure of a right $D_X^{hol}$-module structure on $\Omega^{d,hol}_X$.
\begin{lem}
There is an isomorphism
\ben
\olochol(V) = \Omega^{d,hol}_X \tensor_{D_X^{hol}} \prod_{n > 0} {\rm Hom}_{\sO^{hol}_X} (J^{hol}(V)^{\tensor n}, \sO^{hol}_X) .
\een
\end{lem}
Compare this to the definition of ordinary local functionals that we recalled in Definition \ref{dfn: local fnl}.
Next, we have the following observation.
\begin{lem}
Both the bracket $\{-,-\}^{hol}$ and the differential $Q^{hol}$ on holomorphic Lagrangians descends to a bracket and differential on $\olochol(V)$ (that we denote by the same names).
This yields the structure of a dg Lie algebra
\ben
(\olochol(V)[d-1], Q^{hol}, \{-,-\}^{hol}) .
\een
\end{lem}
An immediate corollary of this lemma is that the condition for a holomorphic Lagrangian $I^{hol}$ to define a classical theory in Definition \ref{dfn: interacting} is equivalent to the condition that $I^{hol}$ is a Maurer-Cartan element in $\olochol(V)[d-1]$.
%\begin{dfn/lem}
%Let $(V, Q^{hol}, (-,-)_V, I^{hol})$ be the data of an interacting holomorphic theory.
%Then $Q^{hol} + \{I^{hol},-\}$ equips $\olochol(V)$ with the structure of a sheaf of cochain complexes that we will denote
%\ben
%\Def^{hol}_{V} := \left(\olochol(V), Q^{hol} + \{I^{hol}, -\}^{hol}\right) .
%\een
%\end{dfn/lem}
As in the free case, we proceed to verify that a holomorphic theory defines an interacting classical BV theory in the sense of Definition \ref{dfn: classical}.
The underlying space of fields, as we have already seen in the free case, is $\sE_V = \Omega^{0,*}(X , V)$.
We show how to extend a holomorphic Lagrangian to a functional on this Dolbeualt complex.
Recall, a holomorphic Lagrangian can be written as $I^{hol} = \sum_k I^{hol}_k$ where $I_k^{hol} = \omega \tensor F_k$ for $\omega \in \Omega^{d,hol}$ and $F_k : \sV^{hol} \times \cdots \times \sV^{hol} \to \sO^{hol}$ is of the form
\ben
F_k (\varphi_1,\ldots,\varphi_k) = \sum_{i_1,\ldots,i_k} D_{i_1}(\varphi_1)\cdots D_{i_k}(\varphi_k) \in \sO^{hol}_X .
\een
Here, $\varphi_i\in \sV^{hol}$ is a holomorphic section, and each $D_{i_j}$ is a holomorphic differential operator $D_{i_j} : \sV^{hol} \to \sO^{hol}$.
In general, suppose $V,W$ are holomorphic vector bundles.
Every holomorphic differential operator $D : \sV \to \sW$ extends to a {\em smooth} differential operator on the associated Dolbeualt complexes with the property that it is compatible with the $\dbar$-operator on both sides.
To see how this works, suppose $D : \sV^{hol} \to \sW^{hol}$ is locally of the form $D = \sum_{m_1,\ldots,m_d} a_{m_1\cdots m_d}(z)\frac{\partial^{m_1}}{\partial z_1^{m_1}} \cdots \frac{\partial^{m_d}}{\partial z^{m_d}}$, where $a_{m_1\cdots m_d}(z)$ denotes a local holomorphic section of ${\rm Hom}(V,W)$.
Then, if $\alpha = s_I (z,\zbar) \d \zbar_I \in \Omega^{0,*}(X, V)$, where $s_I$ is a local {\em smooth} section of $V$, we define
\ben
D^{\Omega^{0,*}} \alpha = \sum_{m_1,\ldots,m_d} a_{m_1\cdots m_d} (z)\left(\frac{\partial^{m_1}}{\partial z_1^{m_1}} \cdots \frac{\partial^{m_d}}{\partial z^{m_d}} s_I(z,\zbar)\right) \d \zbar_I \in \Omega^{0,*}(X, W) .
\een
In this way, $D$ extends to a differential operator
\ben
D^{\Omega^{0,*}} : \Omega^{0,*}(X, V) \to \Omega^{0,*}(X,W) .
\een
Since $D$ is holomorphic, it is immediate that $D^{\Omega^{0,*}} \dbar_V = \dbar_W D^{\Omega^{0,*}}$ where $\dbar_V,\dbar_W$ are the $(0,1)$-connections on $V,W$ respectively.
Thus, $D^{\Omega^{0,*}}$ is a map of sheaves of cochain complexes.
Via this construction, we extend $F_k$ to a $\Omega^{0,*}(X)$-valued functional on $\Omega^{0,*}(X, V)$ by the formula
\ben
F^{\Omega^{0,*}}_k : (\alpha_1,\ldots,\alpha_k) \mapsto \sum_{i_1,\ldots,i_k} D^{\Omega^{0,*}}_{i_1}(\alpha_1) \wedge \cdots \wedge D^{\Omega^{0,*}}_{i_k} (\alpha_k) \in \Omega^{0,*}(X) .
\een
Here, as above, the $\alpha_i$'s denote sections in $\Omega^{0,*}(X, V)$.
We have thus produced a linear map
\ben
(-)^{\Omega^{0,*}} : {\rm Hom}_{\sO^{hol}} ((J^{hol} V)^{\tensor k} , \sO^{hol}) \to {\rm Hom}_{C^\infty} ((J \Omega^{0,*}(X, V))^{\tensor k} , \Omega^{0,*}(X))
\een
where $J \Omega^{0,*}(X, V)$ denotes the sheaf of smooth jets of the graded vector bundle underlying the Dolbeault complex.
This map clearly restricts to the symmetric coinvariants on both sides.
Taking direct products and tensoring with $\Omega^{d,hol}_X$ we have a map
\ben
{\rm Lag}^{hol}(V) \to \Omega^{d,hol} \tensor_{C^\infty} \prod_{k > 0} {\rm Hom}_{C^\infty}(J \Omega^{0,*}(X,V)^{\tensor k} , \Omega^{0,*}(X)) \cong \Omega^{d,*} \tensor_{C^\infty} \prod_{k > 0} {\rm Hom}(J \Omega^{0,*}(X, V)^{\tensor k} , C^\infty) .
\een
We have already mentioned that this map is compatible with the $\dbar$-operator on the right-hand side.
Moreover, the holomorphic differential operator $Q^{hol}$ also extends to a differential operator on the right-hand side in a way compatible with $\dbar$.
Thus, $(-)^{\Omega^{0,*}}$ is a map of cochain complexes, where ${\rm Lag}^{hol}(X)$ is equipped with the differential $Q^{hol}$ and the right-hand side has differential $\dbar + Q^{hol}$.
The right-hand side admits a map of degree $-d$ to $\Omega^{d,d} \tensor_{C^\infty} \prod_{k > 0} {\rm Hom}(J \Omega^{0,*}(X, V)^{\tensor k} , C^\infty)$ by projecting onto the $(d,d)$-component of $\Omega^{d,*}$.
Note that this map is only graded linear, it does not preserve the $\dbar$-differential.
However, once we quotient by the action of vector fields we do get a well-defined map
\ben
\olochol(V) \to \Omega^{d,d} \tensor_{D} \prod_{k > 0} {\rm Hom}(J \Omega^{0,*}(X, V)^{\tensor k} , C^\infty)_{S_k} [-d] .
\een
Note that we have accounted for the shift of $d$ coming from $\Omega^{d,*} \to \Omega^{d,d}[-d]$.
The right-hand side is precisely the (shifted) space of ordinary local functionals for the sheaf $\sE_V = \Omega^{0,*}(X,V)$ defined in Definition \ref{dfn: local fnl}.
In conclusion, we have obtained the following map of sheaves of cochain complexes
\be\label{int eqn}
\int (-)^{\Omega^{0,*}} : \olochol(V) \to \oloc(\Omega^{0,*}(X,V))[-d] .
\ee
In fact, we have the following stronger result, that this map is compatible with the brackets on both sides.
\begin{lem}
The map $\int (-)^{\Omega^{0,*}}$ defines an map of sheaves of dg Lie algebras
\ben
\int(-)^{\Omega^{0,*}} : \olochol(V)[d-1] \to \oloc(\sE_V)[-1]
\een
\end{lem}
\begin{proof}
By definition, the sheaf of local functionals on $\sE_V$ is equal to
\ben
{\rm Dens}_X \tensor_{D_X} \sO_{red}(J \sE_V) .
\een
Since $\sO_{red}(J \sE_V)$ is flat as a $D_X$-module \cite{CosRenorm}, we can replace the tensor product $\tensor_{D_X}$ with the derived tensor product $\tensor^{\LL}_{D_X}$.
We now use the following observation about $D$-modules.
If $M$ is a holomorphic $D_{X}^{hol}$-module, then clearly it forgets down to an ordinary smooth $D_X$-module (with the same underlying $C^\infty_X$-module structure) that we denote $M^{C^\infty}$.
Moreover, there is a quasi-isomorphism of $D$-modules
\ben
\Omega^{d,hol}_X \tensor^{\LL}_{D_X^{hol}} M [d] \simeq \Omega^{d,d}_{X} \tensor^{\LL}_{D_X} M^{C^\infty} .
\een
We apply this to the case $M = \sO_{red}(J^{hol} V)$, where $V$ is a holomorphic vector bundle
This says that there is a quasi-isomorphism
\be\label{def eqn1}
\Omega^{d,hol}_X \tensor^{\LL}_{D_X^{hol}} \sO_{red}(J^{hol} V) [d] \simeq \Omega^{d,d}_{X} \tensor^{\LL}_{D_X} \sO_{red}(J^{hol} V) .
\ee
This quasi-isomorphism is compatible with the $Q^{hol}$ differential and the bracket $\{-,-\}^{hol}$ on both sides.
Note that the left-hand side is simply the space of shifted holomorphic local functionals $\olochol(V)[d]$.
Next, observe that the map $(-)^{\Omega^{0,*}}$ determines a map of sheaves of cochain complexes
\be\label{def eqn2}
(-)^{\Omega^{0,*}} : \Omega^{d,d}_{X} \tensor^{\LL}_{D_X} \sO_{red}(J^{hol} V) \to {\rm Dens}_X \tensor^{\LL}_{D_X} \sO_{red}(J \sE_V) .
\ee
The right-hand side is quasi-isomorphic to $\oloc(\sE_V)$.
The composition of (\ref{def eqn1}) and (\ref{def eqn2}) is simply the map (\ref{int eqn})
\ben
\int (-)^{\Omega^{0,*}} : \olochol(V)[d] \to \oloc(\sE_V) .
\een
One checks immediately that this map is compatible with the brackets, namely
\ben
\{I^{hol}, J^{hol}\}^{hol} = \{\int I^{\Omega^{0,*}}, \int J^{\Omega^{0,*}}\} .
\een
%$D_X$-modules between $\sO_{red}(J \Omega^{0,*}(X , V))$ and $\sO_{red}(J^{hol}V)$.
%For this, it suffices to show that the space of linear functionals are quasi-isomorphic.
%For any vector bundle $E$ there always exists a (non-canonical) splitting $J E \cong \sE \tensor_{C^\infty_X} J_X$, where $\sE$ is the sheaf of sections and $J_X$ is the sheaf of $\infty$-jets of the trivial bundle.
%Thus, we can assume that $V$ is the trivial vector bundle, where the claim is now $(J\Omega^{0,*}(X))^\vee \simeq (J^{hol}_X)^\vee$.
%Both sides are quasi-isomorphic to the smooth sections of the bundle of holomorphic differential operators $D^{hol}$, so we are done.
\end{proof}
As a result of the equivalence between solutions to the classical master equation and Maurer-Cartan elements in the dg Lie algebras of shifted local functionals, we have the following.
\begin{prop} Every classical holomorphic theory $(V, Q^{hol},(-,-)_V, I^{hol})$ determines the structure of a classical BV theory.
The underlying free BV theory is given in Definition/Lemma \ref{dfn hol free theory} $(\sE_V, Q, \omega_V)$ and the interaction is $I = \int I^{\Omega^{0,*}}$.
\end{prop}
%\begin{proof}
%We must show that $Q^{hol}I^{hol} + \frac{1}{2} \{I^{hol},I^{hol}\}^{hol}$ exact implies the ordinary classical master equation for $I$:
%\ben
%\dbar I + Q^{hol}I + \frac{1}{2} \{I,I\} = 0 .
%\een
%Since $I^{\Omega^{0,*}}$ is defined using holomorphic differential operators, we see that $(\dbar I^{\Omega^{0,*}} ) (\alpha) = \dbar (I^{\Omega^{0,*}} (\alpha))$.
%Thus, upon integration, we see that the first term is identically zero.
%
%Now, since $Q^{hol}I^{hol} + \frac{1}{2} \{I^{hol},I^{hol}\}^{hol}$ is $\partial$-exact, $Q^{hol}I^{\Omega^{0,*}} + \frac{1}{2} \{I^{\Omega^{0,*}},I^{\Omega^{0,*}}\}$ is also $\partial$-exact.
%By integration we obtain the result.
%\end{proof}
%\brian{This is now repetitive
%Furthermore, via integration we can define the $\CC$-valued functional on compactly supported sections
%\ben
%I_k = \int_X I^{0,*}_k : \Om ega_c^{0,*}(X, V)^{\tensor k} \to \CC .
%\een