Cameron–Martin theorem:
ProvedHairerSPDE.cameron_martinTheorem 4.44 (Cameron–Martin). Let be a separable Banach space and let be a centred Gaussian measure on : a Borel probability measure such that the image of under every continuous linear functional is a real Gaussian law, with . For let be the translation , and let and be the Cameron–Martin norm and space of . Then
That is, the translated measure is absolutely continuous with respect to precisely for the directions of finite Cameron–Martin norm; for every other direction the two measures are not merely inequivalent but mutually singular.
This is the structural theorem of infinite-dimensional Gaussian analysis. In finite dimensions every direction is admissible, because Lebesgue measure is translation invariant; the theorem says that in infinite dimensions the admissible directions form the proper subspace , which typically carries measure zero. It is the source of the Girsanov transform for Gaussian noise, of the rate function in Schilder-type large deviation principles, and of the domain of the Malliavin derivative.
Formalization Note. Gaussianity is the hypothesis that the push-forward under each continuous linear functional is a real Gaussian; centredness is the separate hypothesis . The translation is and absolute continuity is the usual "null sets of are null sets of ". The space is assumed complete and second countable, which is the separable Banach hypothesis of the source.
import Mathlib import Definitions.Def_HairerSPDE_CameronMartin set_option autoImplicit false open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology
namespace HairerSPDE
theorem cameron_martin {B : Type*} [NormedAddCommGroup B] [NormedSpace ℝ B] [MeasurableSpace B]
[BorelSpace B] [CompleteSpace B] [SecondCountableTopology B]
(μ : Measure B) [IsGaussian μ] (hμ : μ[id] = 0) (h : B) :
μ.map (fun x ↦ x + h) ≪ μ ↔ cameronMartinNorm μ h ≠ ∞ := by sorry
end HairerSPDERead-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Provenance note: this read-back was written by the agent that drafted the Lean statements, not by an independent auditor, and should be weighed accordingly.
Throughout, is a real normed vector space that is complete and second countable (a separable Banach space), equipped with its Borel -algebra, and denotes its continuous dual. For a measure on :
- " is Gaussian" means: for every continuous linear functional , the push-forward of under is the real Gaussian law with mean and variance ; the variance-zero case is a Dirac mass, and this property already forces to be a probability measure.
- denotes the covariance form: it equals when the identity map on is square-integrable for , and is defined to be otherwise.
- denotes the quantity , computed in with each real value first replaced by . The supremum ranges over all satisfying the constraint; always satisfies it, so always and .
Statement. Let be a measure on that is Gaussian in the above sense and satisfies (the Bochner integral of the identity map vanishes). Let be arbitrary. Then the following two assertions are equivalent:
- the push-forward of under the translation is absolutely continuous with respect to , i.e. every -null Borel set is null for the translated measure;
- , i.e. is finite.
The claim is a biconditional, so both directions are asserted. The quantifier over is universal and unrestricted: is included (there both sides hold, the translation being the identity), and so is the case where is a Dirac mass at (there , so the right-hand side holds only for ).
Nothing stronger than absolute continuity is claimed in direction 1 — equivalence of the two measures, or an explicit density, is not part of the statement — and nothing is said about mutual singularity in the failing case.
Confirmed by the mission captain (proposal self-audit).