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

Add 09GY lemma to AlgebraicClosure.lean #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

su00000
Copy link
Collaborator

@su00000 su00000 commented Aug 28, 2024

We added lemma that 'Two polynomials in $k[x]$ are relatively prime precisely when they
have no common roots in an algebraic closure $\overline{k}$ of $k$.' into Mathlib.FieldTheory.IsAlgClosed.AlgebraicClosure.lean .
It could only be an application of algebraic closure, and may be placed elsewhere.

Co-authored-by: Yi Song [email protected]


Open in Gitpod

Copy link

github-actions bot commented Aug 28, 2024

PR summary bb960f36c

Import changes for modified files

No significant changes to the import graph

Import changes for all files
Files Import difference

Declarations diff

+ IsComrime_iff_no_common_root

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 script/declarations_diff.sh contains some details about this script.

@@ -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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Write /-- instead of /-, as this will generate comments on the Mathlib documentation website.
  2. 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} :
Copy link
Collaborator

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants