The valuation on a quotient ring #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
The support of a valuation v : valuation R Γ₀
is supp v
. If J
is an ideal of R
with h : J ⊆ supp v
then the induced valuation
on R / J = ideal.quotient J
is on_quot v h
.
If hJ : J ⊆ supp v
then on_quot_val hJ
is the induced function on R/J as a function.
Note: it's just the function; the valuation is on_quot hJ
.
Equations
- v.on_quot_val hJ = λ (q : R ⧸ J), quotient.lift_on' q ⇑v _
The extension of valuation v on R to valuation on R/J if J ⊆ supp v
Equations
- v.on_quot hJ = {to_monoid_with_zero_hom := {to_fun := v.on_quot_val hJ, map_zero' := _, map_one' := _, map_mul' := _}, map_add_le_max' := _}
The quotient valuation on R/J has support supp(v)/J if J ⊆ supp v.
If hJ : J ⊆ supp v
then on_quot_val hJ
is the induced function on R/J as a function.
Note: it's just the function; the valuation is on_quot hJ
.
Equations
- v.on_quot_val hJ = valuation.on_quot_val v hJ
The extension of valuation v on R to valuation on R/J if J ⊆ supp v
Equations
- v.on_quot hJ = valuation.on_quot v hJ
The quotient valuation on R/J has support supp(v)/J if J ⊆ supp v.