Dense monotone of is Right Continuous
Dense.monotone_of_isRightContinuous
Project documentation
If f is monotone on a dense set D and is right continuous, then f is monotone. We prove under the assumption that α has a top element ⊤ and ⊤ ∈ D, which is a necessary assumption because otherwise it is possible that ⊤ is an isolated point. This theorem should be also true when α satisfies NoTopOrder α.
Exact Lean statement
lemma Dense.monotone_of_isRightContinuous {α β : Type*} [LinearOrder α] [OrderTop α]
[TopologicalSpace α] [OrderTopology α] [DenselyOrdered α] [TopologicalSpace β]
[Preorder β] [t : OrderClosedTopology β] {f : α → β} {D : Set α} (hD : Dense D) (htop : ⊤ ∈ D)
(hm : Monotone (f ∘ (↑) : D → β)) (hf : f.IsRightContinuous) :
Monotone fFormal artifact
Lean source
lemma Dense.monotone_of_isRightContinuous {α β : Type*} [LinearOrder α] [OrderTop α] [TopologicalSpace α] [OrderTopology α] [DenselyOrdered α] [TopologicalSpace β] [Preorder β] [t : OrderClosedTopology β] {f : α → β} {D : Set α} (hD : Dense D) (htop : ⊤ ∈ D) (hm : Monotone (f ∘ (↑) : D → β)) (hf : f.IsRightContinuous) : Monotone f := by refine monotone_iff_forall_lt.2 fun a b hab => ?_ by_cases! hbtop : b = ⊤ · have : (comap ((↑) : D → α) (𝓝[>] a)).NeBot := hD.comap_val_nhdsWithin_Ioi_neBot hab rw [hbtop] refine (isClosed_Iic (a := f ⊤)).mem_of_tendsto (Tendsto.comp (hf a) (tendsto_comap (f := ((↑) : D → α)))) ?_ rw [eventually_comap, eventually_nhdsWithin_iff] filter_upwards with z hz d rfl using hm (Subtype.mk_le_mk.2 le_top : d ≤ ⟨⊤, htop⟩) · -- This part should work when `α` satisfies `NoTopOrder α`. let I : D × D → α × α := Prod.map Subtype.val Subtype.val have : ((𝓝[Set.Ioi a ×ˢ Set.Ioi b] ⟨a, b⟩).comap I).NeBot := by simp only [nhdsWithin_prod_eq, comap_prodMap_prod, I] exact (hD.comap_val_nhdsWithin_Ioi_neBot hab).prod (hD.comap_val_nhdsWithin_Ioi_neBot hbtop.lt_top) have : ∀ᶠ (p : D × D) in (𝓝[Set.Ioi a ×ˢ Set.Ioi b] ⟨a, b⟩).comap I, p.1 ≤ p.2 := by rw [eventually_comap, eventually_nhdsWithin_iff] have := isOpen_lt_prod.mem_nhds_iff.2 (by simp [hab] : ⟨a, b⟩ ∈ {p : α × α | p.1 < p.2}) filter_upwards [this] with p hlt _ a rfl using hlt.le exact t.isClosed_le'.mem_of_tendsto (Tendsto.comp ((hf a).prodMap (hf b)) tendsto_comap) (this.mono fun d hd => hm hd)- Project
- Brownian motion
- License
- Apache-2.0
- Commit
- 5077304f5e73
- Source
- BrownianMotion/StochasticIntegral/DoobMeyer.lean:932-956
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.