Local properties of processes #
This file defines local and stable properties of stochastic processes with respect to a filtration. This is notably useful for local martingales.
Main definitions #
IsPreLocalizingSequence: A pre-localizing sequence is a sequence of stopping times which tends almost surely to infinity.IsLocalizingSequence: A localizing sequence is a pre-localizing sequence which is almost surely non-decreasing.Locally: A stochastic processXis said to satisfy a propertyplocally with respect to a filtration𝓕if there exists a localizing sequence(τ n)such that for alln, the stopped processX^{τ n} I_{τ n > ⊥}satisfiesp.IsStable: A property of stochastic processes is said to be stable if it is preserved under taking the stopped processX^{τ} I_{τ > ⊥}by a stopping timeτ.
Main results #
IsStable.isStable_locally: If a propertypis stable, then the property "satisfiesplocally" is also stable.IsPreLocalizingSequence.isLocalizingSequence_biInf: Given a pre-localizing sequence(τ n), the sequence⊓ j ≥ n, τ jis a localizing sequence.IsStable.locally_of_isPreLocalizingSequence: If a propertypis stable, then to prove thatXsatisfiesplocally, one can replace the localizing sequence in the definition of "locally" by a pre-localizing sequence.IsStable.locally_locally: For stable properties, locally is idempotent.IsStable.locally_induction: Ifqis a stable property, andpimplies locallyq, then locallypimplies locallyq.
Tags #
localizing sequence, local property, stable property
A pre-localizing sequence is a sequence of stopping times that tends almost surely to infinity.
- isStoppingTime (n : ℕ) : MeasureTheory.IsStoppingTime 𝓕 (τ n)
- tendsto_top : ∀ᵐ (ω : Ω) ∂P, Filter.Tendsto (fun (x : ℕ) => τ x ω) Filter.atTop (nhds ⊤)
Instances For
A localizing sequence is a sequence of stopping times that is almost surely increasing and tends almost surely to infinity.
- tendsto_top : ∀ᵐ (ω : Ω) ∂P, Filter.Tendsto (fun (x : ℕ) => τ x ω) Filter.atTop (nhds ⊤)
Instances For
A stochastic process X is said to satisfy a property p locally with respect to a
filtration 𝓕 if there exists a localizing sequence (τ_n) such that for all n, the stopped
process fun i ↦ {ω | ⊥ < τ n ω}.indicator (X i) satisfies p.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A localizing sequence, witness of the local property of the stochastic process.
Equations
- hX.localSeq = Exists.choose hX
Instances For
A property of stochastic processes is said to be stable if it is preserved under taking the stopped process by a stopping time.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A process X satisfies a stable property p locally if there exists a pre-localizing
sequence τ for which the stopped processes of fun i ↦ {ω | ⊥ < τ n ω}.indicator (X i) satisfy
p.
A stable property holding locally is idempotent.
If q is a stable property and p implies q locally, then p locally implies
q locally.
If p, q, r are stable properties and r and p implies locally q, then r locally
and p locally imply q locally.