Skip to content
88 changes: 88 additions & 0 deletions FormalConjectures/Paper/WeaklyFirstCountable.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
/-
Copyright 2026 The Formal Conjectures Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-/

import FormalConjectures.Util.ProblemImports

/-!
# Conjectures about Weakly First Countable spaces

This file formalizes the notion of a weakly first countable topological space and some conjectures
around those.

*References:*
* [Ar2013] Arhangeliski, Alexandr. "Selected old open problems in general topology."
Buletinul Academiei de Ştiinţe a Republicii Moldova. Matematica 73.2-3 (2013): 37-46.
https://www.math.md/files/basm/y2013-n2-3/y2013-n2-3-(pp37-46).pdf.pdf
* [Ya1976] Yakovlev, N. N. "On the theory of o-metrizable spaces."
Doklady Akademii Nauk. Vol. 229. No. 6. Russian Academy of Sciences, 1976.
https://www.mathnet.ru/links/016f74007f9f96fa3aadae05cbd98457/dan40570.pdf (in Russian)
-/

open TopologicalSpace
open scoped Cardinal

namespace WeaklyFirstCountable

/-- A topologocal space $X$ is called *weakly first countable* if there exists a function
$N : X → ℕ → Set X, such that:

* For all $x : X, n : ℕ$ we have $x ∈ V x n$
* For all $x : X, n : ℕ$: $V (n + 1) x ⊆ V n x$
Comment on lines +42 to +43
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent order of arguments

* $O ⊆ X$ is open iff $∀ x ∈ O, ∃ n : ℕ, V x n ⊆ O$
-/
class WeaklyFirstCountableTopology (X : Type*) [TopologicalSpace X] : Prop where
nhds_countable_weak_basis : ∃ V : X → ℕ → Set X, ∀ (x : X), Antitone (V x) ∧ ∀ (n : ℕ), x ∈ V x n ∧
∀ O : Set X, IsOpen O ↔ ∀ x ∈ O, ∃ k : ℕ, V x k ⊆ O
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
∀ O : Set X, IsOpen O ↔ ∀ x ∈ O, ∃ k : ℕ, V x k ⊆ O
(\nhds x).HasBasis (fun _ \mapsto True) (V x)


/-- There are weakly first countable spaces which are not first countable,
for example the [Arens Space](https://topology.pi-base.org/spaces/S000156). -/
@[category undergraduate, AMS 54]
theorem exists_weakly_first_countable_not_first_countable : ∃ (X : Type*) (_ : TopologicalSpace X),
WeaklyFirstCountableTopology X ∧ ¬ FirstCountableTopology X := by sorry

/-- Every first countable space is weakly first countable,
simply take $N x$ as a countable neighborhood basis of $x$. -/
@[category test, AMS 54]
instance FirstCountableTopology.weaklyFirstCountableTopology (X : Type*) [TopologicalSpace X]
[FirstCountableTopology X] : WeaklyFirstCountableTopology X where
nhds_countable_weak_basis := by sorry
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think these would be reasonable to add to FormalConjecturesForMathlib (with proof_wanted for statements that have a sorry - you can also keep those as problems in this file)


/-- Problem 2 in [Ar2013]: Give an example in ZFC of a weakly first-
countable compact space X such that $𝔠 < |X|$. -/
@[category research open, AMS 54]
theorem existsWeaklyFirstCountableCompactBig : answer(sorry) ↔
∃ (X : Type*) (_ : TopologicalSpace X),
WeaklyFirstCountableTopology X ∧ CompactSpace X ∧ 𝔠 < #X := by sorry

/-- Problem 3 in [Ar2013]: Give an example in ZFC of a weakly first-
countable compact space X such that $𝔠 < |X|$. -/
def ExistsWeaklyFirstCountableCompactNotFirstCountable : Prop :=
∃ (X : Type*) (_ : TopologicalSpace X), WeaklyFirstCountableTopology X ∧ CompactSpace X ∧
¬ FirstCountableTopology X

/-- Problem 4 in [Ar2013]: Give an example in ZFC of a weakly first-
countable compact space X which is not first countable. -/
def existsWeaklyFirstCountableCompactNotFirstCountable :
ExistsWeaklyFirstCountableCompactNotFirstCountable := by sorry

/-- Under CH, such a space exists as constructed in [Ya1976] by Yakovlev. -/
@[category research solved, AMS 54]
theorem CH.existsWeaklyFirstCountableCompactNotFirstCountable (CH : ℵ₁ = 𝔠) :
ExistsWeaklyFirstCountableCompactNotFirstCountable := by sorry

-- TODO: add Problem 4 in [Ar2013]

end WeaklyFirstCountable
Loading