0

I'm having some trouble with the following question:

Determine all natural numbers $n,m$ such that: $\gcd(n,m)=10$, and $\text{lcm}(n,m)=100$.

Using this I arrived at the following conditions:

  • $\gcd(n,m)=10$
  • $nm=1000$

But I don't know how to proceed. How can I do this?

3 Answers3

3

Let $n = 2^a\cdot 5^b, m=2^c\cdot5^d$

Since $\gcd(n, m)=10$, we know that $\min(a,c)=1$ and $\min(b,d)=1$.

Since $lcm(n, m) = 100=10^2,$ we know that $\max(a,c)=2$ and $\max(b,d)=2$.

Hence, $(a, c), (b,d) \in \{(1,2), (2,1)\}$.

Siong Thye Goh
  • 149,520
  • 20
  • 88
  • 149
1

Hint:$$mn = 1000, \ \ 10 \le m,n \le 100$$ So what you need to do is just to check $10$ numbers that are divisible by $10$ and not exceeding $100$.

VIVID
  • 11,604
0

HintL Let $m=10m'$ and $n=10n'$. Then $\gcd(m',n')=1$ and $m'n'=10$. There are only a few solutions now.

lhf
  • 216,483