|
| 1 | +/- |
| 2 | +Copyright (c) 2026 MichaΕ Pacholski. All rights reserved. |
| 3 | +Released under Apache 2.0 license as described in the file LICENSE. |
| 4 | +Authors: MichaΕ Pacholski |
| 5 | +-/ |
| 6 | +module |
| 7 | + |
| 8 | +public import Mathlib.Geometry.Manifold.VectorBundle.CovariantDerivative.Hom |
| 9 | + |
| 10 | +/-! |
| 11 | +# Hessian |
| 12 | +
|
| 13 | +... |
| 14 | +-/ |
| 15 | + |
| 16 | +open Bundle |
| 17 | +open scoped Manifold |
| 18 | + |
| 19 | +public noncomputable section |
| 20 | + |
| 21 | +variable {π : Type*} [NontriviallyNormedField π] [CompleteSpace π] |
| 22 | + |
| 23 | +-- Base manifold |
| 24 | +variable {E : Type*} [NormedAddCommGroup E] [NormedSpace π E] [FiniteDimensional π E] |
| 25 | + {H : Type*} [TopologicalSpace H] {I : ModelWithCorners π E H} |
| 26 | + {M : Type*} [TopologicalSpace M] [ChartedSpace H M] |
| 27 | + [IsManifold I 1 M] [ContMDiffVectorBundle 1 E (TangentSpace I : M β _) I] |
| 28 | + |
| 29 | +-- Fiber bundle |
| 30 | +variable {F : Type*} [NormedAddCommGroup F] [NormedSpace π F] |
| 31 | + {V : M β Type*} [TopologicalSpace (TotalSpace F V)] |
| 32 | + [β x, AddCommGroup (V x)] [β x, Module π (V x)] |
| 33 | + [β x : M, TopologicalSpace (V x)] |
| 34 | + [β x, IsTopologicalAddGroup (V x)] [β x, ContinuousSMul π (V x)] |
| 35 | + [FiberBundle F V] [VectorBundle π F V] |
| 36 | + |
| 37 | +-- Covariant derivatives and the tangent bundle and on the fiber bundle V |
| 38 | +variable (covTM : CovariantDerivative I E (TangentSpace I : M β _)) |
| 39 | + (cov : CovariantDerivative I F V) |
| 40 | + |
| 41 | +-- Section of the bundle V |
| 42 | +variable (v : (x : M) β V x) |
| 43 | + |
| 44 | +namespace CovariantDerivative |
| 45 | + |
| 46 | +/-- Covariant Hessian acting on a section `v` of a vector bundle `V`. -/ |
| 47 | +def hessian (x : M) : TangentSpace I x βL[π] TangentSpace I x βL[π] V x := |
| 48 | + (covTM.homBundle cov) (cov v) x |
| 49 | + |
| 50 | +theorem hessian_apply_eq_extend {x : M} (hv : MDiffAt T% (cov v) x) |
| 51 | + (X Y : TangentSpace I x) : hessian covTM cov v x X Y = |
| 52 | + (cov (fun y β¦ (cov v y) (FiberBundle.extend E Y y)) x) X |
| 53 | + - (cov v x) ((covTM (FiberBundle.extend E Y) x) X) := by |
| 54 | + simp_all [hessian, covTM.homBundle_apply_eq_extend cov] |
| 55 | + |
| 56 | +end CovariantDerivative |
0 commit comments