[Math] triangle, calculate the length using the vertices.

geometry

I have these vertices of a triangle
A 5,20
B 5,30
C 15, 25

What are the equations of each of the three line that is: AB, BC, and AC?
What is the length of each of the three lines?

Thanks very much.

Best Answer

Hint -

For equations use following formula-

$(y - y_1) = \frac{(y_2 - y_1)}{(x_2 - x_1)} . (x - x_1)$

For length -

$\sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$

Related Question