Plotting Complex functions in Mathematica

Click For Summary
SUMMARY

This discussion focuses on plotting complex functions in Mathematica, specifically how to visualize the transformation of one plane to another. The user seeks guidance on using Mathematica to plot the mapping of complex functions, such as the transformation defined by the function e^z. A provided example demonstrates how to use ParametricPlot to visualize the mapping from the z-plane to the w-plane. Additionally, the user requests modifications to the code to map an annulus defined by 1 ≤ r ≤ 5 in the z-plane under the transformation 1/z.

PREREQUISITES
  • Understanding of complex variables and mappings
  • Familiarity with Mathematica programming language
  • Knowledge of ParametricPlot function in Mathematica
  • Basic concepts of complex function transformations
NEXT STEPS
  • Learn how to use Mathematica's Manipulate function for interactive visualizations
  • Explore the use of ComplexPlot in Mathematica for visualizing complex functions
  • Study the implications of conformal mappings in complex analysis
  • Investigate the effects of different transformations on regions in the complex plane
USEFUL FOR

Mathematicians, students of complex analysis, and anyone interested in visualizing complex function transformations using Mathematica.

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.
 
Physics 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,672

Similar threads

Replies
5
Views
4K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 18 ·
Replies
18
Views
5K
  • · Replies 0 ·
Replies
0
Views
2K