Let a , b , and c be positive integers that satisfy the equation a 2 + 9 8 b 2 + 1 1 4 c 2 = 1 1 1 1 1 1 1 1 1 1 (There are 10 1's) Find the sum of all possible values of a , b , and c .
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.
You put that a 2 ≡ 0 , 1 , 4 , 9 ( m o d 8 ) , but 9 ≡ 1 ( m o d 8 ) , so it is a little repetitive.
I will now show my almost exactly same solution: Let us consider the parity. Since both 9 8 b 2 and 1 1 4 c 2 are even, a must be odd. When dealing with squares of odd numbers, mod 4 and mod 8 are powerful, since for any odd number n , n 2 ≡ 1 ( m o d 4 , 8 ) . We proceed with mod 8 : a 2 + 2 b 2 + 2 c 2 ≡ 1 + 2 b 2 + 2 c 2 ≡ 7 ( m o d 8 ) ⟹ 2 b 2 + 2 c 2 ≡ 6 , which is impossible since for any integer m , 2 m 2 ≡ 0 , 2 ( m o d 8 ) .
There is a simple logic, if a, b, c is a solution then -a,-b,-c is also a solution . So sum of all the solution cancel anyway(if exist).
Problem Loading...
Note Loading...
Set Loading...
Alright, the thing here isn't the number of 1 's, nor is it the coefficients of b and/or c .
We first rearrange the equation to a 2 + 2 b 2 + 9 6 b 2 + 2 c 2 + 1 1 2 c 2 = 1 1 1 1 1 1 1 × 1 0 0 0 + 1 1 1 .
We then apply modulo 8 on both sides. a 2 + 2 b 2 + 2 c 2 ≡ 7 ( m o d 8 ) .
a 2 ≡ 0 , 1 , 4 ( m o d 8 )
2 b 2 ≡ 0 , 2 ( m o d 8 )
2 c 2 ≡ 0 , 2 ( m o d 8 )
We can see that there is no way of achieving the equation of a 2 + 2 b 2 + 2 c 2 ≡ 7 ( m o d 8 )
Thus, there are 0 integer solutions.