satisfying are there ,which satisfies following 2 condtions?
find how many pairs of integers
1)
is a perfect square.
2)
is a perfect square.
For example, works since and .
Details and Assumptions :
is not a perfect square.
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.
There is an easy way to do it only with a piece of paper:
You write all the squares from 1 to 196 (anymore won't satisify x + y ≤ 2 0 0 So you have :
1 4 9 16 25 36 49 64 81 100 121 144 169 196
Then you start with x - y = 1
So (5,4) is a solution, (13,12) , (25,24),... quickly you see that only the odd squares satisfy the condition , that's because they are the solution to the system: { x x − + y y = = 1 s q u a r e , where x = 2 s q u a r e + 1 y = 2 s q u a r e − 1
For x - y = 4 , only the even squares satisfy the condition, for the same reason that above.
It seems like a lot of work, but you can do it in 2 minutes, you just have to check the higher square so it doesn't surpass x + y <= 200
Adding up all the solutions, you get 31