-
Notifications
You must be signed in to change notification settings - Fork 839
feat(NumberField/Cyclotomic): splitting of the prime p
in the p^k
-th cyclotomic field
#30682
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
base: master
Are you sure you want to change the base?
Conversation
p
in the p ^ k
-th cyclotomic fieldp
in the p^k
-th cyclotomic field
PR summary 1838dfbf5dImport changes for modified filesNo significant changes to the import graph Import changes for all files
|
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.
@erdOne do you know it there are plans to add a IsTotallyRamified
predicate?
|
||
/-- Given an `n`-th primitive root of unity `ζ`, we have that `ζ - 1` is associated to any of its | ||
conjugate. -/ | ||
theorem associated_sub_one_map_sub_one {n : ℕ} [NeZero n] {R : Type*} [CommRing R] [Algebra R A] |
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.
Can you put {R : Type*} [CommRing R] [Algebra R A]
in a variable
line? Maybe at the beginning of the file.
/-- Given an `n`-th primitive root of unity `ζ`, we have that two conjugates of `ζ - 1` | ||
are associated. -/ | ||
theorem associated_map_sub_one_map_sub_one {n : ℕ} [NeZero n] {R : Type*} [CommRing R] [Algebra R A] | ||
(hζ : IsPrimitiveRoot ζ n) {σ τ : A ≃ₐ[R] A} : |
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.
(hζ : IsPrimitiveRoot ζ n) {σ τ : A ≃ₐ[R] A} : | |
(hζ : IsPrimitiveRoot ζ n) (σ τ : A ≃ₐ[R] A) : |
apply hζ.associated_pow_sub_one_pow_of_coprime | ||
· exact ZMod.val_coe_unit_coprime ((autToPow R hζ) τ) | ||
· exact ZMod.val_coe_unit_coprime ((autToPow R hζ) σ) |
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.
apply hζ.associated_pow_sub_one_pow_of_coprime | |
· exact ZMod.val_coe_unit_coprime ((autToPow R hζ) τ) | |
· exact ZMod.val_coe_unit_coprime ((autToPow R hζ) σ) | |
apply hζ.associated_pow_sub_one_pow_of_coprime <;> | |
exact ZMod.val_coe_unit_coprime ((autToPow R hζ) _) |
Untested.
theorem associated_norm_zeta_sub_one : Associated (Algebra.norm ℤ (hζ.toInteger - 1)) (p : ℤ) := by | ||
by_cases h : p = 2 | ||
· cases k with | ||
| zero => | ||
rw [h, zero_add, pow_one] at hK hζ | ||
rw [hζ.norm_toInteger_sub_one_of_eq_two, h, Int.ofNat_two, Associated.neg_left_iff] | ||
| succ n => | ||
rw [h, add_assoc, show 1 + 1 = 2 by rfl] at hK hζ | ||
rw [hζ.norm_toInteger_sub_one_of_eq_two_pow, h, Int.ofNat_two] | ||
· rw [hζ.norm_toInteger_sub_one_of_prime_ne_two h] |
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.
theorem associated_norm_zeta_sub_one : Associated (Algebra.norm ℤ (hζ.toInteger - 1)) (p : ℤ) := by | |
by_cases h : p = 2 | |
· cases k with | |
| zero => | |
rw [h, zero_add, pow_one] at hK hζ | |
rw [hζ.norm_toInteger_sub_one_of_eq_two, h, Int.ofNat_two, Associated.neg_left_iff] | |
| succ n => | |
rw [h, add_assoc, show 1 + 1 = 2 by rfl] at hK hζ | |
rw [hζ.norm_toInteger_sub_one_of_eq_two_pow, h, Int.ofNat_two] | |
· rw [hζ.norm_toInteger_sub_one_of_prime_ne_two h] | |
theorem associated_norm_zeta_sub_one : Associated (Algebra.norm ℤ (hζ.toInteger - 1)) (p : ℤ) := by | |
by_cases h : p = 2 | |
· cases k with | |
| zero => | |
rw [h, zero_add, pow_one] at hK hζ | |
rw [hζ.norm_toInteger_sub_one_of_eq_two, h, Int.ofNat_two, Associated.neg_left_iff] | |
| succ n => | |
rw [h, add_assoc, show 1 + 1 = 2 by rfl] at hK hζ | |
rw [hζ.norm_toInteger_sub_one_of_eq_two_pow, h, Int.ofNat_two] | |
· rw [hζ.norm_toInteger_sub_one_of_prime_ne_two h] |
Just changing the indentation.
I'm not aware of any. |
The prime ideal above the prime
p
in thep^k
-th cyclotomic field is totally ramified.