I am using the function ComplexContourPlot to try to get the image of a vertical line under 1/z however I am getting an error.
In this case I would like to see the image of 1/z for the vertical line that goes from 3-3i to 3+3i
ComplexContourPlot[1/z, {z, 3 - 3 I, 3 + 3 I}]
This is the result I am getting:
ComplexContourPlot::plld: Corners for z in {z,3-3 I,3+3 I} must have distinct machine-precision real and imaginary parts.
I have managed to show correctly the circle using a ParametricPlot and working directly with the components u and v.
ParametricPlot[{{3/(3^2 + y^2), -( y/(3^2 + y^2))}}, {y, -20, 20},
PlotLegends -> "Expressions"]
But I want to work directly with Z not divide into the separate real and imaginary parts, how can I do this using Mathematica 12?.
Thank you very much.



ComplexContourPlot[Re[z] == 1, {z, 3}]And for the circle:ComplexContourPlot[Abs[z - 1] == 2, {z, 3}]If you want to visualize mappings, look at this question – Domen Sep 03 '21 at 11:10