-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add 09GY lemma to AlgebraicClosure.lean #4
base: master
Are you sure you want to change the base?
Conversation
PR summary bb960f36cImport changes for modified filesNo significant changes to the import graph Import changes for all files
Declarations diff
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 |
@@ -416,4 +416,25 @@ instance [CharZero k] : CharZero (AlgebraicClosure k) := | |||
instance {p : ℕ} [CharP k p] : CharP (AlgebraicClosure k) p := | |||
charP_of_injective_algebraMap (RingHom.injective (algebraMap k (AlgebraicClosure k))) p | |||
|
|||
/-09GY Lemma: Two polynomials in $k[x]$ are relatively prime |
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.
- Write
/--
instead of/-
, as this will generate comments on the Mathlib documentation website. - There's no need to write “09GY Lemma:”; just mark the Stacks tag on the last line.
/-09GY Lemma: Two polynomials in $k[x]$ are relatively prime | ||
precisely when they have no common roots in an algebraic closure $\overline{k}$ of $k$. | ||
[Stacks: Lemma 09GY](https://stacks.math.columbia.edu/tag/09GY) -/ | ||
lemma IsComrime_iff_no_common_root {k : Type*} [Field k] {p q : Polynomial k} : |
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 name should change to isComrime_iff_no_common_root
. You can read naming conventions to know how to name theorems correctly.
We added lemma that 'Two polynomials in$k[x]$ are relatively prime precisely when they$\overline{k}$ of $k$ .' into Mathlib.FieldTheory.IsAlgClosed.AlgebraicClosure.lean .
have no common roots in an algebraic closure
It could only be an application of algebraic closure, and may be placed elsewhere.
Co-authored-by: Yi Song [email protected]