All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
Find all possible pairs (Posted on 2023-11-19) Difficulty: 3 of 5
Find all solutions to
(m^2 + n)(m + n^2) = (m - n)^2

where m and n are non-zero integers.

No Solution Yet Submitted by Ady TZIDON    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts computer exploration | Comment 1 of 2
for tot=-99999:99999
  for n=-99999:999
    m=tot-n;
    if (m^2+n)*(m+n^2)==(m-n)^2
      disp([m n (m-n)^2])
    end
  end
end

finds only

>> findAllPossiblePairs
    -1    -1     0
     0     0     0
     2    -1     9
     1     0     1
     0     1     1
    -1     2     9
    
but there may be more beyond the searched bounds.

Excluding the ones that include m or n being zero, what's left are:

m = -1 n = -1    (m-n)^2 = 0
m = 2  n = -1    (m-n)^2 = 9
m = -1 n = 2     (m-n)^2 = 9

  Posted by Charlie on 2023-11-19 09:33:18
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (9)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information