Tendsto of eventually monotone of tendsto on dense
tendsto_of_eventually_monotone_of_tendsto_on_dense
Plain-language statement
We combine limsup_le_of_eventually_monotone_of_tendsto_on_dense and le_liminf_of_eventually_monotone_of_tendsto_on_dense to prove that F · a converges to f a if f is continuous at a.
Exact Lean statement
lemma tendsto_of_eventually_monotone_of_tendsto_on_dense {ι α β : Type*} [LinearOrder α]
[BoundedOrder α] [TopologicalSpace α] [OrderTopology α] [DenselyOrdered α]
[ConditionallyCompleteLinearOrder β] [TopologicalSpace β] [OrderTopology β] {l : Filter ι}
[l.NeBot] {D : Set α} {F : ι → α → β} {f : α → β} (hF : ∀ᶠ i in l, Monotone (F i))
(hD : Dense D) (htop : ⊤ ∈ D) (hbot : ⊥ ∈ D) (a : α) (hfa : ContinuousAt f a)
(hlim : ∀ t ∈ D, Tendsto (F · t) l (𝓝 (f t))) :
Tendsto (F · a) l (𝓝 (f a))Formal artifact
Lean source
lemma tendsto_of_eventually_monotone_of_tendsto_on_dense {ι α β : Type*} [LinearOrder α] [BoundedOrder α] [TopologicalSpace α] [OrderTopology α] [DenselyOrdered α] [ConditionallyCompleteLinearOrder β] [TopologicalSpace β] [OrderTopology β] {l : Filter ι} [l.NeBot] {D : Set α} {F : ι → α → β} {f : α → β} (hF : ∀ᶠ i in l, Monotone (F i)) (hD : Dense D) (htop : ⊤ ∈ D) (hbot : ⊥ ∈ D) (a : α) (hfa : ContinuousAt f a) (hlim : ∀ t ∈ D, Tendsto (F · t) l (𝓝 (f t))) : Tendsto (F · a) l (𝓝 (f a)) := by refine tendsto_of_le_liminf_of_limsup_le ?_ ?_ ?_ ?_ · exact le_liminf_of_eventually_monotone_of_tendsto_on_dense hF hD htop hbot hfa.continuousWithinAt hlim · exact limsup_le_of_eventually_monotone_of_tendsto_on_dense hF hD htop hbot hfa.continuousWithinAt hlim · -- create an analogue of `Filter.IsCoboundedUnder.trans` for `IsBoundedUnder` to replace -- `isBoundedUnder_le.mono_le` refine (hlim ⊤ htop).isBoundedUnder_le.mono_le ?_ filter_upwards [hF] with i hi using hi le_top · refine (hlim ⊥ hbot).isBoundedUnder_ge.mono_ge ?_ filter_upwards [hF] with i hi using hi bot_le- Project
- Brownian motion
- License
- Apache-2.0
- Commit
- 5077304f5e73
- Source
- BrownianMotion/StochasticIntegral/DoobMeyer.lean:1015-1032
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.