Find the sum of all integers n which make 2 8 + 2 1 1 + 2 n a perfect square.
(1981 HMO modification)
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.
Yes sir did it same way , was very exicted to post the solution,upvoted
Log in to reply
Thanks, Megh. It's a nice problem, and it makes me think of further problems. For example, find all integers n such that 2 8 + 2 1 1 + 2 n is a perfect cube, (I'm not even sure if there are any). We could also play around with the exponents and generalize, e.g., finding all triples ( a , b , c ) such that 2 a + 2 b + 2 c is a perfect square, (cube, etc.), (with possible restrictions on a , b , c ).
As always, one good problem leads to another. :)
Log in to reply
2 a + 2 . 2 b − 1 + 2 c
Perfect square , therefore a = 2 m , c = 2 n
b − 1 = m + n
b + 1 = m + n + 1
Cube , 2 a + 2 b + 2 c = 2 3 n = 8 n
a = 3 x , c = 3 y
2 b = 3 . 2 3 ( x + y ) ( 2 x + 2 y )
but 2 b will give always a multiple of 2. therefore its a contradiction.
Or
By pascal's triangle , it should contain 4 terms , but here there are 3 , therefore not possible. @brian charlesworth
Log in to reply
@U Z – @Megh Choksi Good analysis. I see how letting a = 2 m , c = 2 n and hence b = m + n + 1 leads to a perfect square, but I'm not sure how 1 , ( m + n + 1 ) , b will form an A.P.. Perhaps there is a typo there. :)
As for perfect cubes, how about
2 1 + 2 1 + 2 2 = 2 3 = 8 or 2 4 + 2 4 + 2 5 = 4 3 = 6 4 ?
In general, for a = 3 n − 2 , n ≥ 1 , we have
2 a + 2 a + 2 a + 1 = 2 a ∗ 2 2 = 2 a + 2 = 2 3 n = ( 2 n ) 3 .
Log in to reply
@Brian Charlesworth – Really good observation Sir
Thank you .Sir you are great . One day I will post here only for power of 4 , 5 ,............ , .Thank you for being humble.
Log in to reply
@U Z – I appreciate the compliments, Megh. I'll keep working on the generalized problem as well. :)
Because this is a perfect square, it must have the representation ( 2 a + 2 b ) 2 where a,b are integers.
Upon squaring, we get 2 2 a + 2 a + b + 1 + 2 2 b
We can observe that out of the three terms, only one can have an odd power, thus n must be even.
In this case, we let a=4 so our first term is 2 8 and our second term is 2 5 + b ⇒ 2 5 + b = 2 1 1 ∴ b = 6 . since n=2b, n = 1 2
Nice generalization, Trevor. My solution was more specific to this problem, so I prefer your solution. :)
Because this is a perfect square, it must have the representation 2 a + 2 b where a,b are integers.
I don't understand how you got that. Can you elaborate?
Log in to reply
Sorry. That should be squared, I just fixed it
Problem Loading...
Note Loading...
Set Loading...
Note first that 2 8 + 2 1 1 = 2 3 0 4 = 4 8 2 .
So we are looking for integers n such that
4 8 2 + 2 n = m 2 ⟹ 2 n = m 2 − 4 8 2 = ( m − 4 8 ) ( m + 4 8 )
for some integer m .
By the Fundamental Theorem of Arithmetic we must have both of ∣ m − 4 8 ∣ and ∣ m + 4 8 ∣ be powers of 2 . The only such powers that differ by 2 ∗ 4 8 = 9 6 are 2 5 = 3 2 and 2 7 = 1 2 8 . As a result, we must have 2 n = 2 5 ∗ 2 7 = 2 1 2 , thus giving us 1 2 as the solution.
(Note there are two possible values for m , namely 8 0 and − 8 0 , but both of course lead to the same value of n .)