Laurent series around different points and on annulus

In summary, the conversation discusses finding the Laurent series for the function f(z)=\frac{1}{(z-a)(z-b)} for different cases, including 0 < |a| < |b| around z=0, z=a, z=\infty, and on the annulus |a| < |z| < |b|. The conversation also discusses using a partial fraction decomposition and substitution to find the series, as well as the concept of a "pole of order 0" and the formula for the sum of a geometric sequence. Ultimately, the goal is to express the function as a series with terms containing powers of (z-a) or (w-a).
  • #1
Gulli
96
0
I have to find the Laurent series for the following cases:

[tex]f(z)=\frac{1}{(z-a)(z-b)}[/tex] for [tex]0 < |a| < |b|[/tex] around [tex]z=0[/tex] [tex]z=a[/tex] [tex]z=\infty[/tex] and on the annulus [tex]|a| < |z| < |b|[/tex]
I know I can do a partial fraction thingy: [tex]f(z)=-\frac{1}{a(b-a)(\frac{z}{a}-1)}+\frac{1}{b(b-a)(\frac{z}{b}-1)}[/tex] which can be expressed as [tex]\frac{1}{a(b-a)}\sum(\frac{z}{a})^k - \frac{1}{b(b-a)}\sum(\frac{z}{b})^k[/tex] for [tex]\frac{z}{a}, \frac{z}{b} < 1[/tex]

The condition [tex]\frac{z}{j} < 1[/tex] is met for z = 0, but not for the other cases. I know I must use the substitution [tex]w=\frac{1}{z}[/tex] for the case where z must be taken at infinity (and thus w at 0). But I need to know how to really solve all of these cases.
 
Last edited:
Physics news on Phys.org
  • #2
Yes, the function is analytic at z=0 so you just need to find the Taylor's series at z= 0.

The function has a "pole of order 0" at z= a because it is of the form 1/(z- b), which is analytic at z= a, divided by z- a. Find the Taylor's series for 1/(z- b) at z= a, and divide each term by z- a. (One way to do that is to write 1/(z- b) as
[tex]\frac{-1}{b- z}= \frac{-1}{(b- a)- (z- a)}= -\frac{1}{1- \frac{z-a}{b-a}}[/tex]
and think about the formula for the sum of a geometric sequence.)

For z= infinity, yes, replace z by 1/z. That will give you
[tex]\frac{1}{(\frac{1}{z}- a)(\frac{1}{z}- b)}= \frac{z^2}{(1- az)(1- bz)}[/tex]
That is analytic at z= 0 so you can find a Taylor's series at z= 0.
 
  • #3
Hi Gulli! :smile:

It seems that you already got the case z=0. So, let's study the next case: z=a.

The thing is again to put the thing into partial fractions. Like you calculate, this gives us

[tex]\frac{1}{(z-a)(z-b)}=-\frac{1}{b-a}\frac{1}{z-a}+\frac{1}{b-a}\frac{1}{z-b}[/tex]

The first part is already of the form [itex]\frac{1}{z-a}[/itex], so this is good. The second part is not good yet. Try to write the second part in the form

[tex]\frac{1}{m}\frac{1}{\frac{(z-a)}{n}-1}[/tex]

for certain m and n. Then you can write this as a series again.

Edit: maybe Halls approach is slightly easier...
 
  • #4
HallsofIvy said:
The function has a "pole of order 0" at z= a because it is of the form 1/(z- b), which is analytic at z= a, divided by z- a. Find the Taylor's series for 1/(z- b) at z= a, and divide each term by z- a.

That's a very sneaky bit of trickery. You're saying I can just find a series for 1/(z-b) and then divide that series by (z-a)? Like this: [tex]-\sum(\frac{z-a}{z-b})^{k}\frac{1}{(z-a)(b-a)}[/tex] Won't that blow up for k<1?
 
Last edited:
  • #5
Gulli said:
That's a very sneaky bit of trickery. You're saying I can just find a series for 1/(z-b) and then divide that series by (z-a)? Like this: [tex]-\sum(\frac{z-a}{z-b})^{k}\frac{1}{z-a}[/tex] Won't that blow up for k<1?

Don't you have a mistake in your series? It should be
[tex]-\sum(\frac{z-a}{b-a})^{k}\frac{1}{z-a}[/tex]

