8.3: Dominios euclidianos
( \newcommand{\kernel}{\mathrm{null}\,}\)
Crear un campo de fracciones es una forma de resolver definitivamente los problemas de división en un dominio integral: Componer fracciones para tener una inversa para cada elemento distinto de cero. Pero hay (a veces) otra manera de definir la división sin recurrir a introducir nuevos elementos al campo, familiares a partir de los enteros: definir la división usando un 'cociente' y un 'resto'.
Por ejemplo, entre los enteros podemos escribir25=8⋅3+1; then 25/3 has a quotient 8 and remainder 1. Generally, to find n/m, we write n=qm+r, where 0<r<|m|. Then q is the quotient and r is the remainder.
Podemos hacer algo similar con polinomios: Dados dos polinomiosf and g, we can divide f by g and uniquely write f=Qg+R, where Q is a polynomial and R is a polynomial of lower degree than g.
Por ejemplo, tomef=2x5+3x2+x+3 and g=x2+1, we can apply the polynomial long division algorithm and get f=(2x3−2x+3)g−x. Here 2x3−2x+3 is the whole part and −x is the remainder.
Tanto en la división entera como en la división polinómica, el ingrediente clave es una forma de ordenar los elementos del anillo: en los enteros, ordenamos por el orden habitual de los enteros, y con polinomios ordenamos por el grado del polinomio.
Una norma en un anilloR is a function n:R→Z≥0 with n(0)=0. A positive norm has n(r)>0 for all r≠0.
Cualquier anillo dado puede tener muchas normas diferentes. La norma sobre los enteros es simplemente el valor absoluto del entero; es una norma positiva. La norma en polinomios es el grado del polinomio.
Un dominio euclidiano es un dominio integralR with a norm n such that for any a,b∈R, there exist q,r such that a=q⋅b+r with n(r)<n(b). The element q is called the quotient and r is the remainder.
Un dominio euclidiano tiene entonces el mismo tipo de solución parcial a la cuestión de la división que tenemos en los enteros.
De hecho, los dominios euclidianos tienen además un algoritmo euclidiano para encontrar un divisor común de dos elementos. El algoritmo euclidiano se realiza comenzando con dos elementosf and g for which we wish to find a common divisor. Dividing f by g gives a quotient q0 and a remainder r0. We then divide g by r0 and obtain a new quotinet q1 and a new remainder, r1. We then repeat this process to get quotients q2,q3,…qk and remainders r2,r3,…rk. Each remainder has smaller norm than the previous, so this process must eventually terminate with some rk=0.
El cociente final,qk divides both g and f: You can see this by writing f=q0g+r0, and then expanding r0: f=q0(q1r0+r1)+r0. If we imagine the process ending at this point, so that r1=0, we then have r0 divides both f and g. On the other hand, if the process doesn't terminate, we can expand r0=q2r1+r2. Then f=q0(q1(q2r1+r2)+r1)+q2r1+r2. If the process terminates, then r2=0, and r1 divides every term, and thus divides f and g. If the process doesn't terminate, we repeat the same basic argument.
(TODO: Ejemplos en Z y Z [x])