7.1. Real cyclotomic units
Let u_a = \frac{1-\zeta_p^a}{1-\zeta_p} (a \in \mathbb{Z}, (a,p)=1) be the
usual cyclotomic unit in \mathcal{O}_K^\times. For the real subfield one uses the
conjugation-fixed unit
\varepsilon_a = u_a\,\overline{u_a} = \zeta_p^{\,1-a} \left(\frac{1-\zeta_p^a}{1-\zeta_p}\right)^2 .
It lies in K^+ because complex conjugation fixes it, and it is a unit because both
u_a and \overline{u_a} are units. The range used for prime conductor is
2 \le a \le \frac{p-1}{2}. In that range 0<a<p, so a prime p cannot divide
a; hence (a,p)=1 and the above cyclotomic unit is defined.
Coprimality of the standard indices. Let 2 \le a \le (p-1)/2. Then a is
coprime to p.
Lean code for Lemma7.1.1●1 theorem
Associated Lean declarations
-
theoremdefined in BernoulliRegular/CyclotomicUnits/Basic.leancomplete
theorem BernoulliRegular.realCyclotomicUnit_index_coprime {p : ℕ} [Fact (Nat.Prime p)] {a : ℕ} (ha_two : 2 ≤ a) (ha_le : a ≤ (p - 1) / 2) : a.Coprime p
theorem BernoulliRegular.realCyclotomicUnit_index_coprime {p : ℕ} [Fact (Nat.Prime p)] {a : ℕ} (ha_two : 2 ≤ a) (ha_le : a ≤ (p - 1) / 2) : a.Coprime p
Indices `2 ≤ a ≤ (p - 1) / 2` are automatically coprime to the prime conductor `p`.
The lower bound gives a>0. The upper bound gives a \le (p-1)/2 < p, so a<p.
If p divided a, then since a is positive we would have p \le a,
contradicting a<p. Because p is prime, not being divisible by p is
equivalent to being coprime to p.
-
BernoulliRegular.realCyclotomicUnit[complete]
Real cyclotomic unit. For 2 \le a \le (p-1)/2, the unit
\varepsilon_a \in E^+ is the unique real unit whose image in
\mathcal{O}_K^\times is the conjugation-fixed product u_a\overline{u_a}.
Lean code for Definition7.1.2●1 definition
Associated Lean declarations
-
BernoulliRegular.realCyclotomicUnit[complete]
-
BernoulliRegular.realCyclotomicUnit[complete]
-
defdefined in BernoulliRegular/CyclotomicUnits/Basic.leancomplete
def BernoulliRegular.realCyclotomicUnit.{u_1} {p : ℕ} [Fact (Nat.Prime p)] {K : Type u_1} [Field K] [NumberField K] [IsCyclotomicExtension {p} ℚ K] [NumberField.IsCMField K] (a : ℕ) (ha_two : 2 ≤ a) (ha_le : a ≤ (p - 1) / 2) : (NumberField.RingOfIntegers ↥(NumberField.maximalRealSubfield K))ˣ
def BernoulliRegular.realCyclotomicUnit.{u_1} {p : ℕ} [Fact (Nat.Prime p)] {K : Type u_1} [Field K] [NumberField K] [IsCyclotomicExtension {p} ℚ K] [NumberField.IsCMField K] (a : ℕ) (ha_two : 2 ≤ a) (ha_le : a ≤ (p - 1) / 2) : (NumberField.RingOfIntegers ↥(NumberField.maximalRealSubfield K))ˣ
The real cyclotomic unit in `𝓞 K⁺` attached to `2 ≤ a ≤ (p - 1) / 2`. This wraps the existing descended unit `FLT37.realCyclotomicUnitPlusUnit p K a`, with the index coprimality proved from the standard prime-conductor range.
After extension of scalars from \mathcal{O}_{K^+} to \mathcal{O}_K, this unit
is exactly the standard conjugation-fixed product u_a\overline{u_a}, and is fixed
by complex conjugation.