Saved Bookmarks
| 1. |
Find the distance of a point P(x,y)from the origin |
|
Answer» P ( x, y) O ( 0, 0) OP = SQRT [ (x1 - x2)^2 + (y1 - y2)^2] OP = sqrt [ (x - 0)^2 + (y - 0)^2] OP = sqrt [ x^2 + y^2] |
|