2

I have seen plenty of proofs for this theorem: In a UFD if $(a,b)=1$ and $a|bc$ then $a|c$. They mostly use the gcd distributive law e.g. here. Well I wanted to prove this just by relying on the properties that the UFD had.

My attempt: Since $a|bc$ then for some $r$ we have $ar=bc$. Now by the existence, since we know that any non unit element like $a$ can be rewritten as $t_1×....t_n$ where $t_i$ are irreducible, we can do this:

$$p_1^{α_1}...p_n^{α_n} g_1^{ε_1}...g_m^{ε_m} =q_1^{β_1}...q_k^{β_k}h_1^{ψ_1}...h_i^{ψ_i}$$ (Where $p_i$, $g_i$, $q_i$ and $h_i$ are primes.) By uniqueness the set that is on right should be on left too, Am I right? But since $(a,b)=1$ then $a$ and $b$ shouldn't share prime elements. Somehow it's like $A$ is a subset of $C$. I can't really manage this but it's becoming like a problem in set theory.

Can you please help me with my own approach??

Bill Dubuque
  • 272,048
  • @David Kipper we are in a UFD. Irreducible implies primes. $p_i$'s are primes and so are the other ones. :/ – Hassuni Dec 05 '20 at 14:12
  • Yes, of course, and in fact prime implies irreducible over a UFD, and we can likewise say that over a UFD every nonzero,nonunit can be written as a product of irreducible uniquely. –  Dec 05 '20 at 14:20
  • Yes, but I need that equation to be written in the form of factorization to prime elements! – Hassuni Dec 05 '20 at 14:29
  • 1
    @Hassuni I happen to have an answer previously written on precisely this topic, do take a look if you are interested in seeing a very general approach (arguably the most general): https://math.stackexchange.com/questions/3841783/writing-and-improving-basic-divisibility-proofs-in-ufd-some-examples/3841976#3841976 – ΑΘΩ Dec 05 '20 at 14:46
  • I added a rigorous inductive proof. – Bill Dubuque Dec 05 '20 at 16:30

2 Answers2

4

You're very close. Let's look back at this equation you stated:'

$$ p_1^{α_1}...p_n^{α_n} g_1^{ε_1}...g_m^{ε_m} =q_1^{β_1}...q_k^{β_k}h_1^{ψ_1}...h_i^{ψ_i} $$

corresponding to $ar=bc$. As you said, because we are in a UFD the set of primes, counted with multiplicity, is the same on both sides (up to units). Furthermore, as $(a,b)=1$ then no $p_i$ can divide $b$. Once again by uniqueness, that means that no $p_i$ can divide $q_j$. In fact, we can go farther and say that no $p_i^{\alpha_i}$ can divide $q_j$. Putting this together, all the $p_i^{\alpha_i}$ must appear in the factorization on the right hand side (up to units). Furthermore, the $p_i^{\alpha_i}$ cannot divide the $q_j$. Thus, up to units, the $p_i^{\alpha_i}$ must each divide some $h_j^{\psi_j}$. Hence, all the prime factors of $a$ counted with multiplicity divide $c$. Hence, $a \mid c$.

3

It has a natural proof by induction on the number $\:\!k\:\!$ of prime factors of $\,a,\,$ using as inductive step Euclid's Lemma (if a prime divides a product then it divides some factor). If $\,k=0\,$ then $\,a\,$ is a unit so $\,a\mid c.\,$ Else $\,a = p\bar a\,$ for a prime $\,p\,$ so $\,p\bar a\mid bc\,\Rightarrow\,p\mid b\,$ or $\,p\mid c,\,$ so $\,\color{#c00}{p\mid c}\,$ by $\,(p,b)=1\,$ by $\,(p\bar a,b)=1$. Cancelling $\,p\,$ from $\,p\bar a\mid bc\Rightarrow \bar a\mid b\,\color{#c00}{c/p},\,$ and $\,(\bar a,b)=1\,$ by $\,(p\bar a,b)=1.\,$ Notice $\,\bar a\,$ has fewer prime factors than $\,a=p\bar a,\,$ thus $\,\bar a\mid \color{#c00}{c/p}\underset{\textstyle\times\, p}\Rightarrow p\bar a\mid c\ $ (i.e. $\,a\mid c),\,$ by induction.

Exercise $ $ Make explicit all implicit uses of the existence and uniqueness of prime factorizations that are employed in the proof (necessary to be completely rigorous).

Bill Dubuque
  • 272,048