Completion of topological rings: #
This files endows the completion of a topological ring with a ring structure.
More precisely the instance uniform_space.completion.ring
builds a ring structure
on the completion of a ring endowed with a compatible uniform structure in the sense of
uniform_add_group
. There is also a commutative version when the original ring is commutative.
The last part of the file builds a ring structure on the biggest separated quotient of a ring.
Main declarations: #
Beyond the instances explained above (that don't have to be explicitly invoked), the main constructions deal with continuous ring morphisms.
uniform_space.completion.extension_hom
: extends a continuous ring morphism fromR
to a complete separated groupS
tocompletion R
.uniform_space.completion.map_ring_hom
: promotes a continuous ring morphism fromR
toS
into a continuous ring morphism fromcompletion R
tocompletion S
.
Equations
- uniform_space.completion.has_one α = {one := ↑1}
Equations
Equations
- uniform_space.completion.ring = {add := add_comm_group.add uniform_space.completion.add_comm_group, add_assoc := _, zero := add_comm_group.zero uniform_space.completion.add_comm_group, zero_add := _, add_zero := _, nsmul := add_comm_group.nsmul uniform_space.completion.add_comm_group, nsmul_zero' := _, nsmul_succ' := _, neg := add_comm_group.neg uniform_space.completion.add_comm_group, sub := add_comm_group.sub uniform_space.completion.add_comm_group, sub_eq_add_neg := _, zsmul := add_comm_group.zsmul uniform_space.completion.add_comm_group, zsmul_zero' := _, zsmul_succ' := _, zsmul_neg' := _, add_left_neg := _, add_comm := _, mul := has_mul.mul (uniform_space.completion.has_mul α), mul_assoc := _, one := 1, one_mul := _, mul_one := _, npow := monoid.npow._default 1 has_mul.mul uniform_space.completion.ring._proof_15 uniform_space.completion.ring._proof_16, npow_zero' := _, npow_succ' := _, left_distrib := _, right_distrib := _}
The map from a uniform ring to its completion, as a ring homomorphism.
Equations
- uniform_space.completion.coe_ring_hom = {to_fun := coe coe_to_lift, map_one' := _, map_mul' := _, map_zero' := _, map_add' := _}
The completion extension as a ring morphism.
Equations
- uniform_space.completion.extension_hom f hf = have hf' : continuous ⇑↑f, from hf, have hf : uniform_continuous ⇑f, from _, {to_fun := uniform_space.completion.extension ⇑f, map_one' := _, map_mul' := _, map_zero' := _, map_add' := _}
The completion map as a ring morphism.
Equations
- uniform_space.completion.comm_ring R = {add := ring.add uniform_space.completion.ring, add_assoc := _, zero := ring.zero uniform_space.completion.ring, zero_add := _, add_zero := _, nsmul := ring.nsmul uniform_space.completion.ring, nsmul_zero' := _, nsmul_succ' := _, neg := ring.neg uniform_space.completion.ring, sub := ring.sub uniform_space.completion.ring, sub_eq_add_neg := _, zsmul := ring.zsmul uniform_space.completion.ring, zsmul_zero' := _, zsmul_succ' := _, zsmul_neg' := _, add_left_neg := _, add_comm := _, mul := ring.mul uniform_space.completion.ring, mul_assoc := _, one := ring.one uniform_space.completion.ring, one_mul := _, mul_one := _, npow := ring.npow uniform_space.completion.ring, npow_zero' := _, npow_succ' := _, left_distrib := _, right_distrib := _, mul_comm := _}
Given a topological ring α
equipped with a uniform structure that makes subtraction uniformly
continuous, get an equivalence between the separated quotient of α
and the quotient ring
corresponding to the closure of zero.
Equations
Equations
- uniform_space.comm_ring = uniform_space.comm_ring._proof_1.mpr (ideal.quotient.comm_ring ⊥.closure)