-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGaussianFieldAPI.lean
More file actions
90 lines (64 loc) · 3.42 KB
/
Copy pathGaussianFieldAPI.lean
File metadata and controls
90 lines (64 loc) · 3.42 KB
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
/-
Copyright (c) 2026 Michael R. Douglas. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
# QFT Framework API
This file exports the functional analysis infrastructure that gaussian-field
provides for use by downstream QFT formalization projects. It re-exports
key definitions and restates proved theorems in a clean axiomatic form.
## Contents
1. **HasPointEval** — pointwise evaluation typeclass
2. **Configuration** — weak dual as configuration space
3. **Gaussian measure API** — measure, characteristic functional, moments, Wick's theorem
4. **Spectral CLM** — multiplier construction for covariance operators
## What stays out
- Schwinger functions, OS axioms, generating functionals → downstream repos
- Concrete space abbreviations → downstream repos
- SpacetimeData instances → downstream repos
-/
import GaussianField
import Nuclear.PointEval
import Nuclear.Complexification
import HeatKernel
/-! ## Section 1: HasPointEval -/
-- Re-exported from Nuclear.PointEval
-- `GaussianField.HasPointEval E M` — typeclass with `pointEval : E → M → ℝ`
-- Instances: SchwartzMap, SmoothMap_Circle, NuclearTensorProduct, Fin N → ℝ
/-! ## Section 2: Configuration Space -/
-- Re-exported from GaussianField.Construction:
-- `GaussianField.Configuration E := WeakDual ℝ E`
-- `GaussianField.instMeasurableSpaceConfiguration` — cylindrical σ-algebra
/-! ## Section 3: Gaussian Measure API
The following are **proved theorems** in `GaussianField.Construction` and
`GaussianField.Properties`. We list them here as the public API.
For any DyninMityaginSpace `E`, Hilbert space `H`, and CLM `T : E →L[ℝ] H`:
- `GaussianField.measure T : Measure (Configuration E)` — centered Gaussian
probability measure with covariance C(f,g) = ⟨T(f), T(g)⟩_H.
- `GaussianField.charFun T f` — characteristic functional identity:
`∫ ω, exp(i · ω f) ∂(measure T) = exp(-½ ‖T f‖²)`
- `GaussianField.measure_centered T f` — centering:
`∫ ω, ω f ∂(measure T) = 0`
- `GaussianField.cross_moment_eq_covariance T f g` — covariance:
`∫ ω, ω f * ω g ∂(measure T) = ⟨T f, T g⟩_H`
- `GaussianField.measure_isProbability T` — probability measure instance
### Higher moments (Wick's theorem)
- `GaussianField.odd_moment_vanish T k f` — odd moments vanish
- `GaussianField.wick_recursive T n f₀ g` — recursive Wick formula:
`E[ω(f₀) · ∏ⱼ ω(gⱼ)] = ∑ⱼ C(f₀, gⱼ) · E[∏_{i≠j} ω(gᵢ)]`
- `GaussianField.wick_bound T n f` — moment bound:
`|E[∏ᵢ ω(fᵢ)]| ≤ (n-1)‼ · ∏ᵢ ‖T(fᵢ)‖`
- `GaussianField.wick_bound_factorial T n f` — factorial form for OS1':
`|E[∏ᵢ ω(fᵢ)]| ≤ n!^{1/2} · ∏ᵢ ‖T(fᵢ)‖`
-/
/-! ## Section 4: Spectral CLM
Re-exported from `HeatKernel.Axioms`:
- `GaussianField.IsBoundedSeq σ` — ∃ C, ∀ m, |σ m| ≤ C
- `GaussianField.spectralCLM σ hσ : E →L[ℝ] ell2'` — multiplier CLM
- `GaussianField.spectralCLM_coord` — coordinate specification
- `GaussianField.qftEigenvalue L mass m` — eigenvalue of -Δ + m² on S¹_L × ℝ
- `GaussianField.qftSingularValue L mass m` — σ_m = λ_m^{-1/2}
- `GaussianField.qft_singular_values_bounded` — boundedness for spectralCLM input
-/
/-! ## Re-exported definitions
All definitions and theorems listed above are available via their fully qualified
names (e.g. `GaussianField.measure`, `GaussianField.charFun`) after importing
this file. -/