Documentation

RoughPaths.Integration.Young

Young integration #

For f an α-Hölder family of operators and g a β-Hölder path with α + β > 1, the germ Ξ s t = f s (g t − g s) sews into an additive Young integral ∫ f dg with the Young–Loève estimate ‖∫_s^t f dg − f s (g t − g s)‖ₑ ≤ K·Cf·Cg·(t−s)^{α+β}, characterised as the limit of Riemann sums along any mesh-fine sequence of partitions, and unique among additive maps with such a germ bound.

noncomputable def RoughPaths.youngGerm {E : Type v} {F : Type w} [NormedAddCommGroup E] [NormedSpace E] [NormedAddCommGroup F] [NormedSpace F] (f : E →L[] F) (g : E) :
F

The Young germ Ξ s t = f s (g t − g s).

Equations
Instances For
    @[simp]
    theorem RoughPaths.youngGerm_apply {E : Type v} {F : Type w} [NormedAddCommGroup E] [NormedSpace E] [NormedAddCommGroup F] [NormedSpace F] (f : E →L[] F) (g : E) (s t : ) :
    youngGerm f g s t = (f s) (g t - g s)
    noncomputable def RoughPaths.youngControl (Cf Cg : NNReal) (θ : ) :

    The Young control: linear with rate (Cf·Cg)^{1/(α+β)}.

    Equations
    Instances For
      theorem RoughPaths.youngControl_ne_top {Cf Cg : NNReal} {θ : } ( : 0 < θ) {s t : } :
      (youngControl Cf Cg θ).toFun s t
      theorem RoughPaths.youngControl_rpow {Cf Cg : NNReal} {θ : } ( : 0 < θ) (s t : ) :
      (youngControl Cf Cg θ).toFun s t ^ θ = Cf * Cg * ENNReal.ofReal (t - s) ^ θ

      The θ-th power of the Young control in closed form.

      theorem RoughPaths.youngGerm_defect {E : Type v} {F : Type w} [NormedAddCommGroup E] [NormedSpace E] [NormedAddCommGroup F] [NormedSpace F] {f : E →L[] F} {g : E} {Cf Cg α β : NNReal} (hf : HolderWith Cf α f) (hg : HolderWith Cg β g) ( : 0 < α) ( : 0 < β) a b c : :
      a bb cyoungGerm f g a c - youngGerm f g a b - youngGerm f g b c‖ₑ (youngControl Cf Cg (α + β)).toFun a c ^ (α + β)

      The Chen defect of the Young germ: δΞ a b c = (f a − f b)(g c − g b) is bounded by the Young control to the power θ = α + β.

      theorem RoughPaths.exists_youngIntegral {E : Type v} {F : Type w} [NormedAddCommGroup E] [NormedSpace E] [NormedAddCommGroup F] [NormedSpace F] [CompleteSpace F] {f : E →L[] F} {g : E} {Cf Cg α β : NNReal} (hf : HolderWith Cf α f) (hg : HolderWith Cg β g) ( : 0 < α) ( : 0 < β) ( : 1 < α + β) :
      ∃ (I : F), (∀ ⦃s u t : ⦄, s uu tI s u + I u t = I s t) (∀ ⦃s t : ⦄, s tI s t - (f s) (g t - g s)‖ₑ Sewing.sewingConst (α + β) * (Cf * Cg * ENNReal.ofReal (t - s) ^ (α + β))) ∀ ⦃s t : ⦄, s t∀ (ε : ENNReal) (mid : List ), List.IsChain (fun (a b : ) => a b (youngControl Cf Cg (α + β)).toFun a b ε) (s :: (mid ++ [t]))I s t - Sewing.pairSum (youngGerm f g) (s :: (mid ++ [t]))‖ₑ Sewing.sewingConst (α + β) * (ε ^ (α + β - 1) * (youngControl Cf Cg (α + β)).toFun s t)

      Existence of the Young integral (Young 1936; Lyons–Caruana–Lévy Ch. 1): an additive I with the Young–Loève bound ‖I s t − f s (g t − g s)‖ₑ ≤ K·Cf·Cg·(t−s)^{α+β}, approximating the Riemann sums of every fine partition.

      theorem RoughPaths.youngIntegral_unique {E : Type v} {F : Type w} [NormedAddCommGroup E] [NormedSpace E] [NormedAddCommGroup F] [NormedSpace F] {f : E →L[] F} {g : E} {Cf Cg α β : NNReal} ( : 1 < α + β) {C C' : ENNReal} (hC : C ) (hC' : C' ) {I I' : F} (hadd : ∀ ⦃a u b : ⦄, a uu bI a u + I u b = I a b) (hadd' : ∀ ⦃a u b : ⦄, a uu bI' a u + I' u b = I' a b) (hI : ∀ ⦃a b : ⦄, a bI a b - youngGerm f g a b‖ₑ C * (youngControl Cf Cg (α + β)).toFun a b ^ (α + β)) (hI' : ∀ ⦃a b : ⦄, a bI' a b - youngGerm f g a b‖ₑ C' * (youngControl Cf Cg (α + β)).toFun a b ^ (α + β)) {s t : } (hst : s t) :
      I s t = I' s t

      Uniqueness of the Young integral among additive maps with a Young–Loève-type germ bound.