Before defining the lcm I would like to prove following lemma about its properties:
Lemma If $a$ and $b$ are nonzero integers, then there is a unique positive integer $m$ such that
- $a,b\mid m$,
- $a,b\mid c\implies m\mid c$.
Proof Uniqueness: Suppose $m'$ is another such number, then from (2) follow $m\mid m'$ and $m'\mid m$, thus by Lemma ??? $|m|=|m'|$ and since both are positive, follows that $m=m'$.
Existence: We define $S=\{n\in\mathbb{N} : a,b\mid x\}$, since $|ab|\in S$, then $S\neq\varnothing$. Let $m$ be the minimum of the set (todo: existence from set theory), thus $a,b\mid m$, proving (1).
Now suppose $a,b\mid c$, set $d:=\gcd(a,b)$, then $$...$$ Conclusion $m\mid c$.
Is it possible to fill the dots using Bezout and the usual identities for divisors and gcd? Without primes and Division Algorithm (I think this is one of the standard way) and $\textrm{lcm}(a,b)\gcd(a,b)=ab$. If not, is there an explanation why not?
I tried starting from the second proof of this answer here, but I don't get anywhere.
EDIT
Completion of the proof based on the answer of @haran :
Now suppose $a,b\mid c$, set $d:=\gcd(a,b)$, then $a,b\mid m,c$, thus $a,b\mid \gcd(m,c)\le m$ (because $\gcd(a,b)\le a$). Thus $\gcd(m,c)\in S$, but since $m$ is the minimal element, $\gcd(m,c)=m$ and we can conclude that $m\mid c$.