Find Pythagoras Triples w/ Given Hypotenuse

  • Thread starter Thread starter Terry Coates
  • Start date Start date
  • Tags Tags
    search
Click For Summary
The discussion presents a method for finding Pythagorean triples given a specific hypotenuse, C, using a trial and error approach that minimizes the number of trials. The method involves testing odd values of X within defined limits, where the relationship 2.C - X^2 = Y^2 holds true. The product X.Y yields one side of the triangle, with examples provided for C = 65, resulting in primitive and non-primitive solutions. The thread emphasizes the use of a known equation to validate the findings and suggests that all triples may be derivable through this method. The approach is positioned as potentially efficient and novel in discovering Pythagorean triples.
Terry Coates
Messages
39
Reaction score
2
I wonder if I have found the most efficient way of finding any pythagoras triple with a given hypotenuse that has not been published?
My method uses a trial and error search, but with the limits set to minimize the number of trials as follows:
Try odd values X within the limits of int(C^0.5) +1 to int(2.C)^0.5 inclusive such that
2.C - X^2 = Y^2. C being the required hypotenuse. {This is always possible and in a number of ways depending on the number (at least one) of prime factors of form 4n+1 in C.}
Then the required value of one side of the triangle is given by X.Y
Example C= 65
lower limit = 9 upper limit = 11
X = 11, Y = 3 or X = 9 Y = 7

33^2 + 56^2 = 65^2 or 63^2 + 16^2 = 65^2

These are primitive solutions, but non primitive ones can be found by applying the above method to C = 5 or 17 and then multiplying the three sides by 17 or 5.
 
Mathematics news on Phys.org
I moved this thread from the textbooks section, as it seemed more related to the mathematics and very little to textbooks.
 
Your examples can all be found by the equation ##(u^2-v^2)^2 + (2uv)^2 = (u^2+v^2)^2## which is well known.
I can't remember and haven't looked up whether all triples can be found this way. Nevertheless, your's can be found, e.g. ##65^2=8^2+1^2=7^2+4^2##.
 
fresh_42 said:
Your examples can all be found by the equation ##(u^2-v^2)^2 + (2uv)^2 = (u^2+v^2)^2## which is well known.
I can't remember and haven't looked up whether all triples can be found this way. Nevertheless, your's can be found, e.g. ##65^2=8^2+1^2=7^2+4^2##.
This gives all triples.
 
  • Like
Likes SammyS
Here is a little puzzle from the book 100 Geometric Games by Pierre Berloquin. The side of a small square is one meter long and the side of a larger square one and a half meters long. One vertex of the large square is at the center of the small square. The side of the large square cuts two sides of the small square into one- third parts and two-thirds parts. What is the area where the squares overlap?

Similar threads

Replies
20
Views
4K
Replies
2
Views
2K
Replies
2
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
6K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K