Skip to content
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

Proved that L/K is normal #160

Merged
merged 3 commits into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions FLT/MathlibExperiments/FrobeniusRiou.lean
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,17 @@ theorem algebraic {A : Type*} [CommRing A] {B : Type*} [Nontrivial B] [CommRing
rw [eval_map, eval₂_hom, F_eval_eq_zero]
exact algebraMap.coe_zero

theorem normal : Normal K L := by
sorry
include G in
theorem normal [DecidableEq L] : Normal K L := by
rw [normal_iff]
intro l
obtain ⟨f, hfmonic, _, hf, hfsplits⟩ := @f_exists G _ _ L _ K _ _ _ l
have hnz : f ≠ 0 := hfmonic.ne_zero
constructor
· rw [← isAlgebraic_iff_isIntegral]
exact ⟨f, hfmonic.ne_zero, hf⟩
refine Polynomial.splits_of_splits_of_dvd (algebraMap K L) hnz hfsplits ?_
exact minpoly.dvd _ _ hf

open FiniteDimensional

Expand Down