How can Mathematica be used to plot graphs of complex valued functions?

  • Context: Mathematica 
  • Thread starter Thread starter raghavendar24
  • Start date Start date
  • Tags Tags
    Graphs Mathematica Plot
Click For Summary
SUMMARY

This discussion focuses on using Mathematica to plot graphs of complex-valued functions, specifically the Koebe function defined as z/(1-z)^2. Users are guided to utilize ContourPlot for contour visualization of the absolute value and argument of the function, as well as ParametricPlot and Plot3D for more detailed representations. The conversation also addresses how to illustrate the mapping of the unit disk onto the entire plane, excluding a specific line segment, using polar coordinates.

PREREQUISITES
  • Familiarity with Mathematica syntax and functions
  • Understanding of complex analysis concepts, particularly the Koebe function
  • Knowledge of plotting techniques in Mathematica, including ContourPlot and Plot3D
  • Basic understanding of polar coordinates and their application in complex mapping
NEXT STEPS
  • Learn how to use ContourPlot in Mathematica for complex functions
  • Explore ParametricPlot for visualizing complex mappings
  • Study the properties of the Koebe function and its implications in complex analysis
  • Investigate additional Mathematica resources or books focused on complex function visualization
USEFUL FOR

Mathematics students, educators, and researchers interested in complex analysis and visualization techniques using Mathematica.

raghavendar24
Messages
9
Reaction score
0
hi ,


i am unable to draw the graphs of complex valued functions using mathematica,

please help me .

Ex:koebe function. z/(1-z)^2, z is a complex number
 
Physics news on Phys.org
How do you want to display the function? One common approach is to use ContourPlot and plot the Abs as the contours and use Arg for the colors.
 
Hi, thnx for reply, please say how to plot in two ways so that i can use which is is required for me, and other one i may use whenever i needed.

Thank you.
 
ParametricPlot[
Through[{Re, Im}[(x + I y)/(1 - (x + I y))^2]], {x, 0, 2}, {y, -1,
1}, PlotRange -> {-1, 1}]


Plot3D[Abs[(x + I y)/(1 - (x + I y))^2], {x, 0, 2}, {y, -1, 1},
ColorFunction ->
Function[{x, y},
Hue[Arg[(x + I y)/(1 - (x + I y))^2]/(2 \[Pi]) + .5]],
ColorFunctionScaling -> False]
 
Thank you so much.



Can you suggest me any book which is useful to plot this type of functions using mathematica
 
Hi one more doubt regarding the above problem,

The function z/(1-z)^2 maps the unit disk |z|<1 onto the entire plane except a line segment

from (-infinity to -1/4) , how can we show that using the above function plot using mathematica.

Thanking you
 
raghavendar24 said:
Can you suggest me any book which is useful to plot this type of functions using mathematica
I have found the online help (F1) to be quite thorough.

raghavendar24 said:
Hi one more doubt regarding the above problem,

The function z/(1-z)^2 maps the unit disk |z|<1 onto the entire plane except a line segment

from (-infinity to -1/4) , how can we show that using the above function plot using mathematica.
Use the parametric plot version shown above, but map the complex plane using r Exp[-I theta] instead of x + I y
 
I already work out at that time i have some doubt whether it is right or not, thank you now i conformed but here is a problem i m unable to interpret from the figure it mapping the unit disk

that is |z|<1 (in polar form we are using r Exp(I*theta)


r varies from 0 to 1

and theta varies from 0 to 2 pi )


to the entire XY plane except a line segment
 

Attachments

Yes, that looks correct.
 

Similar threads

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