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

Home > Numbers
Consider the Value, Get Solution (Posted on 2023-09-24) Difficulty: 3 of 5
Determine the only possible integer value of N, such that each of:
8N3-20, and 2N5-2
is a perfect square.

Prove that no further value of N satisfies the given conditions.

**** Computer program/ excel solver assisted solutions are welcome, but a semi-analytic - namely, p&p and hand calculator based methodology is preferred.

See The Solution Submitted by K Sengupta    
Rating: 5.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts answer -- no proof | Comment 1 of 2
for n=1:999
  a=8*n^3-20;
  sr=round(sqrt(a));
  if sr*sr==a
    b=2*n^5-2;
    sr=round(sqrt(b));
    if sr*sr==b
      disp([n a b])
    end
  end
end

finds only

n= 3 

The two given expressions are 196 and 484, 14^2 and 22^2 respectively.

  Posted by Charlie on 2023-09-24 12:51:36
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 (8)
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