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
The discussion revolves around the Taylor series expansion of the function \( z^{1/3} \) in the context of complex numbers, specifically evaluating it at different points such as \( z = 1 \) and \( z = e^{2i\pi/3} \). Participants explore the implications of multi-valued functions in complex analysis.
The discussion is ongoing, with participants offering various insights into the Taylor series and its representation for different roots. Some participants express uncertainty about their series calculations and seek clarification on the correct approach to using Mathematica for these evaluations.
There is mention of the complexity introduced by the multi-valued nature of the function \( z^{1/3} \) and the need to evaluate derivatives at specific points. Participants also note the challenge of visualizing the Riemann surfaces associated with these functions.
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 [itex]z_0=e^{2n\pi i/3}[/itex] 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.