Problem: [AIME 1987] Find the number of ordered triples $(a,b,c)$ of positive integers for which $[a,b]=1000$, $[b,c]=2000$ and $[c,a]=2000$, where $[x,y]$ denotes the $\text{lcm}$ of $x$ and $y$.
My Attempt: Clearly $$a=2^{m_1}5^{n_1},b=2^{m_2}5^{n_2}\text{ and }c=2^{m_3}5^{n_3}.$$ Then we need to find solutions to the following set of equations: $$\max\{m_1,m_2\}=3$$ $$\max\{m_2,m_3\}=4$$ $$\max\{m_3,m_1\}=4$$ $$\max\{n_1,n_2\}=3$$ $$\max\{n_2,n_3\}=3$$ $$\max\{n_3,n_1\}=3$$
Frankly I have never seen a system like this before and I would like to know a methodical way of solving such equations.