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

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

Canonical source
Full Lean sourceLean 4
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

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