Documentation

Atlas.GeometryOfManifolds.code.HodgeRepresentative

structure HodgeRepresentative.HodgeData :
Type (max (max (u_1 + 1) (u_2 + 1)) (u_3 + 1))

Abstract data for the Hodge-theoretic setting near degree $k+1$: three inner-product spaces $\Omega^k, \Omega^{k+1}, \Omega^{k+2}$ with exterior derivatives $d_k, d_{k+1}$ satisfying $d^2 = 0$ and their formal adjoints $d^*$.

Instances For
    noncomputable def HodgeRepresentative.HodgeData.laplacian (hd : HodgeData) (α : hd.Ωk1) :
    hd.Ωk1

    The Hodge Laplacian $\Delta = d\,d^* + d^*\,d$ on $\Omega^{k+1}$.

    Instances For

      A form $\alpha$ is harmonic iff $\Delta \alpha = 0$.

      Instances For

        Existence data for the Hodge decomposition: a Green operator $G$ and harmonic projection $H$ such that $\alpha = H\alpha + d\,d^* G\alpha + d^* d\, G\alpha$, with $H\alpha$ harmonic, closed, and co-closed.

        Instances For
          theorem HodgeRepresentative.harmonic_exact_eq_zero (hd : HodgeData) (h : hd.Ωk1) (hH : hd.IsHarmonic h) (β : hd.Ωk) (heq : h = hd.d_k β) :
          h = 0

          A harmonic form that is also exact ($h = d\beta$) must be zero, by the orthogonality $\langle d\beta, h\rangle = \langle \beta, d^* h\rangle = 0$.

          theorem HodgeRepresentative.harmonic_sub (hd : HodgeData) (h₁ h₂ : hd.Ωk1) (hH1 : hd.IsHarmonic h₁) (hH2 : hd.IsHarmonic h₂) :
          hd.IsHarmonic (h₁ - h₂)

          The space of harmonic forms is closed under subtraction.

          theorem HodgeRepresentative.hodge_unique_helper (hd : HodgeData) (h₁ h₂ : hd.Ωk1) (β₁ β₂ : hd.Ωk) (hH1 : hd.IsHarmonic h₁) (hH2 : hd.IsHarmonic h₂) (heq : h₁ + hd.d_k β₁ = h₂ + hd.d_k β₂) :
          h₁ = h₂

          Uniqueness helper: if $h_1 + d\beta_1 = h_2 + d\beta_2$ with both $h_i$ harmonic, then $h_1 = h_2$ (since their difference is harmonic and exact).

          theorem HodgeRepresentative.hodge_representative_exists_unique (hd : HodgeData) (gd : hd.GreenDecomp) (α : hd.Ωk1) (hclosed : hd.d_k1 α = 0) :
          ∃! h : hd.Ωk1, hd.IsHarmonic h ∃ (β : hd.Ωk), α = h + hd.d_k β

          Existence and uniqueness of the harmonic representative: every closed form $\alpha$ decomposes uniquely as $\alpha = h + d\beta$ with $h$ harmonic.