5

Consider the function

$$f(z) = \frac{e^z+1}{e^z-1}$$

This function has a Laurent expansion about $0$ of the form

$$f(z) = \frac{a}{z} + \sum_{n=0}^\infty b_nz^n$$

for constants $a, b_1,\ldots, b_n$. Show that $b_n=0$ for all even $n$.


What is the best way to do this? All I can think to do is find the laurent expansion and then show that a few are zero but obviously this doesn't prove it for all even $n$, just a few.


If we split $f(z)$ into even and odd parts we have

$$f(z) = \frac az +\sum_{k=0}^\infty b_{2k}z^{2k}+\sum_{k=0}^\infty b_{2k+1}z^{2k+1}$$

and how the problem turns into showing the first summation is zero.

user2850514
  • 3,689
  • How many coefficients in the power series do you need? it can be done without knowing the whole closed form of the series – DonAntonio May 07 '16 at 21:16
  • @Joanpemo whoops I have realised I haven't put the full question down... – user2850514 May 07 '16 at 21:17
  • and $\displaystyle\frac{z}{e^z-1} = \sum_{k=0}^\infty \frac{B_k}{k!} z^k$ while $\displaystyle\frac{z e^z}{e^z-1} = \frac{-z}{e^{-z}-1} = \sum_{k=0}^\infty \frac{B_k}{k!} (-z)^k$ hence $\displaystyle\frac{1}{z}\left(\frac{z}{e^z-1} + \frac{z e^z}{e^z-1} \right) = \frac{2}{z} \sum_{k=0}^\infty \frac{B_{2k}}{k!} z^{2k}$ on $0 < |z| < 2 \pi$ https://en.wikipedia.org/wiki/Bernoulli_number#Generating_function – reuns May 07 '16 at 21:22
  • @user1952009 These formulas don't seem correct to me. In your first one you have the LHS which has a Laurent series then on the RHS you have a taylor series with no negative powers. Same for the second. Please check before posting!! – user2850514 May 07 '16 at 21:44
  • $\frac{z}{e^z-1}$ is holomorphic (analytic) on $|z| < 2 \pi$ (and at the last one I forgot to write $(2k)!$ instead of $k!$) – reuns May 07 '16 at 21:53
  • so it's the biter bit :) – reuns May 07 '16 at 23:20

2 Answers2

6

Check that $f(-z) = -f(z).$ Thus

$$\frac{a}{-z} + \sum_{n=0}^\infty b_n(-z)^n = -\left (\frac{a}{z} + \sum_{n=0}^\infty b_nz^n\right ) = -\frac{a}{z} + \sum_{n=0}^\infty (-b_n)z^n.$$

Equating coefficients gives the desired result.

zhw.
  • 105,693
1

Let $f(z)$ be the function given by

$$f(z)=\frac{e^{z}+1}{e^{z}-1}-\frac{2}{z}$$

Clearly $f(z)$ is analytic for $0<|z|<2\pi $. Then, note that

$$\lim_{z\to 0}f(z)=0$$

and $f(z)$ is analytic for all $|z|<2\pi$. Furthermore, we have

$$\begin{align} f(-z)&=\frac{e^{-z}+1}{e^{-z}-1}+\frac{2}{z}\\\\ &=-\frac{e^z+1}{e^z-1}+\frac{2}{z}\\\\ &=-f(z) \end{align}$$

Hence, $f(z)$ is an odd function of $z$ and can be expanded in a Taylor series of odd powers only with $f(z)=\sum_{n=1}^\infty a_nz^{2n-1}$. Finally, we can write

$$\frac{e^{z}+1}{e^{z}-1}=\frac2z+\sum_{n=1}^\infty a_nz^{2n-1}$$

as was to be shown.

Mark Viola
  • 179,405