Quasi-separated spaces #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
A topological space is quasi-separated if the intersections of any pairs of compact open subsets are still compact. Notable examples include spectral spaces, Noetherian spaces, and Hausdorff spaces.
A non-example is the interval [0, 1] with doubled origin: the two copies of [0, 1] are compact
open subsets, but their intersection (0, 1] is not.
Main results #
is_quasi_separated: A subsetsof a topological space is quasi-separated if the intersections of any pairs of compact open subsets ofsare still compact.quasi_separated_space: A topological space is quasi-separated if the intersections of any pairs of compact open subsets are still compact.quasi_separated_space.of_open_embedding: Iff : α → βis an open embedding, andβis a quasi-separated space, then so isα.
A subset s of a topological space is quasi-separated if the intersections of any pairs of
compact open subsets of s are still compact.
Note that this is equivalent to s being a quasi_separated_space only when s is open.
Equations
- is_quasi_separated s = ∀ (U V : set α), U ⊆ s → is_open U → is_compact U → V ⊆ s → is_open V → is_compact V → is_compact (U ∩ V)
- inter_is_compact : ∀ (U V : set α), is_open U → is_compact U → is_open V → is_compact V → is_compact (U ∩ V)
A topological space is quasi-separated if the intersections of any pairs of compact open subsets are still compact.