asked 49.5k views
5 votes
I’d like the distance between the origin and a point

I’d like the distance between the origin and a point-example-1
asked
User Noishe
by
7.1k points

1 Answer

1 vote

The distance between points (x1, y1) and (x2, y2) can be calculated as follows:


d=\sqrt[]{(x_2-x_1)^2+(y_2-y_1)^2}

If one of the points is the origin, say (x1, y1) = (0, 0), then:


\begin{gathered} d=\sqrt[]{(x_2-0)^2+(y_2-0)^2} \\ \text{Operate:} \\ d=\sqrt[]{x_2^2+y_2^2} \end{gathered}

We only need the coordinates of one of the points and use the formula above, thus the correct choice is B.

answered
User Jbcaveman
by
7.3k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.