Bergman kernel and Bergman metric
Anchor (Master): Bergman 1933 / Bergman 1950 (originator); Krantz Ch. 7; Fefferman 1974 (Invent. Math. 26); Hörmander *An Introduction to Complex Analysis in Several Variables* §3.4
Intuition Beginner
Imagine all the holomorphic functions on a domain that are not too large — those whose squared size, integrated over the whole domain, comes out finite. This collection forms a space with a notion of length and angle, much like ordinary vectors in the plane have length and angle. The remarkable fact is that inside this space there lives one special object, built once for the domain, that lets you recover the value of any function at any point by a single integration.
That special object is the Bergman kernel. Pick a point inside the domain. The kernel hands you a particular function whose inner product with anything in the space reads off the value at your chosen point. So the kernel is a universal value-reader: feed it a point, integrate, and it returns the function's value there. Because it is assembled only from the geometry of the domain, it carries deep information about the shape of that domain.
The second gift is a way to measure distance. The kernel changes from point to point, and the rate at which it changes defines a ruler — the Bergman metric — that bends and stretches to fit the domain. Two domains that look the same to holomorphic maps wear the same ruler.
Visual Beginner
A bounded domain in two complex dimensions, drawn as a smooth blob. At an interior point sits a small spike representing the kernel's value-reading function peaked near that point; an arrow labelled "integrate against any holomorphic function" connects the spike to the function's value at the point. Near the boundary the spike grows sharply taller, a cartoon of the kernel blowing up as the point approaches the edge. A second overlay shows tiny ellipses — the unit balls of the Bergman ruler — shrinking and elongating as they near the boundary.
Worked example Beginner
Take the simplest interesting domain: the unit disc in one complex variable, the set of points with size less than one. The holomorphic functions there with finite integrated square are exactly the power series whose coefficients shrink fast enough. A short computation with these power series — integrating each monomial against itself over the disc — produces a single closed formula for the kernel: the value-reading function at a point is divided by times squared.
Check the most basic case. Put the chosen point at the centre, where . The formula collapses to , a constant. Integrating a holomorphic function against this constant over the disc returns the function's average, which for holomorphic functions equals the value at the centre. The mean-value property you already know is the kernel doing its job at one point.
Now slide the point toward the boundary, so approaches . The denominator shrinks toward zero and the kernel's size grows without bound. This blow-up is universal: every bounded domain's kernel grows as the point nears the edge.
What this tells us: the kernel is a concrete, computable function, equal to a clean formula on the disc, and its boundary blow-up already encodes the shape of the domain near its edge.
Check your understanding Beginner
Formal definition Intermediate+
Let be a domain (open, connected). The Bergman space is
where is Lebesgue measure on and denotes the holomorphic functions on . With the inner product , the space is a separable complex Hilbert space: it is a closed subspace of , because the sub-mean-value inequality for over a polydisc or ball gives the interior estimate
so -convergence in forces locally uniform convergence, and the limit stays holomorphic by the Weierstrass convergence theorem in several variables 06.07.01.
The estimate shows that for each fixed the evaluation functional is bounded on . By the Riesz representation theorem there is a unique element with
The function , evaluated at in the natural normalisation, is the Bergman kernel of . It is holomorphic in , antiholomorphic in , conjugate-symmetric , and positive on the diagonal: whenever , which holds for every bounded since constants lie in .
When is bounded (so everywhere), the Bergman metric is the Hermitian form with coefficients
The matrix is positive definite when is bounded, so is a genuine Kähler metric (its associated -form is closed, being ).
Counterexamples to common slips
- can be : for the only entire function is (a non-zero entire function fails to decay), so the kernel and the metric are undefined. Boundedness, or at least , is essential.
- is not the integral of over ; the diagonal value is a squared norm, not a total mass. The reproducing identity pairs against , not against .
- The metric uses , not . Dropping the logarithm destroys the biholomorphic invariance, because the Jacobian factors in the transformation law cancel only after taking the logarithm and a mixed second derivative.
Key theorem with proof Intermediate+
Theorem (Bergman 1933, transformation law and invariance of the metric). Let be a biholomorphic map of domains in , with complex Jacobian determinant . Then the Bergman kernels transform by
and consequently the Bergman metric is an isometry invariant: $\Phi^ (ds^2_{\Omega_2}) = ds^2_{\Omega_1}$.*
Proof. The change-of-variables formula for a biholomorphism reads , because the real Jacobian of a holomorphic map equals the squared modulus of the complex Jacobian determinant. Hence the map
is a surjective linear isometry: for ,
with inverse . A unitary intertwiner sends reproducing kernel to reproducing kernel: writing , the defining property for becomes
On the other hand , so for all , giving . Since is unitary, , and applying :
Renaming , yields the stated transformation law.
Now restrict to the diagonal. With ,
valid locally where a branch of exists. The last two terms are holomorphic and antiholomorphic respectively, so the mixed operator annihilates them. Applying and using the chain rule on the first term, with and ,
which is exactly the statement that .
The argument is Bergman's own (1933), reorganised by Range Ch. I §3 and Krantz §1.4 around the unitary-intertwiner viewpoint that makes the kernel transformation a one-line consequence of .
Bridge. The transformation law builds toward the boundary analysis that appears again in 06.10.09 (Szegő kernel and Fefferman asymptotics): once one knows the kernel transforms by Jacobian factors, the leading boundary singularity of on a strongly pseudoconvex domain becomes a biholomorphic invariant, and this is exactly what powers Fefferman's mapping theorem. The foundational reason the logarithm enters the metric is the cancellation just computed — the holomorphic Jacobian terms are killed by the mixed second derivative, so is the invariant content. This pattern, that an minimization problem produces a reproducing kernel whose curvature is geometrically meaningful, is dual to the way the -theory of 06.10.04 produces minimal solutions; putting these together, the Bergman projection and the -Neumann operator are two faces of the same orthogonal-decomposition machinery, and the bridge is the Hilbert-space geometry of holomorphic spaces. The central insight carried forward is that the kernel is a complete biholomorphic invariant of bounded domains up to the metric it induces.
Exercises Intermediate+
Lean formalization Intermediate+
Mathlib does not currently formalise the Bergman space , the boundedness of point evaluation on it, or the reproducing kernel obtained from the Riesz representation theorem. A proposed signature, in Lean 4 / Mathlib syntax, sketching the target statement:
-- Sketch only; no current Mathlib coverage. See lean_mathlib_gap.
import Mathlib.Analysis.InnerProductSpace.Basic
import Mathlib.Analysis.Analytic.Basic
namespace Codex.RiemannSurfaces.SeveralComplexVariables
variable {n : ℕ} (Ω : Set (Fin n → ℂ)) (hΩ : IsOpen Ω) (hb : Bornology.IsBounded Ω)
-- The Bergman space: square-integrable holomorphic functions on Ω.
structure BergmanSpace where
toFun : (Fin n → ℂ) → ℂ
holo : HolomorphicOn toFun Ω
l2 : MemLp toFun 2 (volume.restrict Ω)
-- Point evaluation is a bounded linear functional (interior estimate),
-- so Riesz representation yields the reproducing kernel.
theorem bergman_reproducing (z : Fin n → ℂ) (hz : z ∈ Ω) :
∃ k : BergmanSpace Ω, ∀ f : BergmanSpace Ω,
f.toFun z = innerProductL2 f.toFun k.toFun := by
sorry
end Codex.RiemannSurfaces.SeveralComplexVariablesThe proof depends on names absent from Mathlib: the closedness of inside via the interior Cauchy estimate, the boundedness of , and the integral-kernel form of the orthogonal projection. Each is a candidate Mathlib contribution; until then this unit ships with lean_status: none.
Advanced results Master
Series representation and extremal characterisation. For any orthonormal basis of , the kernel is , converging locally uniformly on . The diagonal value carries an extremal reading: , the supremum attained by . This extremal description is independent of any basis and is the form Bergman used in 1933 to define the kernel function directly. It exhibits as a monotone-decreasing function of the domain: forces , because the larger domain imposes the larger normalising integral on competitors.
The Bergman projection. Orthogonal projection is the integral operator . The mapping properties of on Sobolev and Hölder scales — Condition , the requirement that preserve — are the analytic crux of boundary regularity for biholomorphisms. On strongly pseudoconvex and on smoothly bounded pseudoconvex domains of finite type, is known to satisfy Condition ; the worm domains of Diederich-Fornæss show that Condition can fail on smoothly bounded pseudoconvex domains, so the hypothesis is genuine. The Bergman projection is the orthogonal-decomposition partner of the -Neumann operator: on the appropriate space, tying the kernel directly to the -theory of 06.10.04.
Fefferman boundary asymptotics. For smoothly bounded and strongly pseudoconvex with defining function inside, Fefferman 1974 proved the asymptotic expansion
with and on the boundary. The leading term recovers, near each boundary point, the ball kernel's singularity up to the local CR-geometry of . The expansion is the engine of Fefferman's mapping theorem: a biholomorphism between smoothly bounded strongly pseudoconvex domains extends to a diffeomorphism of the closures, because the kernel transformation law forces the boundary singularities to match, and the matching propagates inward through the -Neumann estimates. The logarithmic term is a genuine obstruction to behaviour of up to the boundary and is the origin of the parabolic-invariant theory of Fefferman and the CR -curvature.
Bergman completeness and representative coordinates. A bounded pseudoconvex domain is Bergman complete: the Bergman metric is a complete Riemannian metric (Kobayashi; Ohsawa). At a point , Bergman's representative coordinates — built from evaluated at — linearise the automorphism group fixing and exhibit the metric as Euclidean to second order, the SCV analogue of normal coordinates. On the ball these coordinates are global and the metric is the complex hyperbolic metric of constant holomorphic sectional curvature, recovering the maximal symmetry .
Lu Qi-Keng problem and zeros of the kernel. Whether is zero-free on — the Lu Qi-Keng problem — is false in general: explicit bounded domains (annuli in , certain Hartogs domains) have kernels with zeros. Zero-freeness is needed for the global representative-coordinate construction, so its failure marks a real obstruction. The ball and polydisc are Lu Qi-Keng domains by their explicit product/negative-binomial formulas; small perturbations can destroy the property.
Synthesis. The Bergman kernel is the reproducing kernel of the Hilbert space , and this single -extremal object organises the whole metric and boundary theory of bounded domains. The transformation law identifies the kernel with a biholomorphic invariant: putting the law together with the diagonal extremal characterisation, the kernel's growth and zeros are intrinsic, and the metric is exactly the invariant Kähler structure that a biholomorphism must preserve. This is the foundational reason the ball and polydisc are distinguished — their kernels carry incompatible curvature, and curvature is an isometry invariant. The boundary expansion is dual to the interior extremal problem: Fefferman's singularity is the boundary shadow of the same minimization that defines in the interior, and it generalises the ball computation to every strongly pseudoconvex domain. The central insight is that one orthogonal projection encodes simultaneously the value-recovery (reproducing identity), the geometry (Bergman metric), the rigidity (Fefferman mapping), and the link to the -Neumann operator of 06.10.04; the Bergman theory is the statement that these are facets of a single Hilbert-space construction, and the boundary asymptotics are what convert the interior -data into the smooth-mapping rigidity of strongly pseudoconvex domains.
Full proof set Master
Proposition (closedness of and the interior estimate). Let be open. Then is a closed subspace of , and for every compact there is with for all .
Proof. Fix and with . Holomorphy gives the sub-mean-value property for (it is plurisubharmonic 06.10.03): , where . Hence . For a compact , choose less than the distance from to ; the constant works uniformly on . Now let converge to in . The estimate applied to shows is uniformly Cauchy on each compact set, so it converges locally uniformly to a holomorphic limit (Weierstrass, several variables 06.07.01). Locally uniform and limits agree almost everywhere, so . Thus is closed.
Proposition (existence, uniqueness, and symmetry of the kernel). For with , there is a unique , holomorphic in the first and antiholomorphic in the second argument, with for all and all ; moreover .
Proof. By the previous proposition is bounded on the Hilbert space , so Riesz representation supplies a unique with for all . Set . Conjugate symmetry is the Hermitian symmetry of the inner product: . Holomorphy in is holomorphy of ; antiholomorphy in follows from the symmetry. Uniqueness: if also reproduces, then for each the element represents , which Riesz makes unique, so .
Proposition (positivity and the extremal value). For bounded, .
Proof. For , Cauchy-Schwarz gives , with equality at , so the supremum equals . Positivity: constants lie in since is bounded, and the constant has , forcing the supremum to be positive.
Proposition (the metric is Hermitian positive definite for bounded ). For bounded, the matrix is Hermitian and positive definite at each .
Proof. Hermitian symmetry is immediate from conjugating and swapping . For positive definiteness fix and a vector ; the quantity is computed from . Writing on the diagonal and using the Cauchy-Schwarz / Lagrange-identity expansion of , the numerator is the Gram determinant of the vectors paired against , which is non-negative and strictly positive unless all directional derivatives are proportional to the values . Because contains, for bounded , functions separating points and giving independent first-order jets (polynomials restrict into ), no non-zero makes the form vanish, so is positive definite.
Theorem (transformation law). Statement and proof as in the Intermediate-tier Key theorem section.
Proof. The unitary intertwiner , , is an isometry by the holomorphic change of variables ; carrying reproducing kernels across gives , and the mixed second derivative of the logarithm kills the holomorphic Jacobian factors, yielding the tensorial invariance of . The detailed computation is given in the Intermediate section.
Connections Master
Holomorphic functions of several variables
06.07.01. The Bergman space is carved out of the holomorphic functions of variables; the interior Cauchy estimate that makes point evaluation bounded — and hence makes the kernel exist — is the several-variable Weierstrass convergence theorem applied to -Cauchy sequences. Every property of the kernel is downstream of the basic function theory established there.Pseudoconvexity and the Levi form
06.10.03. Boundedness alone gives a kernel, but the deepest theorems — Bergman completeness, the smoothness of the Bergman projection, Fefferman's boundary expansion — hold on (strongly) pseudoconvex domains. The plurisubharmonicity of used in the interior estimate, and the Levi geometry of the boundary controlling the kernel singularity, both belong to this unit's circle of ideas.The -equation and Hörmander's estimates
06.10.04. The Bergman projection and the -Neumann operator are partners in the orthogonal decomposition ; the identity ties the kernel directly to the minimal-solution theory, and the regularity of is read off the -Neumann estimates.Domains of holomorphy and holomorphic convexity
06.10.01. The monotonicity for and the boundary blow-up of make the diagonal kernel an exhaustion-type invariant; on a domain of holomorphy the kernel and metric are complete, reflecting that the domain cannot be holomorphically enlarged.Szegő kernel and Fefferman asymptotics
06.10.09. The Szegő kernel is the boundary analogue of the interior Bergman kernel; Fefferman's asymptotic expansion of near a strongly pseudoconvex boundary, and the resulting smooth extension of biholomorphisms, are developed there using the transformation law proved in this unit.
Historical & philosophical context Master
Stefan Bergman introduced the kernel function in two 1922 dissertations and the foundational papers Über die Kernfunktion eines Bereiches und ihr Verhalten am Rande of 1933 [Bergman 1933] (J. Reine Angew. Math. 169 and 172), where he defined by the extremal property and studied its boundary behaviour. His 1950 monograph The Kernel Function and Conformal Mapping [Bergman 1950] (AMS Mathematical Surveys 5) consolidated the reproducing-kernel formalism and the invariant metric now bearing his name; the metric had appeared in his work and in parallel investigations by Salomon Bochner. The reproducing-kernel apparatus itself was placed on its abstract footing by Nachman Aronszajn's 1950 Theory of reproducing kernels (Trans. Amer. Math. Soc. 68), which subsumes the Bergman and Szegő kernels as instances of a Hilbert space of functions with bounded point evaluations.
The subject's modern depth came from Charles Fefferman's 1974 The Bergman kernel and biholomorphic mappings of pseudoconvex domains [Fefferman 1974] (Invent. Math. 26, 1-65), which established the boundary asymptotic expansion of on smoothly bounded strongly pseudoconvex domains and used it to prove that biholomorphisms extend smoothly to the boundary — answering a question open since Henri Poincaré's 1907 observation that the ball and bidisc in are not biholomorphic. Fefferman's parametrix for the Bergman kernel, refined by Boutet de Monvel-Sjöstrand for the Szegő kernel, opened the parabolic-invariant theory of CR boundaries and the study of CR -curvature. The transformation law and the explicit ball and polydisc kernels treated here are the elementary core on which that boundary theory is built; Krantz's Function Theory of Several Complex Variables Ch. 7 [Krantz Ch. 7] and his later monograph Geometric Analysis of the Bergman Kernel and Metric [Krantz GTM 268] present the line from Bergman's extremal definition to Fefferman's asymptotics as a single development.
Bibliography Master
@article{Bergman1933Kernfunktion,
author = {Bergman, Stefan},
title = {{\"U}ber die Kernfunktion eines Bereiches und ihr Verhalten am Rande. I},
journal = {J. Reine Angew. Math.},
volume = {169},
year = {1933},
pages = {1--42}
}
@book{Bergman1950Kernel,
author = {Bergman, Stefan},
title = {The Kernel Function and Conformal Mapping},
series = {Mathematical Surveys},
number = {5},
publisher = {American Mathematical Society},
year = {1950}
}
@article{Aronszajn1950RKHS,
author = {Aronszajn, Nachman},
title = {Theory of reproducing kernels},
journal = {Trans. Amer. Math. Soc.},
volume = {68},
year = {1950},
pages = {337--404}
}
@article{Fefferman1974Bergman,
author = {Fefferman, Charles},
title = {The {B}ergman kernel and biholomorphic mappings of pseudoconvex domains},
journal = {Invent. Math.},
volume = {26},
year = {1974},
pages = {1--65}
}
@book{KrantzFTSCV,
author = {Krantz, Steven G.},
title = {Function Theory of Several Complex Variables},
edition = {2},
series = {AMS Chelsea Publishing},
volume = {340},
publisher = {American Mathematical Society},
year = {2001}
}
@book{KrantzBergman,
author = {Krantz, Steven G.},
title = {Geometric Analysis of the Bergman Kernel and Metric},
series = {Graduate Texts in Mathematics},
volume = {268},
publisher = {Springer},
year = {2013}
}
@book{RangeHolomorphic,
author = {Range, R. Michael},
title = {Holomorphic Functions and Integral Representations in Several Complex Variables},
series = {Graduate Texts in Mathematics},
volume = {108},
publisher = {Springer},
year = {1986}
}
@article{DiederichFornaess1977Worm,
author = {Diederich, Klas and Forn{\ae}ss, John Erik},
title = {Pseudoconvex domains: an example with nontrivial Nebenh{\"u}lle},
journal = {Math. Ann.},
volume = {225},
year = {1977},
pages = {275--292}
}