How many unordered pairs of integers exist such that
Clarification: is the greatest common divisor of and .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let g c d ( x , y ) = k . Let x = k m , y = k n where g c d ( m , n ) = 1 . Now the given equation reduces to k m ⋅ k n ⋅ k = 1 0 8 0 ⟹ k 3 m n = 3 3 2 3 5 .
To solve these cases, it's very important to recall that g c d ( m , n ) = 1 AND that we have to search for unordered pairs.
Possible cases to consider :
1) k = 1 ⟹ m n = 2 7 × 8 × 5 ⟹ m ( , n ) = ( 1 0 8 0 , 1 ) ; ( 1 3 5 , 8 ) ; ( 2 1 6 , 5 ) ; ( 2 7 , 4 0 )
2) k = 2 ⟹ m n = 1 3 5 ⟹ ( m , n ) = ( 1 3 5 , 1 ) ; ( 2 7 , 5 )
3) k = 3 ⟹ m n = 4 0 ⟹ ( m , n ) = ( 4 0 , 1 ) ; ( 8 , 5 ) .
4) k = 6 ⟹ m n = 5 ⟹ ( m , n ) = ( 5 , 1 )
Thus total 9 pairs.