squenshl
- 468
- 4
Homework Statement
I found when z = 1 the Taylor series expansion for z1/3 by taking 11/3 = 1.
What if I was taking 11/3 = omega = e2i pi/3
squenshl said:Homework Statement
I found when z = 1 the Taylor series expansion for z1/3 by taking 11/3 = 1.
What if I was taking 11/3 = omega = e2i pi/3
And yes, you plug in z_0=e^{2n\pi i/3} for each term in the Taylor series where n=0, 1 or 2 for each surface of the function.
f[z_] := z^{1/3};
f2[z_] := Exp[2*Pi*(I/3)]*f[z];
z0 = 1;
mySeries =
N[Sum[((D[f2[z], {z, n}] /. z -> z0)/
n!)*(z - z0)^n, {n, 0, 10}]]
thePartialRiemannSurface = Plot3D[Re[f2[x + I*y]],
{x, -2, 2}, {y, -2, 2},
PlotStyle -> Opacity[0.2]]
mySeriesPlot = Plot3D[Re[mySeries] /.
z -> x + I*y, {x, 0.1, 1.9},
{y, -0.9, 0.9}, PlotStyle -> Red]
Show[{thePartialRiemannSurface, mySeriesPlot}]
squenshl said:So my series is wrong.
I put it into wolframalpha and get my series.