This is the same as

[tex]-\sum_{k=0}^{+\infty}{\frac{1}{(b-a)^k}(z-a)^{k-1}}[/tex]

This is your Laurent series around a. I don't quite see what you mean with "blow up for k<1". The k is our summation index.

Hi Micromass. Why do I need to write everything in terms of (z-a)?

By definition, the Laurent series around a is of the form

[tex]\sum_{k=-\infty}^{+\infty}{c_k(z-a)^k}[/tex]

so to find the Laurent series, you'll need to write everything in terms of (z-a).
 
  • #6
Actually it should be [tex]-\sum(\frac{z-a}{b-a})^{k}\frac{1}{(z-a)(b-a)}[/tex] or [tex]-\sum_{k=0}^{+\infty}{\frac{1}{(b-a)^{k+1}}(z-a)^{k-1}}[/tex]

The k=0 term of this series is a singularity (for z=a), if I'm not mistaken. And yes, z-z0 is in the definition of the Laurent series, stupid of me...
 
Last edited:
  • #7
Gulli said:
Actually it should be [tex]-\sum(\frac{z-a}{b-a})^{k}\frac{1}{(z-a)(b-a)}[/tex] or [tex]-\sum_{k=0}^{+\infty}{\frac{1}{(b-a)^{k+1}}(z-a)^{k-1}}[/tex]

Why to you multiplicate this series by [itex]\frac{1}{(z-a)(b-a)}[/itex]? Am I missing something here? Should you just multiplicate it by [itex]\frac{1}{z-a}[/itex] :confused:

The k=0 term of this series is a singularity (for z=a), if I'm not mistaken.

That doesn't make any sense, how can a term of a series be a singularity?
Do you mean that the k=0 term of this series is not defined for z=a (as you divide by 0)? That's certainly true.
 
  • #8
The extra 1/(b-a) is there because Halls of Ivy forgot it when he rewrote -1/(b-z), but it's not really important since it's a non-zero constant.

Yes, I did mean that that term (with k=0) is "undefined" because we divide by 0, isn't that a problem?
 
  • #9
Gulli said:
The extra 1/(b-a) is there because Halls of Ivy forgot it when he rewrote -1/(b-z), but it's not really important since it's a non-zero constant.

Yes, indeed! :smile:

Yes, I did mean that that term (with k=0) is "undefined" because we divide by 0, isn't that a problem?

No, because the point of the Laurent series is that we won't evaluate it in a. We want to evaluate the Laurent series with points close to a, but not equal to a. Thus, the term

[tex]\frac{1}{z-a}[/tex]

will always exist, since we never evaluate it in a.

The Laurent series is defined in a punctured neighborhood of a, that means that it isn't defined in a itself.
 
  • #10
Ah, that last part (not being bothered by dividing by "approximately zero") makes it a whole lot easier. All I really have to do is find any series of (z-z0) and I'm done, well, except for the annulus case.

Then again, how do I get a series out of something as ugly as [tex]\frac{w^2}{(1- aw)(1- bw)}[/tex]
 
Last edited:
  • #11
Gulli said:
Then again, how do I get a series out of something as ugly as [tex]\frac{w^2}{(1- aw)(1- bw)}[/tex]

You need to express it as a series with terms w2. So you only need to find the series of

[tex]\frac{1}{(1-aw)(1-bw)}[/tex]

and then multiplicate the result by w2. Now, split the above fraction into partial fractions and write each partial fraction as a series by again using the identity

[tex]\frac{1}{1-z}=\sum_{k=0}^{+\infty}{z^k}[/tex]
 
  • #12
micromass said:
You need to express it as a series with terms w2. So you only need to find the series of

[tex]\frac{1}{(1-aw)(1-bw)}[/tex]

and then multiplicate the result by w2. Now, split the above fraction into partial fractions and write each partial fraction as a series by again using the identity

[tex]\frac{1}{1-z}=\sum_{k=0}^{+\infty}{z^k}[/tex]

So I should get a w^2 times a series in (w-0)? Doesn't that violate the definition of the Laurent series which says only a constant is allowed in front of the sum?
 
  • #13
Gulli said:
So I should get a w^2 times a series in (w-0)? Doesn't that violate the definition of the Laurent series which says only a constant is allowed in front of the sum?

