Given that a and b are positive integers with ( a 1 , b 1 ) , ( a 2 , b 2 ) , … , ( a n , b n ) as solutions such that b 2 − a a 2 + b and a 2 − b b 2 + a are both integers, find i = 1 ∑ n a i b i .
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.
Problem Loading...
Note Loading...
Set Loading...
Suppose wlog a ≤ b . Then a 2 + b ≥ b 2 − a means that a ( a + 1 ) ≥ ( b − 1 ) b , so clearly either a = b or a = b − 1 .
If a = b we get a 2 − a a 2 + a = a − 1 a + 1 is an integer. If a ≥ 4 then the fraction is less than 2 , but it's greater than 1, so cannot be an integer. We see that a = b = 2 , 3 are the solutions in this case.
If a = b − 1 we get that the first fraction is 1 and the second fraction is a 2 − a − 1 a 2 + 3 a + 1 . For this to be at least 2 we must have a 2 − 5 a − 3 ≤ 0 , so a ≤ 5 . Taking a = 1 , 2 , 3 , 4 , 5 we see that a = 1 , 2 are the only solutions.
So we've found six solutions in all: ( 2 , 2 ) , ( 3 , 3 ) , ( 1 , 2 ) , ( 2 , 3 ) , ( 2 , 1 ) , ( 3 , 2 ) . The answer is thus 2 9 .