All proofs
Project-declaredLean 4.33.0-rc1 · mathlib@0434c033

Equation4

equation4

Project documentation

Apply the optional stopping theorem to get equation 4. Note that T1 Space is needed to make sure that mesh ι n has order topology.

Exact Lean statement

lemma equation4 {ι Ω E : Type*} [TopologicalSpace ι] [T1Space ι] [SecondCountableTopology ι]
    [LinearOrder ι] [OrderBot ι] [OrderTop ι] {mΩ : MeasurableSpace Ω}
    {P : Measure Ω} [NormedAddCommGroup E] [NormedSpace ℝ E] [CompleteSpace E] {S : ι → Ω → E}
    {𝓕 : Filtration ι mΩ} {n : ℕ} [SigmaFiniteFiltration P 𝓕] (hstop : S ⊤ =ᶠ[ae P] 0)
    {τ : Ω → WithTop (mesh ι n)} (hτ : ∀ ω, τ ω ≤ WithTop.some (⊤ : mesh ι n))
    (hτs : IsStoppingTime (meshFiltration 𝓕 n) τ) :
    stoppedValue (S ∘ Subtype.val) τ =ᵐ[P]
      -P[(predictableSeqTop S 𝓕 P n) | hτs.measurableSpace] +
        stoppedValue (predictablePart (S ∘ Subtype.val) (meshFiltration 𝓕 n) P) τ

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma equation4 {ι Ω E : Type*} [TopologicalSpace ι] [T1Space ι] [SecondCountableTopology ι]    [LinearOrder ι] [OrderBot ι] [OrderTop ι] {mΩ : MeasurableSpace Ω}    {P : Measure Ω} [NormedAddCommGroup E] [NormedSpace  E] [CompleteSpace E] {S : ι  Ω  E}    {𝓕 : Filtration ι mΩ} {n : } [SigmaFiniteFiltration P 𝓕] (hstop : S ⊤ =ᶠ[ae P] 0)    {τ : Ω  WithTop (mesh ι n)} (hτ :  ω, τ ω  WithTop.some (⊤ : mesh ι n))    (hτs : IsStoppingTime (meshFiltration 𝓕 n) τ) :    stoppedValue (S ∘ Subtype.val) τ =ᵐ[P]      -P[(predictableSeqTop S 𝓕 P n) | hτs.measurableSpace] +        stoppedValue (predictablePart (S ∘ Subtype.val) (meshFiltration 𝓕 n) P) τ := by  grw [ condExp_neg,  martingaleSeqTop_eq_neg_predictableSeqTop 𝓕 hstop]  simp only [martingaleSeqTop]  grw [ (martingale_martingalePart (S ∘ Subtype.val)    (meshFiltration 𝓕 n) P).stoppedValue_ae_eq_condExp_of_le_const hτs hτ,     stoppedValue.add, _root_.martingalePart_add_predictablePart]
Project
Brownian motion
License
Apache-2.0
Commit
5077304f5e73
Source
BrownianMotion/StochasticIntegral/DoobMeyer.lean:286-299

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.33.0-rc1

Continuous Within At Iio indicator Ioc

continuousWithinAt_Iio_indicator_Ioc

Plain-language statement

The indicator of a half-open interval Ioc a b with constant value c is left-continuous: when approached from the left it is eventually constant, so it is continuous within Iio t at t for every t.

probabilitystochastic processesmeasure theory

Source project: Brownian motion

Person-level attribution pending.

View proof record
Project-declaredLean 4.33.0-rc1

Dense comap val nhds Within Ioi ne Bot

Dense.comap_val_nhdsWithin_Ioi_neBot

Project documentation

This is an auxillary lemma used to prove Dense.monotone_of_isRightContinuous. It is saying that if D is a dense set and a, b are two points such that a < b, then the comap of 𝓝[Set.Ioi a] a under the inclusion D → α is nontrivial. Note that a < b is necessary as this is clearly not true if a is a top element.

probabilitystochastic processesmeasure theory

Source project: Brownian motion

Person-level attribution pending.

View proof record