-
Notifications
You must be signed in to change notification settings - Fork 210
feat(Paper): two conjectures about weakly first countable spaces #1860
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
felixpernegger
wants to merge
13
commits into
google-deepmind:main
Choose a base branch
from
felixpernegger:weaklyfirstcountable
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
50b247f
weakly first countable
felixpernegger f93c4b4
refactor slightly
felixpernegger bd3ff3b
punctuation
felixpernegger 504b52e
missing condition
felixpernegger 8d8569b
variable name
felixpernegger 7a5d825
add weakly fc not fc
felixpernegger 8ade424
wrong year
felixpernegger 515a88d
wrong indices
felixpernegger 0070dd1
Update FormalConjectures/Paper/WeaklyFirstCountable.lean
felixpernegger 7ad262e
class for CH
felixpernegger 7504d0b
Update FormalConjectures/Paper/WeaklyFirstCountable.lean
felixpernegger 9357dbc
correct docstring
felixpernegger cedf059
change def to theorem
felixpernegger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,89 @@ | ||||||
| /- | ||||||
| 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 topological 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$ | ||||||
| * $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 | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
|
||||||
| /-- 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 | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Prove this? |
||||||
|
|
||||||
| /-- 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 which is not first countable. -/ | ||||||
| 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. -/ | ||||||
| @[category test, AMS 54] | ||||||
| theorem existsWeaklyFirstCountableCompactNotFirstCountable : | ||||||
| ExistsWeaklyFirstCountableCompactNotFirstCountable := by sorry | ||||||
|
|
||||||
| /-- Under CH, such a space exists as constructed in [Ya1976] by Yakovlev. -/ | ||||||
| @[category research solved, AMS 54] | ||||||
| theorem CH.existsWeaklyFirstCountableCompactNotFirstCountable [Fact (ℵ₁ = 𝔠)] : | ||||||
| ExistsWeaklyFirstCountableCompactNotFirstCountable := by sorry | ||||||
|
|
||||||
| -- TODO: add Problem 4 in [Ar2013] | ||||||
|
|
||||||
| end WeaklyFirstCountable | ||||||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent order of arguments