-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat: Refactor and add some easy lemmas about Galois theory #22759
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
Closed
Closed
Changes from 15 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
df1109d
refactor and add some easy lemmas about Galois theory
yhtq c009390
fix style
yhtq f2dd068
fix
yhtq 3f5a45f
update
yhtq eed61d8
update
yhtq e8490e6
update
yhtq c866026
fix
yhtq 1106175
update
yhtq 8811edb
Update Mathlib/FieldTheory/Galois/Basic.lean
yhtq 0bd1fbb
Update Mathlib/FieldTheory/Galois/Basic.lean
yhtq ac27fd8
Update Mathlib/FieldTheory/Galois/Basic.lean
yhtq 8e41976
Revert "Update Mathlib/FieldTheory/Galois/Basic.lean"
yhtq 2f3e6ac
Reapply "Update Mathlib/FieldTheory/Galois/Basic.lean"
yhtq 226f165
remove duplicated lemmma in KrullToplogy.lean
yhtq 2dd3867
update
yhtq 2bfcdd6
update
yhtq db24c97
fix deprecated message
yhtq 324a7e0
change to alias
yhtq 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
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 |
|---|---|---|
|
|
@@ -184,11 +184,16 @@ namespace IntermediateField | |
| def fixedField : IntermediateField F E := | ||
| FixedPoints.intermediateField H | ||
|
|
||
| theorem mem_fixedField_iff (x) : | ||
| @[simp] lemma mem_fixedField_iff (x) : | ||
| x ∈ fixedField H ↔ ∀ f ∈ H, f x = x := by | ||
| show x ∈ MulAction.fixedPoints H E ↔ _ | ||
| simp only [MulAction.mem_fixedPoints, Subtype.forall, Subgroup.mk_smul, AlgEquiv.smul_def] | ||
|
|
||
| @[simp] lemma fixedField_bot : | ||
| IntermediateField.fixedField (⊥ : Subgroup (E ≃ₐ[F] E)) = ⊤ := by | ||
| ext | ||
| simp | ||
|
|
||
| theorem finrank_fixedField_eq_card [FiniteDimensional F E] [DecidablePred (· ∈ H)] : | ||
| finrank (fixedField H) E = Fintype.card H := | ||
| FixedPoints.finrank_eq_card H E | ||
|
|
@@ -205,6 +210,17 @@ lemma fixingSubgroup_anti : Antitone (IntermediateField.fixingSubgroup (F := F) | |
| rw [← le_iff_le] | ||
| exact le_trans h ((le_iff_le _ _).mpr (le_refl K'.fixingSubgroup)) | ||
|
|
||
| @[simp] lemma mem_fixingSubgroup_iff (σ) : σ ∈ fixingSubgroup K ↔ ∀ x ∈ K, σ x = x := | ||
| _root_.mem_fixingSubgroup_iff _ | ||
|
Contributor
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. I wonder whether the |
||
|
|
||
| @[simp] lemma fixingSubgroup_top : fixingSubgroup (⊤ : IntermediateField F E) = ⊥ := by | ||
| ext | ||
| simp [DFunLike.ext_iff] | ||
|
|
||
| @[simp] lemma fixingSubgroup_bot : fixingSubgroup (⊥ : IntermediateField F E) = ⊤ := by | ||
| ext | ||
| simp [mem_bot] | ||
|
|
||
| /-- The fixing subgroup of `K : IntermediateField F E` is isomorphic to `E ≃ₐ[K] E` -/ | ||
| def fixingSubgroupEquiv : fixingSubgroup K ≃* E ≃ₐ[K] E where | ||
| toFun ϕ := { AlgEquiv.toRingEquiv (ϕ : E ≃ₐ[F] E) with commutes' := ϕ.mem } | ||
|
|
@@ -258,6 +274,19 @@ theorem fixedField_fixingSubgroup [FiniteDimensional F E] [h : IsGalois F E] : | |
| Fintype.card_congr (IntermediateField.fixingSubgroupEquiv K).toEquiv] | ||
| exact (card_aut_eq_finrank K E).symm | ||
|
|
||
| @[simp] lemma fixedField_top [IsGalois F E] [FiniteDimensional F E] : | ||
| IntermediateField.fixedField (⊤ : Subgroup (E ≃ₐ[F] E)) = ⊥ := by | ||
yhtq marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| rw [← fixingSubgroup_bot, fixedField_fixingSubgroup] | ||
|
|
||
| theorem mem_bot_iff_fixed [IsGalois F E] [FiniteDimensional F E] (x : E) : | ||
| x ∈ (⊥ : IntermediateField F E) ↔ ∀ f : E ≃ₐ[F] E, f x = x := by | ||
| rw [← fixedField_top, mem_fixedField_iff] | ||
| simp only [Subgroup.mem_top, forall_const] | ||
|
|
||
| theorem mem_range_algebraMap_iff_fixed [IsGalois F E] [FiniteDimensional F E] (x : E) : | ||
| x ∈ Set.range (algebraMap F E) ↔ ∀ f : E ≃ₐ[F] E, f x = x := | ||
| mem_bot_iff_fixed x | ||
|
|
||
| theorem card_fixingSubgroup_eq_finrank [DecidablePred (· ∈ IntermediateField.fixingSubgroup K)] | ||
| [FiniteDimensional F E] [IsGalois F E] : | ||
| Fintype.card (IntermediateField.fixingSubgroup K) = finrank K E := by | ||
|
|
@@ -309,8 +338,8 @@ open scoped Pointwise | |
|
|
||
| lemma IntermediateField.restrictNormalHom_ker (E : IntermediateField K L) [Normal K E] : | ||
| (restrictNormalHom E).ker = E.fixingSubgroup := by | ||
| simp [fixingSubgroup, Subgroup.ext_iff, AlgEquiv.ext_iff, Subtype.ext_iff, | ||
| restrictNormalHom_apply, mem_fixingSubgroup_iff] | ||
| simp [Subgroup.ext_iff, AlgEquiv.ext_iff, Subtype.ext_iff, | ||
| restrictNormalHom_apply] | ||
|
|
||
| namespace IsGalois | ||
|
|
||
|
|
||
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
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.
Uh oh!
There was an error while loading. Please reload this page.