Tendsto right Lim comp of gt
ProbabilityTheory.tendsto_rightLim_comp_of_gt
Plain-language statement
Along a strictly decreasing sequence u → x from the right, the regularized values r (u k) tend to the right limit of h at x along T' ⊇ T.
Exact Lean statement
lemma tendsto_rightLim_comp_of_gt (hTd : Dense T) {T' : Set ι} (hTT' : T ⊆ T')
(hr : ∀ y, Tendsto h (𝓝[T ∩ Set.Ioi y] y) (𝓝 (r y))) {u : ℕ → ι} {L : ℝ}
(hux : ∀ k, x < u k) (hutend : Tendsto u atTop (𝓝 x))
(hL : Tendsto h (𝓝[T' ∩ Set.Ioi x] x) (𝓝 L)) :
Tendsto (fun k ↦ r (u k)) atTop (𝓝 L)Formal artifact
Lean source
lemma tendsto_rightLim_comp_of_gt (hTd : Dense T) {T' : Set ι} (hTT' : T ⊆ T') (hr : ∀ y, Tendsto h (𝓝[T ∩ Set.Ioi y] y) (𝓝 (r y))) {u : ℕ → ι} {L : ℝ} (hux : ∀ k, x < u k) (hutend : Tendsto u atTop (𝓝 x)) (hL : Tendsto h (𝓝[T' ∩ Set.Ioi x] x) (𝓝 L)) : Tendsto (fun k ↦ r (u k)) atTop (𝓝 L) := by rw [(closed_nhds_basis L).tendsto_right_iff] rintro C ⟨hCmem, hCclosed⟩ have hev : ∀ᶠ s in 𝓝[>] x ⊓ 𝓟 T', h s ∈ C := by rw [nhdsWithin_inf_principal, Set.inter_comm]; exact hL.eventually hCmem obtain ⟨v, hvx, hv⟩ := (nhdsGT_basis x).eventually_iff.1 (Filter.eventually_inf_principal.1 hev) have hevk : ∀ᶠ k in atTop, u k ∈ Set.Iio v := hutend (IsOpen.mem_nhds isOpen_Iio hvx) filter_upwards [hevk] with k hk have hne := nhdsWithin_Ioi_inter_neBot hTd (u k) rw [Set.inter_comm] at hne refine hCclosed.mem_of_tendsto (hr (u k)) ?_ rw [Set.inter_comm, ← nhdsWithin_inf_principal] refine Filter.eventually_inf_principal.2 ?_ filter_upwards [Ioo_mem_nhdsGT hk] with s hs hsT exact hv ⟨(hux k).trans hs.1, hs.2⟩ (hTT' hsT)- Project
- Brownian motion
- License
- Apache-2.0
- Commit
- 5077304f5e73
- Source
- BrownianMotion/StochasticIntegral/Quasimartingale/CadlagModification.lean:409-429
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
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.
Source project: Brownian motion
Person-level attribution pending.
Dense comap val nhds Within Iio ne Bot
Dense.comap_val_nhdsWithin_Iio_neBot
Plain-language statement
This is the dual of Dense.comap_val_nhdsWithin_Ioi_neBot.
Source project: Brownian motion
Person-level attribution pending.
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.
Source project: Brownian motion
Person-level attribution pending.