There are three distinct positive integers $x$, $y$, and $z$.
We can choose two numbers $a,b\in\{x,y,z\}$, where $b\leq a$,
then replace $b$ by $2b$ and replace $a$ by $a-b$.
Is it true that there exists a method to repeat this process until we get a zero ?
For example, let $(x,y,z)=(3,5,10)$, then $(3,5,10)\rightarrow (6,2,10) \rightarrow (4,4,10) \rightarrow (\mathbf{0},8,10) $.
Let $(x,y,z)=(9,11,2)$, then $(9,11,2)\rightarrow (18,2,2) \rightarrow (18,\mathbf{0},4)$.
Is it true that we can get zero for all $(x,y,z)\in\mathbb{N}^3$ ?
Thanks.
thank you everyone. Now I found that this is problem from IMO 1994 and USAMT 23. Here is solution usamts.org/Solutions/Solutions_23_1.pdf
I wrote a Delphi program which checked that each triple $(x,y,z)$ such that $6\le x+y+z\le 100$ is reducible to a triple with a zero. You can download the program and its results here.