No, because you can bring the w2 in the sum in the end. For example, you might get

[tex]w^2\sum_{n=0}^{+\infty}{w^n}=\sum_{n=0}^{+\infty}{w^{n+2}}[/tex]
 
  • #14
I get:

[tex]\sum(-\frac{a^{k+1}}{b}+1+ab^{k-1})z^{-k-2}[/tex] with z=1/w.

So how do I tackle the annulus case? And btw, thanks for all your speedy replies.
 
  • #15
For the annulus case, we start again from the partial fractions

[tex]\frac{1}{b-a}\frac{1}{z-a}-\frac{1}{b-a}\frac{1}{z-b}[/tex]

we want to represent these fractions as series again. For the fraction [itex]\frac{1}{z-b}[/itex] there is no problem as [itex]|z|<|b|[/itex]. But the [itex]\frac{1}{z-a}[/itex] might pose problem. For that, do the trick

[tex]\frac{1}{z-a}=\frac{1}{z}\frac{1}{1-\frac{a}{z}}[/tex]

The factor [itex]\frac{1}{z}[/itex] is already in the good form. The other factor can easily be represented as a series now.
 
  • #16
So if, say, the annulus were between a/2 and 3a/2, then the anwer for the case z=a would already be a solution?
 
  • #17
For the annulus |a| < |z| < |b| I get:

[tex]f(z)=\frac{1}{(b-a)(z-a)}-\frac{1}{(b-a)(z-b)} = \frac{1}{(-\frac{z}{b}+1)(b-a)b}+\frac{1}{(b-a)(1-\frac{a}{z})z}[/tex]

That would give me:

[tex]\frac{1}{b(b-a)}\sum(b^{k}z^{k}) + \frac{1}{b-a}\sum(a^{k}z^{-k-1})[/tex]

Is this any good?
 
Last edited:
  • #18
Yes, but there's a small typo. You have to write b-k in the first series.
 
  • #19
Yes, you're right, it should be minus k. So am I allowed to leave this solution as it is or do I have to rewrite it as a single sum in z (if that's even possible)?
 
  • #20
Gulli said:
Yes, you're right, it should be minus k. So am I allowed to leave this solution as it is or do I have to rewrite it as a single sum in z (if that's even possible)?

No, what you have seems ok!
 
  • #21
Great, thanks a lot, I'm going to try more examples now.
 

1. What is a Laurent series?

A Laurent series is a type of mathematical series that represents a complex function as a sum of infinitely many terms. It is named after the French mathematician Pierre Alphonse Laurent and is often used to approximate complex functions near singular points.

2. How is a Laurent series different from a Taylor series?

A Laurent series differs from a Taylor series in that it includes both positive and negative powers of the variable, while a Taylor series only includes positive powers. In other words, a Laurent series takes into account the behavior of the function near singular points, while a Taylor series only represents the function at a specific point.

3. What are singular points in a Laurent series?

Singular points in a Laurent series are points where the function is not analytic, meaning it is not smooth and continuous. These points can be either poles, where the function approaches infinity, or branch points, where the function takes on multiple values.

4. What is an annulus in relation to Laurent series?

An annulus is a region in the complex plane that lies between two concentric circles. In the context of Laurent series, it is the region where the series converges and can be used to approximate the function. The inner circle represents the singular point and the outer circle represents the boundary of convergence.

5. How are Laurent series used in practical applications?

Laurent series are used in many areas of science and engineering to approximate complex functions. They are particularly useful in physics, where they can be used to model physical phenomena such as electric and magnetic fields. They are also used in computer science for signal processing and image reconstruction.

Similar threads

  • Calculus and Beyond Homework Help
Replies
9
Views
913
  • Calculus and Beyond Homework Help
Replies
3
Views
398
  • Calculus and Beyond Homework Help
Replies
6
Views
463
  • Calculus and Beyond Homework Help
Replies
6
Views
742
Replies
4
Views
634
  • Calculus and Beyond Homework Help
Replies
1
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
3K
  • Calculus and Beyond Homework Help
Replies
12
Views
1K
  • Calculus and Beyond Homework Help
Replies
3
Views
484
  • Calculus and Beyond Homework Help
Replies
6
Views
1K
Back
Top