Find the number of coprime pairs of positive integers subject to such that 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.
For people who don't know this, it's called Vieta Root Jumping/Root Flipping . I learned it from the second worked example. Which is similar to this problem. (Actually, this problem is very familiar.)
First note that if a ∣ b 2 − 1 1 and b ∣ a 2 − 1 1 , then a b ∣ a 2 + b 2 − 1 1 . Then let a b a 2 + b 2 − 1 1 = k , for some positive integer k .
⟹ a 2 + b 2 − 1 1 = k a b ⟹ b 2 − k a b + ( a 2 − 1 1 ) = 0
So b is a root of the equation x 2 − k a x + ( a 2 − 1 1 ) = 0 .
By Vieta's Formulas, the other root is r = ( k a − b ) = b a 2 − 1 1 . We know that r should be an integer since b + r = k a . In which b and k a are integers.
If a 2 − 1 1 > 0 , we have a 2 < a b or a < b and 0 < r < a which follows the conditions. So the solutions r and a here is the same as the solutions a and b . In which they yield the same value of k .
Do what we did earlier again and again until we get a solution ( m , n ) such that m 2 − 1 1 < 0 , we have m = 1 , 2 , 3 .
Case 1: m = 1
We have n 2 − k n = 1 0 which yields to the solutions ( n , k ) = ( 2 , − 3 ) , ( 5 , 3 ) , ( 1 0 , 9 ) . In which to the original equation, corresponds to ( a , b ) = ( 1 , 2 ) , ( 1 , 5 ) , ( 1 , 1 0 ) .
The pairs ( 1 , 5 ) and ( 1 , 1 0 ) have their own recursive sequence of pairs that will satisfy the equation. The pair ( 1 , 5 ) will give rise to the sequence ( a i , a i + 1 ) with a 0 = 1 , a 1 = 5 , and the recursion a i + 1 = 3 a i − a i − 1 for all i ≥ 2 . Similarly, the pair ( 1 , 1 0 ) will give rise to the sequence ( b i , b i + 1 ) with b 0 = 1 , b 1 = 1 0 , and the recursion b i + 1 = 9 b i − b i − 1 for all i ≥ 2 .
Case 2: m = 2
We have n ( n − 2 k ) = 7 which will give rise to the solution ( n , k ) = ( 7 , 3 ) . In which will correspond to ( a , b ) = ( 2 , 7 ) . Similar to our first case, this pair will also give rise to a sequence ( c i , c i + 1 ) with c 0 = 2 , c 1 = 7 and the recursion c i + 1 = 3 c i − c i − 1 for all i ≥ 2 .
Case 3: m = 3
We have n ( n − 3 k ) = 2 . But wait, n should be greater than m , a contradiction. So there are no solutions if m = 3 .
Solving this took me quite a long time. Plus it would be very long and it would be more understandable if you would refer to this instead.
Summing all solutions, we have 1 + 2 3 8 + 2 3 8 + 1 0 5 = 5 8 2 .
[Edit] Actually, I first typed in 582. And said I was wrong. So I tried a + 1 (in case I miscounted something) and got it right. [Edit 2] Oops, so I was right after all