1

I'm unable to understand reasoning behind following conclusion: If $p$ is irreducible element of PID $R$ and $p$ doesn't divide $a$ of R. Then $p$ and $a$ are relatively prime.

The definition of a irreducible element $p$ is

  1. It's non-invertible
  2. If $p=ef$ then one of $e$ and $f$ is invertible

My problem is following reasoning $p\not|a$ doesn't imply $e\not|a$ and if $e$ does divide $a$ and since it divides $p$ (from def). Wouldn't then the GCD of $p$ and $a$ be $e$ instead of $1$? So they won't be relatively prime.

aitfel
  • 227
  • 1
    $x, y$ are relatively prime in a PID if every greatest divisor of $x, y$ is invertible. The gcds don't need to be the identity. – balddraz Nov 29 '20 at 05:37
  • Invertible elements divide every element, so they don't amount to a non-trivial common factor. For example (in $\Bbb{Z}$) $-1$ divides both $3$ and $5$, but you don't conclude that $3$ and $5$ are not coprime because $-1\neq1$, right? – Jyrki Lahtonen Nov 29 '20 at 05:45

1 Answers1

2

Recall that - generally - in a domain a gcd is defined only up to associates, i.e. up to unit factors, In particular: $\,p,a\,$ are coprime means $\,\gcd(p,a)\approx 1,\,$ i.e. $\,d\mid p,a\iff d\mid 1\iff d\,$ is a unit.

The sought result is a bit more intuitive when viewed slightly more generally. By the Lemma below, in a PID, $\,p\,$ is irreducible $\iff (p)\,$ is a maximal ideal. Generally if $P$ is a maximal ideal we have

$$\begin{align} P\,\ {\rm max},\ P\not\supset A\,&\Rightarrow\, P\!+\!A = (1)\\[.2em] {\rm so}\ \ p\,\ {\rm irred,}\ \ \ p\,\nmid\, a \,&\Rightarrow\, (p,\,a) = (1),\ \text{for $\,P\!=\!(p),\ A\!=\!(a)\,$ in a PID}\end{align}\qquad$$

therefore we conclude that $\ (1) = (p,a) = (\gcd(p,a)),\,$ so $\,p,a\,$ are coprime.


Lemma $ $ For principal ideals: $\ \rm\color{#0a0}{contains} = \color{#c00}{divides}$, $ $ i.e. $\,\color{#0a0}{(a)\supseteq (b)}\iff \color{#c00}{a\mid b},\,$ thus having no proper $\rm\color{#0a0}{containing}$ ideal (maximal) is the same as having no proper $\rm\color{#c00}{divisor}$ (irreducible), $ $ i.e.

$\qquad\quad\begin{eqnarray} (p)\,\text{ is maximal} &\iff&\!\!\ (p)\, \text{ has no proper } \,{\rm\color{#0a0}{container}}\,\ (d)\\ &\iff&\ p\ \ \text{ has no proper}\,\ {\rm\color{#c00}{divisor}}\,\ d\\ &\iff&\ p\ \ \text{ is irreducible}\\ \end{eqnarray}$


Remark $ $ See also Euclid's Lemma in Bezout form, gcd form, and ideal form.

Bill Dubuque
  • 272,048