Plotting Complex functions in Mathematica

Click For Summary
Mathematica can effectively plot complex functions as mappings between different planes. Users can create parametric plots to visualize how a complex function transforms regions, such as mapping a square in the z-plane to a washer in the w-plane using the exponential function. A specific example provided demonstrates how to visualize the transformation of the function w[z] = Exp[z]. Additionally, there is a request for assistance in modifying existing code to map an annulus from the z-plane to the w-plane under the transformation w = 1/z. This highlights the practical application of Mathematica in studying complex variable transformations.
Storm Butler
Messages
74
Reaction score
0
In a few of my books on Complex variables they show how you can look at a complex function as essentially a mapping from what plane to another.

Does anyone know if there would be a way to have mathematica plot how a complex function would transform one plane into the other?

Thanks for any help.
 
Mathematics news on Phys.org
Storm Butler said:
In a few of my books on Complex variables they show how you can look at a complex function as essentially a mapping from what plane to another.

Does anyone know if there would be a way to have mathematica plot how a complex function would transform one plane into the other?

Thanks for any help.

You can plot a parametric region. For example, the mapping e^z\to w maps the square region in the z-plane to the washer region in the w-plane:

Code:
w[z_] := Exp[z]; 
p1 = ParametricPlot[{x, y}, {x, 1/10, 1}, {y, -Pi, Pi}, AspectRatio -> 1]; 
p2 = ParametricPlot[{Re[w[z]], Im[w[z]]} /. z -> x + I*y, {x, 1/10, 1}, {y, -Pi, Pi}, 
    PlotRange -> All]; 
myarrow = Show[Graphics[{{Arrow[{{-0.5, 0}, {0.5, 0}}]}, 
      Text[Style["w[z]=\!\(\*SuperscriptBox[\(E\), \(z\)]\)", 20], {0, 0.1}]}]]; 
GraphicsGrid[{{p1, myarrow, p2}}]

attachment.php?attachmentid=63414&d=1383077503.jpg


Ok, now modify my code to map the annulus 1\leq r\leq 5 in the z-plane under the transformation 1/z\to w into the w-plane.
 

Attachments

  • my exp mapping.jpg
    my exp mapping.jpg
    18.1 KB · Views: 1,663
Here is a little puzzle from the book 100 Geometric Games by Pierre Berloquin. The side of a small square is one meter long and the side of a larger square one and a half meters long. One vertex of the large square is at the center of the small square. The side of the large square cuts two sides of the small square into one- third parts and two-thirds parts. What is the area where the squares overlap?

Similar threads

  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 6 ·
Replies
6
Views
3K
Replies
5
Views
4K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 9 ·
Replies
9
Views
4K