Whether a point is inside a circle, on it, or outside is found by substituting the point's coordinates into the circle's equation and comparing. Take the circle (center at the origin, radius ).
The square of the distance from a point to the center is . Compare this with the square of the radius, .
Check with three points. gives , so it is inside; gives , so it is on the circle; gives , so it is outside.
So comparing the sum of squares with tells you the position without ever taking a square root. The large dots on the graph are the inside point , the on-circle point , and the outside point .