Yes, I meant the image of a function. And thanks, Gianluca Gorni. It looks like ParametricPlot[] might be the answer. This forum is great.
Your solution works for my example. However, my hope is for a more general solution that doesn't rely on foreknowledge of the image. In other words, I'm looking for a FunctionImage[function_] that takes a function and returns its image, similar to the way ImplicitRegion[] and Region[] work with equations. I tried,...
ParametricPlot[{x, y}/Sqrt[x^2 + y^2], {x, -2, 2}, {y, -2, 2},
PlotRange -> {{-2, 2}, {-2, 2}}, Frame -> False, Axes -> True] /.
Abs[x] -> PositiveReals || Abs[y] -> PositiveReals
The image I got was a bounded region as opposed to the closed curve. In other words, the image looks correct on the part of the domain 1<=Sqrt[x^2+y^2] but not on 0<Sqrt[x^2+y^2]<1
Do you know of a refinement that would work?
Another approach that almost worked was,...
Region[
ImplicitRegion[{x, y}/Sqrt[x^2 + y^2] == {x, y}, {x, y}],
Axes -> True, PlotRange -> {{-2, 2}, {-2, 2}}] /.
Abs[x] -> PositiveReals || Abs[y] -> PositiveReals
The output here shows only two points of the image.