Plotting the complex exp function in Maple?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 9K views
Susanne217
Messages
311
Reaction score
0

Homework Statement



If we have [tex]y(x) = e^{i\cdot x}[/tex] where [tex]x\in [0,\pi][/tex]

How do I plot function in Maple? So it shows anything?


The Attempt at a Solution


if I write

Code:
plot(exp(I*x),x=0..Pi);

I get an empty coordinate system. Do I need to add some more code to get it to display properly?

Sincerely
Susanne

p.s. I know [tex]e^{i\cdot t} = cos(t) + i \cdot sin(t)[/tex]
 
Last edited:
Physics news on Phys.org
what do you hope to see - note if you're trying to do a 2D plot have you thought through how you can even plot a complex function?

a 2D plot is generally a scalar function of a single variable

it might be better to plot the magnitude and phase or the real and imaginary parts which are each scalars so can be plotted in 2D against x
 
lanedance said:
what do you hope to see - note if you're trying to do a 2D plot have you thought through how you can even plot a complex function?

a 2D plot is generally a scalar function of a single variable

it might be better to plot the magnitude and phase or the real and imaginary parts which are each scalars so can be plotted in 2D against x

So what I do here is that I take the real part of complex exp function and plot it along the x-axis and imaginary part along the y-axis?

where cos(t) is real part and i*sin(t) the img part.

EDIT: I plot the real part cos(t) along the interval zero to Pi that gives the real Cosine function while the imaginary part along the same interval i*sin(t) me nothing.

Can that be right? because i*sin(0) = 0 and i*sin(Pi) =0.

So all in the plot of complex exp function along the interval [0,Pi] is simply the real cosine function?
 
Last edited:
you have to decide what you want to plot... i can't tell you what it is you want to do...

but...if you have a complex number z = a + ib, then a & b are both scalars, a is the real part, & b is the imaginary part.

hence why you can't plot isin(x), that is still a complex number, to plot the imaginary part you just plot sin(t).

if you want x to vary in the interval and plot the real part of [itex]e^{ix}[/itex] along the y axis, and the imaginary part along the z axis. Then parametrically you would plot
[tex]x(t) = t[/tex]
[tex]y(t) = cos(t)[/tex]
[tex]z(t) = sin(t)[/tex]

and the curve will look like part of a spiral with its central axis along the x axis
 
lanedance said:
you have to decide what you want to plot... i can't tell you what it is you want to do...

but...if you have a complex number z = a + ib, then a & b are both scalars, a is the real part, & b is the imaginary part.

hence why you can't plot isin(x), that is still a complex number, to plot the imaginary part you just plot sin(t).

if you want x to vary in the interval and plot the real part of [itex]e^{ix}[/itex] along the y axis, and the imaginary part along the z axis. Then parametrically you would plot
[tex]x(t) = t[/tex]
[tex]y(t) = cos(t)[/tex]
[tex]z(t) = sin(t)[/tex]

and the curve will look like part of a spiral with its central axis along the x axis

I may have a whole in my knowledge so please excuse me :) But the reason that I only need to plot the the scalars a and b of z= cos(t) + i*sin(t) is its impossible to view i*sin(t) as a point by itself graphically?

Why must I do a 3D plot? Can't I do a 2D plot?
 
once again you can do whatever you want, you just have to decide - you could plot both the real and imaginary part of the function as 2 separate curves in 2D... on the same graph even

you can't plot i.sin(t) as its a complex number, you can decide an axis will represent the imaginary part of a complex number, but the plot command you give will be a scalar function

you can plot any scalar function, as said, examples of scalar function of a compelx variable are:
- real part
- imaginary part
- magnitude
- phase (arg)
 
lanedance said:
once again you can do whatever you want, you just have to decide - you could plot both the real and imaginary part of the function as 2 separate curves in 2D... on the same graph even

you can't plot i.sin(t) as its a complex number, you can decide an axis will represent the imaginary part of a complex number, but the plot command you give will be a scalar function

you can plot any scalar function, as said, examples of scalar function of a compelx variable are:
- real part
- imaginary part
- magnitude
- phase (arg)

I thought of something Lanedance.

Since modulus for [tex]e^{it}[/tex] where [tex]0 \leq t \leq 2\pi[/tex] is one..

Then can't a plot of exp(it) as show in my file attachment. Don't know howto show something simular in Maple...
 

Attachments

  • complex_exp.jpg
    complex_exp.jpg
    6.4 KB · Views: 788