File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,16 @@ theorem IsPreconnected.eq_univ_of_unbounded {s : Set α} (hs : IsPreconnected s)
220220
221221end
222222
223- variable {α : Type u} [ConditionallyCompleteLinearOrder α] [TopologicalSpace α] [OrderTopology α]
223+ variable {α : Type u} [TopologicalSpace α]
224+
225+ theorem denselyOrdered_of_preconnectedSpace [LinearOrder α] [OrderTopology α]
226+ [PreconnectedSpace α] : DenselyOrdered α where
227+ dense x y hxy := by
228+ suffices (Iio y ∩ Ioi x).Nonempty by grind [Set.inter_nonempty_iff_exists_left]
229+ exact nonempty_inter (isOpen_Iio' y) (isOpen_Ioi' x) (Set.Iio_union_Ioi_of_lt hxy)
230+ ⟨x, Set.mem_Iio.mpr hxy⟩ ⟨y, Set.mem_Ioi.mpr hxy⟩
231+
232+ variable [ConditionallyCompleteLinearOrder α] [OrderTopology α]
224233
225234/-- A bounded connected subset of a conditionally complete linear order includes the open interval
226235`(Inf s, Sup s)`. -/
You can’t perform that action at this time.
0 commit comments