Consider integers $a,b,c\geq1,$ such that gcd$(a,b,c)=1.$ Show that there exists an integer $n_0$ such that for all $n\geq n_0,$ one can find nonnegative integers $x,y,z$ such that $ax+by+cz=n.$
My attempts:
- Because $(a, b, c)=1,$ Bezout's theorem guarantees that for any $n,$ there always exists $x_0,y_0,z_0,$ such that $ax_0+by_0+cz_0=n.$
- The set of all solutions is given by $\{(x_0+kbc,y_0+kac,z_0-2kab):k\in \mathbb{Z}\}$(not quite sure if this is correct though).
- To get nonnegative solutions, one should have \begin{align*} &x_0+kbc\geq0 \Rightarrow k\geq-\frac{x_0}{bc}\\ &y_0+kab\geq0\Rightarrow k\geq-\frac{y_0}{ab}\\ &z_0-2kab\geq0\Rightarrow k\leq \frac{z_0}{2ab}.\\ \end{align*}
- In order to get integer $k,$ we must have $$\frac{z_0}{2ab}+\frac{y_0}{ab}\geq0\quad\text{and}\quad\frac{z_0}{2ab}+\frac{x_0}{bc}\geq0.$$ And then I stuck, and not quite sure how could we satisfy the above conditions at the same time. Perhaps there is something wrong with my method or this method does not work in this case. How should I finish this proof? Many thanks in advance for any hints and solutions.