Calculate distance between (-3,9) and (9,4)

asked by guest
on Oct 07, 2024 at 3:26 am



You asked:

Calculate the distance between the points \(\left(-3, 9\right)\) and \(\left(9, 4\right)\).

MathBot Answer:

\(13\) is the distance between \(\left(-3, 9\right)\) and \(\left(9, 4\right)\).


The distance between two points in the Cartesian plane is defined as the length of the line segment connecting the points. The formula for the distance between two points is derived from the Pythagorean Theorem using a right triangle constructed with the given points as vertices and the distance between them as the hypotenuse. The distance between \((x_{1}, y_{1})\) and \((x_{2}, y_{2})\) is given by the formula: \[ \text{distance} = \sqrt{(x_{2}-x_{1})^2 + (y_{2}-y_{1})^2} \] Therefore: \[ \begin{align*} \text{distance} &= \sqrt{(-3 - 9)^2 + (9 - 4)^2}\\ &=\sqrt{ \left(-12\right)^{2} + 5^{2} }\\ &=\sqrt{ 144 + 25 }\\ &=13 \end{align*} \]