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

Home > Numbers
Power Crossed Cube Conclusion (Posted on 2023-04-01) Difficulty: 3 of 5
Determine all triplet(s) (p, q, r) of positive integers that satisfy the equation:
          (5)p * (43)q + 1 = r3

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.)
computer solution | Comment 1 of 3
for px=1:50
  p=sym(px);
  for qx=1:50
    q=sym(qx);
    rc=5^p*43^q+1;
    r=rc^(1/3);
    if r==floor(r)
      disp([p q r rc])
    end
  end
end

finds only

[1, 1, 6, 216]

i.e.,

p = 1
q = 1
r = 6
r^3 = 216 = 5*43 + 1

  Posted by Charlie on 2023-04-01 11:29:11
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 (10)
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