7

I'm looking over the solution of an exercise in a course I'm taking and there's something I simply don't understand. Let $f(z)=\pi\cot(\pi z)$ and $\varphi(z) = \frac{1}{z^2}$. $f$ has poles of order $1$ in the points $k\in\mathbb{Z}$ and $\varphi$ has a pole of order $2$ at $0$. Now in the solution of the exercise it is written that from the residue theorem the following holds:

$$\frac{1}{2\pi i} \int_\gamma f\cdot\varphi \, dz=\operatorname{Res} (f\varphi,0) + \sum\varphi(k)\operatorname{Res}(f,k)$$

where $\gamma$ is a simple positively oriented close curve and the sum extends over the values of $k\in\mathbb{Z}$ contained in the interior of $\gamma$. Now the standard form of the theorem would be:

$$\frac{1}{2\pi i} \int_\gamma f\cdot\varphi \, dz = \sum \operatorname{Res} (f\cdot\varphi,k)$$

So for some reason for $k\neq0$ it holds that $\operatorname{Res}(\varphi f,k) = \varphi(k) \operatorname{Res} (f,k)$, why is that?

Is it more generally true that if $f,g$ are functions such that $z_0$ is a singularity of $f$ but not of $g$ then $\operatorname{Res}(f\cdot g,z_0) = g (z_0) \cdot \operatorname{Res} (f,z_0)$. Is it maybe necessary to assume that $z_0$ is not a zero of $g$ for this to be true?

Help would be appreciated.

Serpahimz
  • 3,781
  • Please don't use \mbox{} that way. I've changed it to \operatorname{}. Is there some web page telling you to do it that way? The purpose of \mbox{} is normal LaTeX (as opposed to this stripped-down version called MathJax) is to prevent line breaks. Using it instead of \operatorname{} or \text{} sets a bad example for those learning to code such things. – Michael Hardy Dec 29 '13 at 23:07
  • Also, why write f\left(z\right) instead of f(z)? \left and \right matter in expressions like $\displaystyle\left(\sum_{k=1}^\infty\frac{1}{k!}\right)$, in that the prevent it from appearing as $\displaystyle(\sum_{k=1}^\infty\frac{1}{k!})$, but in some situations they don't matter and just make things harder to edit. – Michael Hardy Dec 29 '13 at 23:07
  • 1
    @MichaelHardy My native language is Hebrew and I'm using LyX so in order to properly insert both mathematical text and Hebrew text the Left/Right business is necessary. Regarding the use of mbox I agree, I was just being lazy. – Serpahimz Dec 29 '13 at 23:14

2 Answers2

5

So for some reason for $k\neq0$ it holds that $\operatorname{Res}\left(\varphi f,k\right)=\varphi\left(k\right)\mbox{Res}\left(f,k\right)$, why is that?

That is because $\varphi$ is holomorphic in $k \neq 0$, and $f$ has a simple pole in $k$.

So we can write $f(z) = (z-k)^{-1}\cdot h(z)$ with $h$ holomorphic and nonzero in a neighbourhood of $k$, and $\operatorname{Res} \left(f;k\right) = h(k)$.

Multiplying that with $\varphi$ gives

$$\varphi(z)f(z) = (z-k)^{-1}\left(\varphi(z)h(z)\right),$$

and if $\varphi(k) = 0$ (our particular $\varphi$ of course has no zeros), then the singularity of $\varphi\cdot f$ in $k$ is removable, hence the residue is $0 = \varphi(k)\cdot h(k)$, making it right, and if $\varphi(k) \neq 0$, the residue in $k$ is (also) $\varphi(k)\cdot h(k)$.

This simple formula, however, holds only for simple poles [it may accidentally happen to coincide with the residue also in other cases, but that's coincidence then].

If we look at the Laurent expansion around a singularity, when the singularity is a simple pole, only the coefficient of $(z-\zeta)^{-1}$ of the singular factor and the constant coefficient of the holomorphic factor contribute.

If the singularity is a pole of higher order, or an essential singularity, all pairs of coefficients whose exponents sum to $-1$ contribute, and these are then more than one pair.

Daniel Fischer
  • 206,697
  • Thanks for the answer Daniel! Something seems to have happened to the end of the last sentence there, I'm guessing the last word is the start of "coefficient" :). – Serpahimz Dec 29 '13 at 23:15
  • Connection broke down while submitting :( Strangely, the trouble affected only Stack Exchange, all other sites didn't so much as cough. – Daniel Fischer Dec 29 '13 at 23:24
2

If $g$ is holomorphic at some point $z_0$ and $f$ has a simple pole at $z_0$ then $\text{Res}_{z_0}(gf) = g(z_0)\text{Res}_{z_0}(f)$. This is easy to see by looking at the Laurent expansions.

It is not true if $f$ has a pole of higher degree, for instance $1/z = z \times 1/z^2$ has nonvanishing residue at $0$ but $1/z^2$ has vanishing residue. There are also examples where $g$ is nonvanishing, for instance $(1+z)/z^2 = $ has nonvanishing residue, but $1/z^2$ has vanishing residue, even though $1+z$ does not vanish at $0$.

Bruno Joyal
  • 54,711
  • What interpretation would you give to a function which has a vanishing residue? That is, a function which does have singularities in the integration region. – Mussé Redi Jan 17 '17 at 19:14
  • @MusséRedi A meromorphic differential with vanishing residue at a point is locally integrable at that point (i.e. it's locally the differential of a meromorphic function at that point). At least that's how I think about it... Only the $dz/z$ term is an obstruction to finding a local primitive. – Bruno Joyal Jan 21 '17 at 20:23