Prime Pythagorean triples
Given an arbitrary pair of integers m and n with m > n > 0. Euclid's formula states that the integers :
a=m2−n2, b=2mn, c=m2+n2
form a Pythagorean triple: a2+b2=c2
If we calculate a2+b2:
a2+b2=(m2−n2)2+(2mn)2=m2+4m2n2−2m2n2+n2=(m2+n2)2=c2
Which is coherent, the problem changes from finding a, b and c to finding m and n, we have:
a+b+c=10002mn+2m2=1000n=500m−m
We have m>n since b must be positive, solving n=m gives:
m=500m−m0=500−2m2m0=500−2m2m=√(250)
Resulting in:
m>16>√(250)
We also have n>0, solving n=0 gives:
0=500m−m0=500−m2m=√(500)
Resulting in:
m<√(500)<23
We also know that 500m is an integer, so m must divide 500. The only multiple of that divides 500 with the constraint 16>m>23 is 20. Having m=20 result in n=5. It gives a=200, b=375 and c = 425.
The solution can also be found by using a for loop to find m and n with the above constraints.
From solution3.py:
def special_pythagorean_triplet():
for m in range(16, 24):
for n in range(1, m):
if m * (n + m) == 500:
return 2 * m * n * (m**4 - n**4)
return -1