All of the triangles are right-angled with integer sides. If , what is the length of ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The only Pythagorean triples possible are:
3 2 + 4 2 = 5 2
5 2 + 1 2 2 = 1 3 2
1 3 2 + 8 4 2 = 8 5 2
This can be shown using Euclid's formula. Euclid's formula is a fundamental formula for generating Pythagorean triples given an arbitrary pair of positive integers m and n with m > n . The formula states that the integers a = m 2 − n 2 , b = 2 m n , c = m 2 + n 2
form a Pythagorean triple.
3 = m 2 − n 2 = ( m − n ) ( m + n ) ⇒ m − n = 1 , 2 n + 1 = 3 , m = 2 , n = 1 , c = 5
5 = m 2 − n 2 = ( m − n ) ( m + n ) ⇒ m − n = 1 , 2 n + 1 = 5 , m = 3 , n = 2 , c = 1 3
1 3 = m 2 − n 2 = ( m − n ) ( m + n ) ⇒ m − n = 1 , 2 n + 1 = 1 3 , m = 7 , n = 6 , c = 8 5