Discrete approximation of a stopping time #
Given a random time τ, a discrete approximation sequence τn of τ is a sequence of
stopping times with countable range that converges to τ from above almost surely.
The sequence of stopping times approximating
τ.- isStoppingTime (n : ℕ) : IsStoppingTime 𝓕 (self.seq n)
Each
τnis a stopping time. Each
τnhas countable range.The sequence is antitone.
Each
τnis greater than or equal toτ.- tendsto : ∀ᵐ (ω : Ω) ∂μ, Filter.Tendsto (fun (x : ℕ) => self.seq x ω) Filter.atTop (nhds (τ ω))
The sequence converges to
τalmost surely.
Instances For
Equations
- MeasureTheory.instFunLikeDiscreteApproxSequenceNatForallWithTop = { coe := fun (s : MeasureTheory.DiscreteApproxSequence 𝓕 τ μ) => s.seq, coe_injective' := ⋯ }
A time index ι is said to be approximable if for any stopping time τ on ι, there exists
a discrete approximation sequence of τ.
- approxSeq (τ : Ω → WithTop ι) : IsStoppingTime 𝓕 τ → DiscreteApproxSequence 𝓕 τ μ
For any stopping time
τ, there exists a discrete approximation sequence ofτ.
Instances
Given a stopping time τ on an approximable time index, we obtain an associated discrete
approximation sequence.
Equations
Instances For
Equations
- Nat.approximable = sorry
Equations
- NNReal.approximable = sorry
The constant discrete approximation sequence.
Equations
- MeasureTheory.discreteApproxSequence_const 𝓕 i = { seq := fun (x : ℕ) (x_1 : Ω) => i, isStoppingTime := ⋯, countable := ⋯, antitone := ⋯, le := ⋯, tendsto := ⋯ }
Instances For
For τ a time bounded by i and τn a discrete approximation sequence of τ,
discreteApproxSequence_of is the discrete approximation sequence of τ defined by τn ∧ i.
Equations
- MeasureTheory.discreteApproxSequence_of 𝓕 hτ τn = { seq := fun (m : ℕ) => τn m ⊓ Function.const Ω ↑i, isStoppingTime := ⋯, countable := ⋯, antitone := ⋯, le := ⋯, tendsto := ⋯ }
Instances For
The minimum of two discrete approximation sequences is a discrete approximation sequence of the minimum of the two stopping times.
Equations
Instances For
The minimum of two discrete approximation sequence of the same stopping time.
Equations
Instances For
Equations
- MeasureTheory.instLEDiscreteApproxSequence = { le := fun (τn σn : MeasureTheory.DiscreteApproxSequence 𝓕 τ μ) => ∀ (n : ℕ), τn n ≤ σn n }
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.