1

How does on prove $\gcd(a, b) = 1 \wedge a\ |\ b\ c \Rightarrow a \ | \ c $ with as elementary steps as possible (i.e. not using the fundamental theorem of arithmetic (unique prime factorization))?

EDIT: I saw that this theorem is called Gauss Theorem and is proved formally for integers $\mathbb Z$ in Coq, https://coq.inria.fr/library/Coq.ZArith.Znumtheory.html#Gauss

EDIT: Clarification: I forgot to tell that I want to prove this for the natural numbers $\mathbb N \geq 0$. Is Bezout's lemma applicable for the natural numbers, or is some other method needed?

larsr
  • 153
  • Yes it seem to be a dupe. Sorry about that. – larsr Nov 20 '15 at 19:08
  • 1
    For a very elementary proof (only euclidean division), not mentioned in the above link, you can take a look at my answer to a similar question. – Bernard Nov 20 '15 at 20:06
  • Thanks, I'll give it a try! I was hoping for a constructive proof - just saying that there exists a smallest element in the set with the desired properties is a bit messy (I'm trying to do a formal proof), but is doable I'm sure. – larsr Nov 20 '15 at 22:02
  • 1
    The proof I gave (I think it's Cauchy's) relies precisely on the fact that $\mathbf N$ is well ordered. – Bernard Nov 20 '15 at 22:25

1 Answers1

0

I am not sure if Bezout's theorem is allowed or not. If $\gcd(a,b)=1$, then by Bezouts's theorem there exist $m,n \in \mathbb{Z}$ such that $ma+nb=1$. It follows that $mac+nbc=c$. Therefore since $a$ divides $mac$ and $nbc$ it must divide $c=mac+nbc$.

Nex
  • 3,852
  • Actually I needed something more trivial (or a trivial proof of Bezouts' theorem). Just using "obvious" properties of gcd and divisibility... – larsr Nov 20 '15 at 19:09
  • Is my proof here trivial enough: http://math.stackexchange.com/questions/1533795/bezouts-theorem/1533855#1533855 – Nex Nov 20 '15 at 19:29
  • Thanks! (see my comment above about a constructive proof...) – larsr Nov 20 '15 at 22:03
  • A clarification: I'd like to do the proof for the natural numbers $0,1,2,...$. I don't think Bezout's lemma holds for the natural numbers, since one of the coefficients usually is negative. Or am I mistaken? – larsr Nov 20 '15 at 23:35