Problem 9: Special Pythagorean Triplet
This was a easy problem as I solved by a naive approach. The link to solution is link
But on seeing the forum I found out a very good solution which converted this equation in three variable to 2 unknowns. a=2mn,b=m^2-n^2,c=m^2+n^2 hence a+b+c=1000 becomes 2mn+(m^2+n^2)+(m^2-n^2)=1000 m(m+n)=500, m=20 , n=5 and hence a,b and c can be obtained considering m>n













