Documentation

Mathlib.RingTheory.DedekindDomain.Factorization

Factorization of ideals and fractional ideals of Dedekind domains #

Every nonzero ideal I of a Dedekind domain R can be factored as a product ∏_v v^{n_v} over the maximal ideals of R, where the exponents n_v are natural numbers.

Similarly, every nonzero fractional ideal I of a Dedekind domain R can be factored as a product ∏_v v^{n_v} over the maximal ideals of R, where the exponents n_v are integers. We define FractionalIdeal.count K v I (abbreviated as val_v(I) in the documentation) to be n_v, and we prove some of its properties. If I = 0, we define val_v(I) = 0.

Main definitions #

Main results #

Implementation notes #

Since we are only interested in the factorization of nonzero fractional ideals, we define val_v(0) = 0 so that every val_v is in and we can avoid having to use WithTop.

Tags #

dedekind domain, fractional ideal, ideal, factorization

Factorization of ideals of Dedekind domains #

Given a maximal ideal v and an ideal I of R, maxPowDividing returns the maximal power of v dividing I.

Equations
Instances For

    Only finitely many maximal ideals of R divide a given nonzero ideal.

    For every nonzero ideal I of v, there are finitely many maximal ideals v such that the multiplicity of v in the factorization of I, denoted val_v(I), is nonzero.

    For every nonzero ideal I of v, there are finitely many maximal ideals v such that v^(val_v(I)) is not the unit ideal.

    For every nonzero ideal I of v, there are finitely many maximal ideals v such that v^(val_v(I)), regarded as a fractional ideal, is not (1).

    For every nonzero ideal I of v, there are finitely many maximal ideals v such that v^-(val_v(I)) is not the unit ideal.

    For every nonzero ideal I of v, v^(val_v(I) + 1) does not divide ∏_v v^(val_v(I)).

    The multiplicity of v in ∏_v v^(val_v(I)) equals val_v(I).

    The ideal I equals the finprod ∏_v v^(val_v(I)).

    The ideal I equals the finprod ∏_v v^(val_v(I)), when both sides are regarded as fractional ideals of R.

    Factorization of fractional ideals of Dedekind domains #

    If I is a nonzero fractional ideal, a ∈ R, and J is an ideal of R such that I = a⁻¹J, then I is equal to the product ∏_v v^(val_v(J) - val_v(a)).

    For a nonzero k = r/s ∈ K, the fractional ideal (k) is equal to the product ∏_v v^(val_v(r) - val_v(s)).

    For a nonzero k = r/s ∈ K, the fractional ideal (k) is equal to the product ∏_v v^(val_v(r) - val_v(s)).

    If I is a nonzero fractional ideal, a ∈ R, and J is an ideal of R such that I = a⁻¹J, then we define val_v(I) as (val_v(J) - val_v(a)). If I = 0, we set val_v(I) = 0.

    Equations
    • One or more equations did not get rendered due to their size.
    Instances For

      val_v(0) = 0.

      val_v(I) does not depend on the choice of a and J used to represent I.

      theorem FractionalIdeal.count_mul {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) {I I' : FractionalIdeal (nonZeroDivisors R) K} (hI : I 0) (hI' : I' 0) :
      count K v (I * I') = count K v I + count K v I'

      For nonzero I, I', val_v(I*I') = val_v(I) + val_v(I').

      theorem FractionalIdeal.count_mul' {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) (I I' : FractionalIdeal (nonZeroDivisors R) K) [Decidable (I 0 I' 0)] :
      count K v (I * I') = if I 0 I' 0 then count K v I + count K v I' else 0

      For nonzero I, I', val_v(I*I') = val_v(I) + val_v(I'). If I or I' is zero, then val_v(I*I') = 0.

      val_v(1) = 0.

      theorem FractionalIdeal.count_prod {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) {ι : Type u_3} (s : Finset ι) (I : ιFractionalIdeal (nonZeroDivisors R) K) (hS : is, I i 0) :
      count K v (∏ is, I i) = is, count K v (I i)
      theorem FractionalIdeal.count_pow {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) (n : ) (I : FractionalIdeal (nonZeroDivisors R) K) :
      count K v (I ^ n) = n * count K v I

      For every n ∈ ℕ and every ideal I, val_v(I^n) = n*val_v(I).

      val_v(v) = 1, when v is regarded as a fractional ideal.

      theorem FractionalIdeal.count_pow_self {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) (n : ) :
      count K v (v.asIdeal ^ n) = n

      val_v(v^n) = n for every n ∈ ℕ.

      theorem FractionalIdeal.count_neg_zpow {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) (n : ) (I : FractionalIdeal (nonZeroDivisors R) K) :
      count K v (I ^ (-n)) = -count K v (I ^ n)

      val_v(I⁻ⁿ) = -val_v(Iⁿ) for every n ∈ ℤ.

      theorem FractionalIdeal.count_zpow {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) (n : ) (I : FractionalIdeal (nonZeroDivisors R) K) :
      count K v (I ^ n) = n * count K v I

      val_v(Iⁿ) = n*val_v(I) for every n ∈ ℤ.

      theorem FractionalIdeal.count_zpow_self {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) (n : ) :
      count K v (v.asIdeal ^ n) = n

      val_v(v^n) = n for every n ∈ ℤ.

      If v ≠ w are two maximal ideals of R, then val_v(w) = 0.

      val_v(∏_{w ≠ v} w^{exps w}) = 0.

      If exps is finitely supported, then val_v(∏_w w^{exps w}) = exps v.

      theorem FractionalIdeal.count_mono {R : Type u_1} [CommRing R] (K : Type u_2) [Field K] [Algebra R K] [IsFractionRing R K] [IsDedekindDomain R] (v : IsDedekindDomain.HeightOneSpectrum R) {I J : FractionalIdeal (nonZeroDivisors R) K} (hI : I 0) (h : I J) :
      count K v J count K v I

      If I is a nonzero fractional ideal, then I is equal to the product ∏_v v^(count K v I).

      If I ≠ 0, then val_v(I) = 0 for all but finitely many maximal ideals of R.

      val_v(I) = 0 for all but finitely many maximal ideals of R.