Power Series for Complex Number z: f(z) and Radius of Convergence Calculation

Click For Summary

Homework Help Overview

The discussion revolves around finding the power series representation and radius of convergence for the function f(z) = (4 + 3z)/((z + 1)(z + 2)^2), where z is a complex number. Participants explore various methods of deriving the power series and calculating the radius of convergence.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning, Problem interpretation

Approaches and Questions Raised

  • Participants discuss the validity of combining summands in power series and suggest using partial fractions to simplify the function. Questions arise about alternative methods to find the power series without partial fractions and how to determine the radius of convergence from the resulting series.

Discussion Status

There is ongoing exploration of different methods to express the function and derive the power series. Some participants have provided guidance on using partial fractions, while others are questioning the assumptions made in the original approach. The discussion reflects a mix of interpretations and attempts to clarify the steps involved.

Contextual Notes

Participants are navigating the complexities of power series for complex functions and the implications of different approaches on the radius of convergence. There is a focus on ensuring the correctness of mathematical manipulations and the assumptions underlying the series expansions.

fauboca
Messages
157
Reaction score
0
z is a complex number.

[tex]f(z) = \frac{4 + 3z}{(z + 1)(z + 2)^2}[/tex]

[tex]\frac{1}{1 + z} = \frac{1}{1 - (-z)} = 1 + (-z) + (-z)^2 + \cdots = \sum_{n = 0}^{\infty}(-z)^n[/tex]

[tex]\frac{1}{(z + 2)^2} = -\frac{d}{dz} \ \frac{1}{1 - (-z - 1)} = -\frac{d}{dz}\sum_{n = 0}^{\infty}(-z - 1)^n = \sum_{n = 0}^{\infty}-n(-z-1)^{n-1}[/tex]

[tex]f(z) = \sum_{n = 0}^{\infty}-(4 + 3z) n (-z)^n (-z - 1)^{n - 1}[/tex]

Radius of convergence by the ratio test:

[tex]\lim_{n\to\infty}\left|\frac{-(4+3z)(n+1)(-z)^{n+1}(-z-1)^n}{-(4+3z)n(-z)^n(-z-1)^{n-1}}\right|=\lim_{n\to\infty}\left|\frac{(n+1)(z)(z+1)}{n}\right|[/tex]

[tex]|z(z+1)|<1[/tex]

Is the above correct?

If so, how do I find the Radius of Convergence from that?
 
Physics news on Phys.org
No, that doesn't look right. For one thing, you can't just combine summands like that. The product of (z+1)(z+2)^2 is going to be the product of the two sums, and you're probably going to end up with a double sum or something.
 
Char. Limit said:
No, that doesn't look right. For one thing, you can't just combine summands like that. The product of (z+1)(z+2)^2 is going to be the product of the two sums, and you're probably going to end up with a double sum or something.

Then how can I find the power series of that expression?
 
I'd split the function up using Partial Fractions. Then you'll get three functions that are easy to devise a power series for.
 
Char. Limit said:
I'd split the function up using Partial Fractions. Then you'll get three functions that are easy to devise a power series for.

Could I instead use the rule [itex]R\geq\min{R,S} = 1[/itex]?

Isn't there a way to do this without the use of partial fractions?
 
By partial fractions, we can re-write [itex]f(z)[/itex] as
[tex] \frac{A}{z + 1} + \frac{B}{z + 2} + \frac{C}{(z + 2)^2} = \frac{4 + 3z}{(z + 1)(z + 2)^2}.[/tex]
By direct computations, [itex]A(z + 2)^2 + B(z + 2)(z + 1) + C(z + 1)[/itex] [itex]= Az^2 + 4Az + 4A + Bz^2 + 3Bz + 2B + Cz + C.[/itex]
To find the coefficients, we solve the system of linear equations.
[tex] \begin{pmatrix}1 & 1 & 0 & 0\\<br /> 4 & 3 & 1 & 3\\<br /> 4 & 2 & 1 & 4\end{pmatrix}\Rightarrow<br /> \begin{pmatrix}1 & 0 & 0 & 1\\<br /> 0 & 1 & 0 & -1\\<br /> 0 & 0 & 1 & 2\end{pmatrix}[/tex]
So the coefficients are [itex]A = 1[/itex], [itex]B = -1[/itex], and [itex]C = 2[/itex].
Therefore, [itex]\displaystyle\frac{4 + 3z}{(z + 1)(z + 2)^2} = \frac{1}{z + 1} - \frac{1}{z + 2} + \frac{2}{(z + 2)^2}[/itex] [itex]\displaystyle\Rightarrow\frac{1}{1 - (-z)} - \frac{1}{2}\cdot\frac{1}{1 - \left(-\frac{z}{2}\right)} - \frac{d}{dz}\frac{1}{1 - \left(-\frac{z}{2}\right)}[/itex].
The rational expressions can be represented as the following power series
[tex] \sum_{n = 0}^{\infty}(-z)^n - \frac{1}{2}\sum_{n = 0}^{\infty}\left(-\frac{z}{2}\right)^n - \sum_{n = 0}^{\infty}n\left(-\frac{z}{2}\right)^{n - 1}.[/tex]

Now how do I find the radius of convergence
 
First express it as a single sum. Due to associativeness, you can easily rewrite it like this:

[tex]\sum_{n=0}^{\infty} (-1)^n z^n - (-1)^n z^n 2^{-n-1} - (-1)^n n z^n 2^{1-n}[/tex]

Which, in a simpler form, is:

[tex]\sum_{n=0}^{\infty} \left( (-1)^n \left(1 - \frac{1}{2^{n+1}} - \frac{n}{2^{n-1}} \right) \right) z^n[/tex]

Now how would you find the radius of convergence of a single sum?
 
Char. Limit said:
First express it as a single sum. Due to associativeness, you can easily rewrite it like this:

[tex]\sum_{n=0}^{\infty} (-1)^n z^n - (-1)^n z^n 2^{-n-1} - (-1)^n n z^n 2^{1-n}[/tex]

Which, in a simpler form, is:

[tex]\sum_{n=0}^{\infty} \left( (-1)^n \left(1 - \frac{1}{2^{n+1}} - \frac{n}{2^{n-1}} \right) \right) z^n[/tex]

Now how would you find the radius of convergence of a single sum?

Ratio test

So we end up getting

[tex]|z| < 1[/tex]

and R = 1

Correct?
 
Last edited:

Similar threads

  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K