-
Notifications
You must be signed in to change notification settings - Fork 837
feat: better API for T1Space
and DiscreteSpace
on quotients by non-normal subgroups
#30383
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
base: master
Are you sure you want to change the base?
feat: better API for T1Space
and DiscreteSpace
on quotients by non-normal subgroups
#30383
Conversation
…n-normal subgroups
PR summary c4b0fc93a3
|
File | Base Count | Head Count | Change |
---|---|---|---|
Mathlib.Topology.Algebra.Group.ClosedSubgroup | 1123 | 1125 | +2 (+0.18%) |
Import changes for all files
Files | Import difference |
---|---|
Mathlib.Topology.Algebra.ClosedSubgroup Mathlib.Topology.Algebra.Group.ClosedSubgroup |
2 |
Declarations diff
+ discreteTopology
+ instT1Space
+ preimage_mk_one
++ discreteTopology_iff
++ t1Space_iff
You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>
The doc-module for script/declarations_diff.sh
contains some details about this script.
No changes to technical debt.
You can run this locally as
./scripts/technical-debt-metrics.sh pr_summary
- The
relative
value is the weighted sum of the differences with weight given by the inverse of the current value of the statistic. - The
absolute
value is therelative
value divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).
/-- The quotient of a topological group `G` by a closed subgroup `N` is T1. | ||
When `G` is normal, this implies (because `G ⧸ N` is a topological group) that the quotient is T3 | ||
(see `QuotientGroup.instT3Space`). | ||
Back to the general case, we will show later that the quotient is in fact T2 | ||
since `N` acts on `G` properly. -/ |
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.
The T2 instance is added in #30387
The reason I think those instances should coexist is this one only requires ContinuousMul
(or even separate continuity of the multiplication in fact)
This pull request has conflicts, please merge |
This is motivated by #29743, which led me to realize that the current proof of Subgroup.isOpen_of_isClosed_of_finiteIndex is quite complicated. Morally, the proof should be "
G / H
is T1 becauseH
is closed, finite becauseH
has finite index inG
, hence it is discrete, henceH
is open".The issue is that too much of our API on quotient groups (and in particular the separation criterion) was restricted to quotients by normal subgroups. This PR fixes this, and cleans some things along the way.