@@ -36,14 +36,14 @@ of `1` in `L`.
3636 are `n` `n`th roots of unity in `L`.
3737
3838* `cyclotomicCharacter L p : (L ≃+* L) →* ℤ_[p]ˣ` sends `g` to the unique `j` such
39- that `g(ζ) = ζ ^ (j mod pⁱ)` for all `pⁱ`' th roots of unity `ζ`.
39+ that `g(ζ) = ζ ^ (j mod pⁱ)` for all `pⁱ`- th roots of unity `ζ`.
4040
4141 Note: This is defined to be the trivial character if `L` has no enough roots of unity.
4242
4343 ## Implementation note
4444
4545In theory this could be set up as some theory about monoids, being a character
46- on monoid isomorphisms, but under the hypotheses that the `n`' th roots of unity
46+ on monoid isomorphisms, but under the hypotheses that the `n`- th roots of unity
4747are cyclic. The advantage of sticking to integral domains is that finite subgroups
4848are guaranteed to be cyclic, so the weaker assumption that there are `n` `n`th
4949roots of unity is enough. All the applications I'm aware of are when `L` is a
@@ -84,8 +84,8 @@ theorem rootsOfUnity.integer_power_of_ringEquiv' (g : L ≃+* L) :
8484 simpa using rootsOfUnity.integer_power_of_ringEquiv n g
8585
8686/-- `modularCyclotomicCharacter_aux g n` is a non-canonical auxiliary integer `j`,
87- only well-defined modulo the number of `n`' th roots of unity in `L`, such that `g(ζ)=ζ^j`
88- for all `n`' th roots of unity `ζ` in `L`. -/
87+ only well-defined modulo the number of `n`- th roots of unity in `L`, such that `g(ζ)=ζ^j`
88+ for all `n`- th roots of unity `ζ` in `L`. -/
8989noncomputable def modularCyclotomicCharacter.aux (g : L ≃+* L) (n : ℕ) [NeZero n] : ℤ :=
9090 (rootsOfUnity.integer_power_of_ringEquiv n g).choose
9191
@@ -115,7 +115,7 @@ theorem modularCyclotomicCharacter.pow_dvd_aux_pow_sub_aux_pow
115115
116116/-- If `g` is a ring automorphism of `L`, and `n : ℕ+`, then
117117 `modularCyclotomicCharacter.toFun n g` is the `j : ZMod d` such that `g(ζ)=ζ^j` for all
118- `n`' th roots of unity. Here `d` is the number of `n`th roots of unity in `L`. -/
118+ `n`- th roots of unity. Here `d` is the number of `n`th roots of unity in `L`. -/
119119noncomputable def modularCyclotomicCharacter.toFun (n : ℕ) [NeZero n] (g : L ≃+* L) :
120120 ZMod (Fintype.card (rootsOfUnity n L)) :=
121121 modularCyclotomicCharacter.aux g n
@@ -179,7 +179,7 @@ variable (L)
179179
180180/-- Given a positive integer `n`, `modularCyclotomicCharacter' n` is a
181181multiplicative homomorphism from the automorphisms of a field `L` to `(ℤ/dℤ)ˣ`,
182- where `d` is the number of `n`' th roots of unity in `L`. It is uniquely
182+ where `d` is the number of `n`- th roots of unity in `L`. It is uniquely
183183characterised by the property that `g(ζ)=ζ^(modularCyclotomicCharacter n g)`
184184for `g` an automorphism of `L` and `ζ` an `n`th root of unity. -/
185185noncomputable
@@ -296,7 +296,7 @@ variable (L) in
296296/--
297297Suppose `L` is a domain containing all `pⁱ`-th primitive roots with `p` a (rational) prime.
298298If `g` is a ring automorphism of `L`, then `cyclotomicCharacter L p g` is the unique `j : ℤₚ` such
299- that `g(ζ) = ζ ^ (j mod pⁱ)` for all `pⁱ`' th roots of unity `ζ`.
299+ that `g(ζ) = ζ ^ (j mod pⁱ)` for all `pⁱ`- th roots of unity `ζ`.
300300
301301Note: This is the trivial character when `L` does not contain all `pⁱ`-th primitive roots.
302302-/
0 commit comments