-2

If we are to find the distance between the points $P(0,0)$ and $Q(-2,-3)$, then we can use the Theorem of Pythagoras for this purpose.

$distance (P,Q) = \sqrt{(x_2 -x_1)^2 + (y_2 -y_1)^2}$

therefore, $\text{distance} (P,Q) = \sqrt{-5}$ But the answer is undefined. Is this answer and the reason correct?

amWhy
  • 209,954
Samama Fahim
  • 1,459
  • 4
  • 24
  • 39

2 Answers2

4

You are calculating wrong:

$distance(P,Q) = \sqrt{(x_2 -x_1)^2 + (y_2 -y_1)^2}=\sqrt{((-2)^2+(-3)^2)}=\sqrt{(13)}$.

m0nhawk
  • 1,779
Manoj
  • 1,757
0

You forgot to square. $d(P,Q) = \sqrt{(-2)^2+(-3)^2} = \sqrt{4+9} = \sqrt{13}$.

Abel
  • 7,312