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

Home > Numbers
Ratio Crossed Pythagorean Integer Illation (Posted on 2023-02-20) Difficulty: 3 of 5
Solve in positive integers:

x2+ y2 = (x/y + 17/4)2

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.)
Solution Computer and Analytic solution | Comment 1 of 2
The only positive integer solution for (x,y) is (3,4).
I did run a program initially, then did an analytic solution.
----
big = 1000
for x in range(1,big):
    for y in range(1,big):
        if x**2 + y**2 - (x/y + 17/4)**2 == 0:
            print(x,y,x**2 + y**2, (x/y + 17/4)**2)
----
Analytic:
For (x/y + 17/4) to be an integer, x/y must be k + 3/4
x = y*(4k+3)/4
x/y = (4k+3)/4
(x/y + 17/4) = (4k+3+17)/4 = k+5
So substituting for x, we have
[y*(4k+3)/4]^2 + y^2 = (k+5)^2
y^2(k + 3/4)^2 + y^2 = (k+5)^2
y^2(k^2 + 3k/2 + 9/16) + y^2 = (k+5)^2
y^2(k^2 + 3k/2 + 25/16)  = (k+5)^2
y^2(16*k^2 + 24*k + 25)/16  = (k+5)^2

y = 4*(k+5)/sqrt(16*k^2 + 24*k + 25)
if k=0, y=4, so first solution is found.

Let f(k) = (16*k^2 + 24*k + 25)

k  f(k) sqrt(f(k))
0  25  5
1  65  irrational
2 137  irrational
3 241  irrational
 
Since the determinant of f(k), (576 - 1600) is negative, so the only value of k making f(k) a perfect square is k=0, f(k)=25
  Posted by Larry on 2023-02-20 14:17:22
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 (16)
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