Question: Exploring the Mapping of Vertical Lines under 𝑤 = 𝑒 ^𝑧

In the transformation w = e^z, vertical lines in the complex z-plane of the form Re(z)=a are mapped to circles of radius e^a in the w-plane.

Can I create a Maple visualization that does the following:

  1. Displays the result side by side, showing each vertical line in the z-plane and its corresponding mapped circle in the w-plane.

  2. Does it use a different color and style for each line and its image (e.g., dashed, dotted, solid, or different colors)?

restart; interface(imaginaryunit = 'i')

z := 2+2*I

2+2*I

(1)

with(plots); point1 := pointplot([[Re(z), Im(z)]], symbol = solidcircle, color = blue, axes = normal, labels = ["Re(z)", "Im(z)"], title = "Complex Number Plot")

 

mod_z := abs(z)

2*2^(1/2)

(2)

vector1 := arrow([0, 0], [Re(z), Im(z)], color = red, shape = double_arrow, width = 0.5e-1, border = false, head_width = .1, head_length = .1); vector2 := arrow([0, 0], [0, Im(z)], color = green, shape = double_arrow, width = 0.5e-1, border = false, head_width = .1, head_length = .1); vector3 := arrow([0, 0], [Re(z), 0], color = yellow, shape = double_arrow, width = 0.5e-1, border = false, head_width = .1, head_length = .1)

display([vector1, point1, vector2, vector3], axes = normal, labels = ["Re(z)", "Im(z)"], view = [0 .. 3, -1 .. 4], scaling = constrained, title = "Modulus of complex number")

 

w := 2+3*I

2+3*I

(3)

z+w

4+5*I

(4)

z-w

-I

(5)

z.w

-2+10*I

(6)

z/w

10/13-(2/13)*I

(7)

restart

with(plots); a := 2; complexplot(a+I*t, t = -Pi .. Pi, title = "Vertical Line Re(z)=2")

 

A := [-3, -1, 0, 1, 2]; P := [seq(complexplot(x+I*y, y = -10 .. 10, color = red), `in`(x, A))]; display(P, title = "Multiple Vertical Lines in Complex Plane")

 

with(plots); B := [-3, -1, 0, 1, 2]; H := [seq(complexplot(x+I*y, x = -10 .. 10, color = blue), `in`(y, B))]; display(H, title = "Multiple Horizontal Lines in Complex Plane")

 
 

NULL

Download operations.mw

Please Wait...