Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

Proof required for a trigonometric solution
Разница между en1 и en2, 48 символ(ов) изменены
I figured out a solution for problem [Div2C](http://codeforces.com/contest/707/problem/C). Given a number n , we have to find its other two Pythagorean Triplets. ↵

My approach was as follows:↵

I stored the factors of n in a vector. Since we have n*n to deal with, I basically decomposed n*n into all possible combinations of any two of (n*n)'s factors p,q such that p*q = n*n↵

now, a*a +n*n = c*c↵

  => n*n = (c-a)*(c+a) = p*q↵

Now assuming min(p,q) = c-a and max(p,q) = c+a, I just checked if the Pythagorean equation is satisfied. [My code](http://codeforces.com/contest/707/submission/19990014)↵

What I still can't figure out in my own code is how my solution gives a correct answer if n is a hypotenuse. I have not handled the case x*x + y*y =n*n. My code seems to prove that if 
a*a + n*n = c*cx*x + y*y = n*n, then there always exists x,ya,b such that x*x + y*y = n*na*a + n*n = b*b. Simply speaking, cathethypotenuse of any right angled triangle is always hypotencathetuse of some other right triangle. Does this always hold true or is there a counter case. A proof from someone would be really helpful. Thanks :)

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en2 Английский CSGO_is_life 2016-08-20 22:30:05 48
en1 Английский CSGO_is_life 2016-08-20 22:14:19 1127 Initial revision (published)