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

Home > Numbers
Square of a Rational Number (Posted on 2025-04-04) Difficulty: 3 of 5
Determine the pair (a,b) of positive integers such that each of a/b, a/b+5, and a/b-5 is the square of a rational number.

No Solution Yet Submitted by K Sengupta    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution Computer solution | Comment 2 of 3 |
I am somewhat sure that if a/b is expressed in lowest form then for a/b to be the square of a rational number, then both a and b must be squares.

The smallest answer I found was:
a = 1681
b = 144
a/b = 1681/144 = (41/12)^2
a/b + 5 = 2401/144 = (49/12)^2
a/b - 5 = 961/144 = (31/12)^2

The full answer is
a = 1681 * i^2
b = 144 * i^2
  where i is in {1,2,3,...}

(a ,  b)
(1681,144)
(6724,576)
(15129,1296)
(26896,2304)
(42025,3600)
(60516,5184)
(82369,7056)
(107584,9216)
(136161,11664)
(168100,14400)
(203401,17424)
(242064,20736)

----------
def lowestForm(a,b):
    from math import gcd
    return [int(a/gcd(a,b)), int(b/gcd(a,b))]
big = 500
squares = [i**2 for i in range(1,big)]

print('(a ,  b)')
for a in squares:
    for b in squares:
        numer = lowestForm(a,b)[0]
        denom = lowestForm(a,b)[1]
        if numer + 5*denom not in squares:
            continue
        if numer - 5*denom not in squares:
            continue
        print('({},{})'.format(a,b))

  Posted by Larry on 2025-04-04 10:46:48
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 (5)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

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