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 1 commit
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
17 changes: 15 additions & 2 deletions FLT/MathlibExperiments/FrobeniusRiou.lean
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,21 @@ 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
4hma4d marked this conversation as resolved.
Show resolved Hide resolved
rw [normal_iff]
intro l
obtain ⟨f, hf⟩ := @f_exists G _ _ L _ K _ _ _ l
have hnz: f≠0 := by refine Monic.ne_zero_of_ne ?h.left.h ?h.left.hp; exact zero_ne_one' K; exact hf.1
4hma4d marked this conversation as resolved.
Show resolved Hide resolved
constructor
rw [← @isAlgebraic_iff_isIntegral]
unfold IsAlgebraic
use f
constructor
exact hnz
exact hf.2.2.1
4hma4d marked this conversation as resolved.
Show resolved Hide resolved
refine Polynomial.splits_of_splits_of_dvd (algebraMap K L) hnz hf.2.2.2 ?_
apply minpoly.dvd; exact hf.2.2.1
4hma4d marked this conversation as resolved.
Show resolved Hide resolved

open FiniteDimensional

Expand Down