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 ringR
is a functionf : R → ℝ
that preserves zero, takes nonnegative values, is subadditive and submultiplicative and such thatf (-x) = f x
for allx ∈ R
.RingNorm
: A seminormf
is a norm iff x = 0
if and only ifx = 0
.MulRingSeminorm
: A multiplicative seminorm on a ringR
is a ring seminorm that preserves multiplication.MulRingNorm
: A multiplicative norm on a ringR
is a ring norm that preserves multiplication.MulRingNorm R
is essentially the same asAbsoluteValue R ℝ
, and it is recommended to use the latter instead to avoid duplicating results.
Notes #
The corresponding hom classes are defined in Mathlib/Analysis/Order/Hom/Basic.lean
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
.
The property of a
RingSeminorm
that for allx
andy
in the ring, the norm ofx * y
is less than the norm ofx
times the norm ofy
.
Instances For
A function f : R → ℝ
is a norm on a (nonunital) ring if it is a seminorm and f x = 0
implies x = 0
.
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
.
Instances For
A multiplicative norm on a ring R
is a multiplicative ring seminorm such that f x = 0
implies x = 0
.
It is recommended to use AbsoluteValue R ℝ
instead (which works for Semiring R
and is equivalent to MulRingNorm R
for a nontrivial Ring R
).
Instances For
Equations
Equations
Equations
The trivial seminorm on a ring R
is the RingSeminorm
taking value 0
at 0
and 1
at
every other element.
Equations
If f
is a ring seminorm on R
with f 1 ≤ 1
and s : ℕ → ℕ
is bounded by n
, then
f (x ^ s (ψ n)) ^ (1 / (ψ n : ℝ))
is eventually bounded.
The trivial norm on a ring R
is the RingNorm
taking value 0
at 0
and 1
at every
other element.
Equations
Equations
The NormedRing
structure on a ring R
determined by a RingNorm
Equations
Instances For
Equations
The trivial seminorm on a ring R
is the MulRingSeminorm
taking value 0
at 0
and 1
at
every other element.
Equations
Equations
Equations
The trivial norm on a ring R
is the MulRingNorm
taking value 0
at 0
and 1
at every
other element.
Equations
Equations
The equivalence of MulRingNorm R
and AbsoluteValue R ℝ
when R
is a nontrivial ring.
Equations
Instances For
A nonzero ring seminorm on a field K
is a ring norm.