How many natural solutions does this equation have and why?
$$\operatorname*{lcm}(201, 209) = \operatorname*{lcm}(x, y)$$

- 215
-
There are an infinite number of pairs $(x,y)$ that satisfy this. – Laars Helenius Jan 21 '17 at 23:02
-
Are you absolutely sure? :-) – szw1710 Jan 21 '17 at 23:08
-
That was true if we spoke about $\text{gcd}$ (in this case $1$). – szw1710 Jan 21 '17 at 23:16
-
Laars helenius. What??? – fleablood Jan 22 '17 at 00:02
3 Answers
We want natural numbers $x,y$ such that $$\operatorname{lcm}(x,y)=\operatorname{lcm}(201,209)=\operatorname{lcm}(3\cdot67,\ 11\cdot19)=3\cdot11\cdot19\cdot67=42009.$$ Let $P=\{3,11,19,67]\}.$ Ssolutions are given by $$x=\prod_{p\in X}p,\quad y\in\prod_{p\in Y}p$$ where $$X,Y\subseteq P,\quad X\cup Y=P.$$ The number of solutions with $|X|=k$ is $\binom4k2^k,$ so the total number of solutions is $$\sum_{k=0}^4\binom4k2^k=(1+2)^4=3^4=\boxed{81}.$$
Alternatively, solutions are given by $$x=3^{\alpha_1}\cdot11^{\alpha_2}\cdot19^{\alpha_3}\cdot67^{\alpha_4},\quad y=3^{\beta_1}\cdot11^{\beta_2}\cdot19^{\beta_3}\cdot67^{\beta_4}$$ where $$\max(\alpha_i,\beta_i)=1\text{ for each }i,$$ that is, each $(\alpha_i,\beta_i)$ is either $(0,1)$ or $(1,0$ or $(1,1),$ so the number of solutions is $3^4=\boxed{81}.$
More generally, if $$N=p_1^{\varepsilon_1}p_2^{\varepsilon_2}\cdots p_m^{\varepsilon_m}$$ where $p_1,p_2,\dots,p_m$ are distinct primes and $\varepsilon_1,\varepsilon_2,\dots,\varepsilon_m$ are nonnegative integers, the number of natural solutions of the equation $$\operatorname{lcm}(x,y)=N$$ is $$(2\varepsilon_1+1)(2\varepsilon_2+1)\cdots(2\varepsilon_m+1).$$

- 78,265
Hint. Observe that $201=3\cdot 67$ and $209=11\cdot 19$ are decompositions into prime factors.

- 8,102
-
I got that, but it doesn't quite help, since the answer to this is actually 81, but i don't know why. – John Robbers Jan 21 '17 at 23:03
-
-
There are not too much possibilities to produce two factors from these 4 primes. I'm afraid there are less than 81 possibilities. – szw1710 Jan 21 '17 at 23:11
-
-
It happens. The lecturer is not alpha and omega, so he/she could mistake. :-) – szw1710 Jan 21 '17 at 23:13
-
No, there are 81 if you consider the pair (a,b) to be a different pair than (b,a). Otherwise there are 41 pairs. Don't forget that the factors 3,11,19 and 67 don't have to be in one of the pair; they can be a factor of both. – fleablood Jan 22 '17 at 00:31
-
@JohnRobbers The question has a downvote, probably because it looks like you just posted the problem without even thinking about it. You should edit the question to include information like this: "By doing [such and such], I got [whatever] for the answer, but the answer sheet says [something else] is the correct answer, but I don't understand why that would be" That sort of thing. – pjs36 Jan 22 '17 at 00:32
-
And the pairs should be different as x=m y=n is a different solution than x=n y=m – fleablood Jan 22 '17 at 00:36
-
1There are sixteen $2^4$ solutions IF the pairs must be co prime. But they don't. As the can have factors in common there are $3^4$. – fleablood Jan 22 '17 at 00:37
201 = 3x67 and 209=11x19.
So to have lcm (a,b)= 3x67x11x19, each of those factors must either i) be a factor of a, ii) be a factor b or iii) be a factor of both a and b. (And a and b can't have any other factors). That's three options for 4 factors so there are $3^4=81$ possible pairs.
They are from 0000 to 2222:
0000:(3x11x19x67,1)
0001:(11x19x67,,3)
0002:(3x11x19x67,3)
0010:(3x19x67,11)
0011:(19x67,3x11)
0012:(3x19x67,3x11)
0020:(3x11x19x67,11)
0021:(11x19x67,3x11)
0022:(3x11x19x67,3x11)
etc.
the last to first digits represent the factors 3,11,19 and 16 and 0 mean the factor is a factor of a; 1 means it's a factor of b; and 2 means it's a factor of both:
So 1201 means 3 is a factor of b, 11 is a factor of a, 19 is a factor of both, and 67 is a factor of a. So the pair is (11x19x67,3x19).

- 124,253