Pythagoras' theorem

Pythagoras' theorem is used to find the length of a side in a right angle triangle.

c2 = a2 + b2

, where c is the longest side of the triangle.
For example,

Right angle triangle with longest length of c, bottom - b, side - a

to find c, you will need to do:

c=sqrt(a2 + b2).

Example:
1) a = 15, b = 16. Find c.

c = sqrt (152 + 162 ) = sqrt (225 + 256) = sqrt (481) = 21.9317122

2) a = 5, b = 3. Find c.

c = sqrt (52 + 32) = sqrt (25 + 9) = sqrt (36) = 6

Finding the other side is made very simple by rearranging the equation.
If you are given a long side c and short side b, then you need to find a:

a2 = c2 - b2;
a = sqrt (c2 - b2)

Example:
1) c = 6, b = 3;

a = sqrt (62 - 33) = sqrt (36 - 9) = sqrt (25) = 5;
a = 5

This is all you'll need to know.
he most important things are the formula and that a triangle must have a right angle.
Next step - trigonometry!