-
Notifications
You must be signed in to change notification settings - Fork 56
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
FrobeniusRiou sorrys #137
FrobeniusRiou sorrys #137
Conversation
…nto ImperialCollegeLondon-main
Imperial college london main
Merge Update
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.
Do you need the dead code? Apart from this it seems ready to roll.
/-- | ||
private theorem F_descent_monic | ||
(hFull : ∀ (b : B), (∀ (g : G), g • b = b) → ∃ a : A, b = a) (b : B) : | ||
∃ M : A[X], (M : B[X]) = F G b ∧ Monic M := by | ||
have : F G b ∈ Polynomial.lifts (algebraMap A B) := by | ||
choose M hM using F_descent hFull b | ||
use M; exact hM | ||
choose M hM using lifts_and_degree_eq_and_monic this (F_monic b) | ||
use M | ||
exact ⟨hM.1, hM.2.2⟩ | ||
|
||
variable (G) in | ||
noncomputable def M [Finite G] (b : B) : A[X] := (F_descent_monic hFull b).choose | ||
|
||
theorem M_spec (b : B) : ((M G hFull b : A[X]) : B[X]) = F G b := | ||
(F_descent_monic hFull b).choose_spec.1 | ||
|
||
theorem M_spec' (b : B) : (map (algebraMap A B) (M G hFull b)) = F G b := | ||
(F_descent_monic hFull b).choose_spec.1 | ||
|
||
theorem M_monic (b : B) : (M G hFull b).Monic := (F_descent_monic hFull b).choose_spec.2 | ||
--/ |
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.
Is this dead code? Is there any reason it's still there?
|
||
|
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.
No description provided.