Seminorms and norms on rings #
This file defines seminorms and norms on rings. These definitions are useful when one needs to consider multiple (semi)norms on a given ring.
Main declarations #
For a ring R:
RingSeminorm: A seminorm on a ringRis a functionf : R → ℝthat preserves zero, takes nonnegative values, is subadditive and submultiplicative and such thatf (-x) = f xfor allx ∈ R.RingNorm: A seminormfis a norm iff x = 0if and only ifx = 0.MulRingSeminorm: A multiplicative seminorm on a ringRis a ring seminorm that preserves multiplication.MulRingNorm: A multiplicative norm on a ringRis a ring norm that preserves multiplication.
Notes #
The corresponding hom classes are defined in Mathlib.Analysis.Order.Hom.Basic to be used by
absolute values.
References #
- [S. Bosch, U. Güntzer, R. Remmert, Non-Archimedean Analysis][bosch-guntzer-remmert]
Tags #
ring_seminorm, ring_norm
A seminorm on a ring R is a function f : R → ℝ that preserves zero, takes nonnegative
values, is subadditive and submultiplicative and such that f (-x) = f x for all x ∈ R.
- toFun : R → ℝ
- map_zero' : self.toFun 0 = 0
The property of a
RingSeminormthat for allxandyin the ring, the norm ofx * yis less than the norm ofxtimes the norm ofy.
Instances For
A multiplicative seminorm on a ring R is a function f : R → ℝ that preserves zero and
multiplication, takes nonnegative values, is subadditive and such that f (-x) = f x for all x.
- toFun : R → ℝ
- map_zero' : self.toFun 0 = 0
- map_one' : self.toFun 1 = 1
The proposition that the function preserves 1
The proposition that the function preserves multiplication
Instances For
Equations
- RingSeminorm.funLike = { coe := fun (f : RingSeminorm R) => f.toFun, coe_injective' := ⋯ }
Equations
- ⋯ = ⋯
Equations
- RingSeminorm.instZeroRingSeminormToNonUnitalNonAssocRing = { zero := let __src := Zero.zero; { toAddGroupSeminorm := __src, mul_le' := ⋯ } }
Equations
- RingSeminorm.instInhabitedRingSeminormToNonUnitalNonAssocRing = { default := 0 }
The trivial seminorm on a ring R is the RingSeminorm taking value 0 at 0 and 1 at
every other element.
Equations
- RingSeminorm.instOneRingSeminormToNonUnitalNonAssocRing = { one := let __src := 1; { toAddGroupSeminorm := __src, mul_le' := ⋯ } }
The norm of a NonUnitalSeminormedRing as a RingSeminorm.
Equations
- normRingSeminorm R = let __src := normAddGroupSeminorm R; { toAddGroupSeminorm := { toFun := norm, map_zero' := ⋯, add_le' := ⋯, neg' := ⋯ }, mul_le' := ⋯ }
Instances For
Equations
- ⋯ = ⋯
The trivial norm on a ring R is the RingNorm taking value 0 at 0 and 1 at every
other element.
Equations
- RingNorm.instOneRingNormToNonUnitalNonAssocRing R = { one := let __src := 1; let __src_1 := 1; { toRingSeminorm := __src, eq_zero_of_map_eq_zero' := ⋯ } }
Equations
- RingNorm.instInhabitedRingNormToNonUnitalNonAssocRing R = { default := 1 }
Equations
- MulRingSeminorm.funLike = { coe := fun (f : MulRingSeminorm R) => f.toFun, coe_injective' := ⋯ }
Equations
- ⋯ = ⋯
The trivial seminorm on a ring R is the MulRingSeminorm taking value 0 at 0 and 1 at
every other element.
Equations
- MulRingSeminorm.instOneMulRingSeminorm = { one := let __src := 1; { toAddGroupSeminorm := __src, map_one' := ⋯, map_mul' := ⋯ } }
Equations
- MulRingSeminorm.instInhabitedMulRingSeminorm = { default := 1 }
Equations
- MulRingNorm.funLike = { coe := fun (f : MulRingNorm R) => f.toFun, coe_injective' := ⋯ }
Equations
- ⋯ = ⋯
The trivial norm on a ring R is the MulRingNorm taking value 0 at 0 and 1 at every
other element.
Equations
- MulRingNorm.instOneMulRingNorm R = { one := let __src := 1; let __src_1 := 1; { toMulRingSeminorm := __src, eq_zero_of_map_eq_zero' := ⋯ } }
Equations
- MulRingNorm.instInhabitedMulRingNorm R = { default := 1 }
A nonzero ring seminorm on a field K is a ring norm.
Equations
- RingSeminorm.toRingNorm f hnt = { toRingSeminorm := f, eq_zero_of_map_eq_zero' := ⋯ }
Instances For
The norm of a NonUnitalNormedRing as a RingNorm.
Equations
- One or more equations did not get rendered due to their size.