5 Complex Numbers and Functions: 5.1 Arithmetic in C
5 Complex Numbers and Functions: 5.1 Arithmetic in C
To get round this problem we introduce the symbol i whose defining property is that it satisfies
the equation
i2 = −1.
Re z = x, Im z = y.
z = w ⇔ x = u and y = v ⇔ Re z = Re w and Im z = Im w.
That is, two complex numbers are equal if and only if their real and imaginary parts are
equal. The set of real numbers can be thought of as a subset of the complex numbers by
identifying x ∈ R with x + 0i ∈ C. Indeed, we will write x in place of x + 0i in such cases,
and similarly write iy instead of 0 + iy.
5.1 Arithmetic in C
Addition, subtraction and multiplication in C all have obvious definitions which run as follows,
where again z = x + iy and w = u + iv:
z + w = (1 + 3) + (2 − 5)i = 4 − 3i,
z − w = (1 − 3) + 2 − (−5) i = −2 + 7i,
zw = (1 + 2i)(3 − 5i) = 1 × 3 − 2 × (−5) + i 1 × (−5) + 2 × 3
= 13 + i.
82
COMPLEX NUMBERS AND FUNCTIONS
z1 + z2 = z2 + z1 ; z1 z2 = z2 z1 ; (z1 + z2 ) + z3 = z1 + (z2 + z3 );
(z1 z2 )z3 = z1 (z2 z3 ); (z1 + z2 )z3 = z1 z3 + z2 z3 ; z1 + z2 = z1 + z2
z
z z1 |z1 |
z1 z2 = z1 z2 ; = ; |z| = |z|; |z1 z2 | = |z1 ||z2 |; = ;
w w z2 |z2 |
Re z = 21 (z + z); Im z = 1
2i (z − z).
83
Geometrical interpretation: the complex plane
y z
real axis
z−w
−w
Since the modulus corresponds to a distance, in particular since |z − w| represents the
distance between z and w in the above diagram, we can use this function to describe geometric
objects in a succinct fashion. For example the equation
z − (1 + i) = 2
is satisfied by all those complex numbers z that are a distance 2 from the point 1 + i. That
is, all the points on the circle with centre 1 + i and
with radius
2.
In a similar way the equation z − (1 + 3i) = z − (5 + i) is satisfied by all those points
that are equidistant from the points 1 + 3i and 5 + i in the complex plane. Thus z satisfies this
equation precisely if it lies on the line that is the perpendicular bisector of the line segment
joining 1 + 3i to 5 + i. Along this line segment the change in the real part is 5 − 1 = 4, and
the corresponding change in the imaginary part is 1 − 3 = −2, so the midpoint of the line
segment is
1 + 3i + 21 (5 + i) − (1 + 3i) = (1 + 3i) + (2 − i) = 3 + 2i = 12 (1 + 3i) + (5 + i) .
1
Moreover the slope of the line segment connecting the points has gradient −2 4 = − 2 , so the
1
slope of the perpendicular bisector is − −1/2 = 2, and hence this line has equation
y − 2 = 2 × (x − 3) ⇔ y = 2x − 4,
in terms of the real and imaginary parts of z.
y = 2x − 4
1 + 3i
1+i 3 + 2i
5+i
84
COMPLEX NUMBERS AND FUNCTIONS
Exercise 5.2. Use |z|2 = (Re z)2 +(Im z)2 to derive the equation of the perpendicular bisector
of the line segment from 1 + 3i to 5 + i in the form y = mx + c.
Solution.
Exercise 5.3. Which region of the complex plane is described by the inequality |z|2 > z + z?
Solution.
85
Complex-valued functions
θ + 4π etc. are all alternative values for the argument. If θ is chosen so that −π < θ 6 π then
this value is known as the principal argument.
If we are given r and θ then by standard trigonometry
we have Re z = r cos θ and Im z = r sin θ, so that
r cos θ
z = r cos θ + ir sin θ
r
On the other hand given z we know that r = |z|, and find
r sin θ
that
r sin θ Im z θ
tan θ = = .
r cos θ Re z
Im z
However, we cannot conclude from this that θ = tan−1 ,
Re z
since the usual definition of the inverse tangent only takes
π π
values between − and , and so will give the wrong answers for numbers such as z = −1−i.
2 2
3π π
This z has argument − , not tan−1 (1) = .
4 4
By writing complex numbers in polar form, we find the geometrical meaning of multipli-
cation — the analogue to the parallelogram rule for addition. Indeed, if
That is,
|zw| = |z||w| and arg(zw) = arg z + arg w.
So, if we are dealing with a multiplication by a fixed number w, then its effect is to scale
everything by a factor of |w|, and change all arguments by adding arg w, that is, rotating
everything anticlockwise by this amount.
A similar calculation, assuming w 6= 0, shows that
z |z| z
= and arg = arg z − arg w.
w |w| w
π π 3π 3π 9π
t= 0 4 2 4 π 2 2π 4 ···
f (t) = 1 √1 (1 + i) i √1 (−1 + i) −1 −i 1 √1 (1 + i) · · ·
2 2 2
That is, f (t) travels round the unit circle in an anticlockwise direction.
86
COMPLEX NUMBERS AND FUNCTIONS
for real numbers a, b, c, d ∈ R. This is the parametric equation of the line through the point
b + id in the direction specified by a + ic.
For any such function f : R → C we can take real and imaginary parts, and obtain
functions u : R → R and v : R → R:
If we take our first example, f (t) = t2 + i(1 − et ), then u(t) = t2 and v(t) = 1 − et .
A function f : R → C is continuous at a ∈ R if f (t) approaches the value f (a) as t → a.
To be more precise, this means that |f (t) − f (a)| → 0 as t → a, where this limit is one
involving real numbers. An equivalent definition is that f is continuous at t = a if both of
the real-valued functions u(t) = Re f (t) and v(t) = Im f (t) are continuous at that point.
Similarly, f is differentiable at t = a, with derivative f ′ (a), if
f (a + h) − f (a)
lim = f ′ (a)
h→0 h
exists. Again, an alternative, equivalent definition is that f is differentiable at t = a if the
functions u and v for real and imaginary parts are both differentiable there, in which case
The second type of function (the one that we are more interested in for this course) are
functions from C back to C. Simple examples include
z2 + 9
f (z) = 2z 3 − 3iz + 5 − 7i, g(z) = z − |z|2 , h(z) = .
z2 + 4
The first two make good sense for any choice of z. Since z 2 + 4 = (z + 2i)(z − 2i), h(z) is not
defined when z = ±2i.
It is less easy to give a geometrical view of such functions than say for functions R → R,
when we can picture the graph, or functions R2 → R, when we can picture the surface, or
functions R → C, when we can picture the curve or path in the plane. Indeed, the analogue
to writing y = f (x) for functions R → R is to write w = f (z), where z is the input variable,
which is viewed as a point in one plane, and w = f (z), the value coming from the function,
is a point in another plane.
w = f (z)
87
Complex-valued functions
Exercise 5.4. Consider the mapping w = f (z) = (2 + i)z + 3. Find the image of the line
y = 3x + 1 under this mapping, where z = x + iy.
Solution.
It can be difficult to picture overall what such a function is doing, but it is often possible
to determine the image in the w-plane of various figures or shapes in the z-plane.
For example, fix complex numbers a, b ∈ C with a 6= 0, and define w = az + b. Then we
can rearrange:
w−b
w = az + b ⇔ z = .
a
Now any circle in the z-plane has equation |z − α| = r, where α ∈ C is the centre and r > 0
is the radius. If w = az + b then the image of this circle is
w − b
= r ⇔ w − b − aα = |w − b − aα| = r ⇔ |w − (b + aα)| = r|a|.
a − α a |a|
That is, the image is a circle with centre aα + b, and radius r|a|.
On the other hand any straight line in the z-plane has an equation of the form |z − α| =
|z − β|, where α ∈ C is a point off of the line, and β is its reflection in the given line. Again,
under the mapping w = az + b this line is taken to
w − b w − b
⇔ |w − b − aα| = |w − b − aβ|
a − α =
a − β |a| |a|
⇔ |w − (b + aα)| = |w − (b + aβ)|
88
COMPLEX NUMBERS AND FUNCTIONS
That is, the image of the line that is the perpendicular bisector of the line segment between
α and β is the perpendicular bisector of line segment between b + aα and b + aβ.
These two parts together show that w = az + b maps circles to circles and straight lines
to straight lines.
We next want to consider the mapping w = z −1 , which is defined for all z 6= 0. Before
this, we return to the equation of a circle. If α = a1 + ia2 , β = b1 + ib2 ∈ C, and t ∈ R such
that 0 < t < 1 or t > 1, then some tedious algebra shows that
|z − α| = t|z − β|
t2 b1 − a1 2 t2 b2 − a2 2 t 2
(a1 − b1 )2 + (a2 − b2 )2 .
⇔ x− 2 + y− 2 = 2
t −1 t −1 t −1
That is, the equation |z − α| = t|z − β| corresponds to a circle with centre and radius
t2 b 1 − a 1 t2 b 2 − a 2 t 1/2
+ i and 2 (a1 − b1 )2 + (a2 − b2 )2
t2 − 1 t2 − 1 |t − 1|
respectively.
So now consider the image of the circle |z − α| = r under w = z −1 . If α = 0, i.e. the centre
is the origin, then this becomes
1 1 1
= = r ⇔ |w| = ,
w |w| r
which is a line if |α| = r, otherwise it is a circle by the above calculation, where t = r/|α|.
On the other hand consider any straight line. This can always be written as |z−α| = |z−β|,
which is then transformed to
1 1 |1 − αw| |1 − βw|
− α = − β ⇔ = ⇔ |1 − αw| = |1 − βw|.
w w |w| |w|
But α and β can always be chosen so that neither is 0 (why?), hence the final equality is
equivalent to
1 |β| 1
w − = w − ,
α |α| β
which is a line if |α| = |β|, and a circle otherwise.
89
Complex-valued functions
Proof. First note that if c = 0, hence d 6= 0, then w = (a/d)z + b/d, which is a transformation
we have already considered. So if c 6= 0, then
Note that if we did not assume ad − bc 6= 0 then this would be a constant map, which would
map all points in the z-plane to a/c.
But now we can write f (z) = f3 f2 f1 (z) where
1 a ad
f1 (z) = cz + d, f2 (z) = and f3 (z) = + b − z,
z c c
Each of the maps f1 , f2 and f3 maps lines or circles to lines or circles, so doing all three, one
after the other, will have the same effect.
Exercise 5.6 (A03 7(a)). Find the image of the circle |z − 1| = 1 under each of the mappings
(i) w = 2z + 3 (ii) w = 1/z
Solution.
90
COMPLEX NUMBERS AND FUNCTIONS
Exercise 5.7 (S03 7(a)). Find the image of the line Re z = 1 under the mappings (i) w = z 2
(ii) w = 1/z
Solution.
Exercise 5.8. Find the image of the sets {z : Re z = 0} and {z : Re z > 0 and Im z > 0}
under the map w = z 2 .
Solution.
91
Complex-valued functions
Example 5.9 (S05 5(a)). Sketch the following sets of points in the complex plane:
1
Find the image of A under the transformation w = and the image of B under the
z−1
transformation w = z 3 . Sketch these images.
Solution. {z : |z − 3| = |z − 1|} consists of points equidistant from 3 and 1, i.e. the line
Re z = 2.
{z : 1 < |z| < 2, π2 < arg z < 2π π 2π
3 } is the intersection of the sector {z : 2 < arg z < 3 }
with the annulus {z : 1 < |z| < 2}.
92
COMPLEX NUMBERS AND FUNCTIONS
A B
θ
1 2
1 2 3
2π
θ= 3
1 1+w 1
Now w = ⇔ (z − 1)w = 1 ⇔ z = = + 1. Thus the image of A is
z−1 w w
1 + 1 − 3 = 1 + 1 − 1 ⇔ |1 − 2w| = 1 ⇔ 2 1 − w = 1 ⇔ w − 1 = 1
w w |w| |w| 2 2 2
1 < |z| < 2 ⇒ 13 < |w| < 23 , i.e. 1 < |w| < 8, and
π 2π 3π
< arg z < ⇒ < arg w < 2π.
2 3 2
1
2 1 1 8
Image of A Image of B
Example 5.10. In each case determine geometrically the set of points that satisfy the given
conditions:
Thus the circle from (i) is mapped to the circle with centre 6 + 3i and radius 4.
93
Exercises
|z + i| < |z − 1|
−i
|z + i| = |z − 1|
5.4 Exercises
1. Evaluate each of the following expressions, giving your answer in the form x + iy for real
numbers x and y:
2
(−4 − 5i)(8 − 4i) 1 3 + 2i
(i) (2 + 4i)(6 − 31) (ii) (iii) (iv)
6 + 2i i −1 + i
1
(v) (3 − 8i)(2i)(3 + 2i) (vi) i3 − 4i2 + 2 (vii) (2 − i)3 (viii) i7 + 7
i
2. (a) In each case determine the modulus and argument of the given complex number:
3. Let z = r(cos θ + i sin θ) and w = s(cos ϕ + i sin ϕ) be two complex numbers given in polar
form. Use the fact that 1/w = w/(ww) to show the following:
1 1 z r z
= (cos ϕ − i sin ϕ), = and arg =θ−ϕ
w s w s w
4. In each case determine geometrically the set of points that satisfy given conditions:
Find the image of (i) and (ii) under the map w = (−1 + i)z + (3 + 2i), and the image of (ii)
under the maps w = iz 2 , w = 1/z and w = (z − i)/(z + 2).
94
COMPLEX NUMBERS AND FUNCTIONS
as |z − a| → 0. These limits here are concerned with real-valued quantities, so we can make
use of earlier (Section A) results to help calculate them.
The subtlety in the complex case is that there are many different ways for us to make
z → a. For example, writing a = α + iβ, we could take z = α + h + iβ for h > 0, and let
h → 0, or we could take z = α + i(β + h) for h < 0, and let h → 0, or . . . The important
thing to note is that the definition allows z to approach a from all directions in the plane.
For example, consider the function f (z) = z 2 . Then at any point z = a we have
|z| = |(z − w) + w| 6 |z − w| + |w| and |w| 6 |w − z| + |z| = |−(z − w)| + |z| = |z − w| + |z|
for all z, w ∈ C, from which we get |z| − |w| 6 |z − w|. It follows that
0 6 |z + a| − |a + a| 6 |(z + a) − (a + a)| = |z − a| → 0,
so by the Squeeze Theorem |z + a| → |a + a|, and applying the limit laws we get
|z 2 − a2 | → 0 × |2a| = 0.
That is, z 2 → a2 , hence the function f (z) = z 2 is continuous at a. Similar arguments, and
some induction show that all polynomials are continuous functions at all points in the plane.
Re z Im z
Exercise 5.11. Consider the function f (z) = , defined for each z 6= 0. Show that
|z|2
there is no α ∈ C such that defining f (0) = α will make the function continuous at the origin.
Solution.
We say that a sequence (an )∞n=1 of complex numbers is convergent to some limit L if an
gets closer and closer to L as n → ∞, which amounts to saying that |an − L| → 0 as n → ∞,
or, equivalently, that
Re an → Re L and Im an → Im L as n → ∞.
95
Continuity; sequences and series
∞
X (z + 1)n
Exercise 5.13. For which values of z does the series converge absolutely?
n=0
2n
Solution.
96
COMPLEX NUMBERS AND FUNCTIONS
∞
X
bn (z − a)n .
n=1
Combining the fact that absolute convergence implies convergence of a series of complex num-
bers, together with an application of the Ratio Test, shows
that there is some number 0 6 R 6 ∞ such that the above
series converges for all z ∈ C that satisfy |z − a| < R, and
diverges if |z − a| > R. That is, the series is convergent
inside the disc of radius R and centre a, and divergent out- R
side. On the boundary we have to apply further tests. The a
function defined by the series is continuous within the disc,
and moreover it is permissible to differentiate a power se-
ries term-by-term within its radius of convergence (as soon
as we have defined differentiation for such functions. . . )
where x is a real variable above. These were shown to converge for all x ∈ R by calculating the
radius of convergence using the Ratio Test. In turns out that the calculation
P∞ is equallyP valid for
∞
the analogous complex power series. For example, consider the series n=0 z n /n! = n=0 an
where an = z n /n!. We have
Thus, by the Ratio Test, the series is absolutely convergent and hence convergent for all
z ∈ C. Consequently we can define ez , and similarly sin z and cos z, by setting:
∞ ∞ ∞
X zn X (−1)n z 2n+1 X (−1)n z 2n
ez = exp z = , sin z = , cos z = .
n=0
n! n=0
(2n + 1)! n=0
(2n)!
That is, we use the power series expansions to extend the domain of definition of these
functions to all of the complex plane C, noting that if z = x, i.e. if z has no imaginary part,
then ez as defined above coincides with the usual value for ex , etc.
One can then check from these definitions of complex exponentials and trigonometric
functions that the following familiar formulae hold:
97
Exponential and trigonometric functions
and so exp z 6= 0 for all z; moreover exp(−z) = 1/ exp z. Also, sin(−z) = − sin z since the
series for sin z involves only odd powers of z, and cos(−z) = cos z since the series for cos z
involves only even powers of z. For example
∞ ∞ ∞
X (−1)n (−z)2n X (−1)n (−1)2n z 2n X (−1)n z 2n
cos(−z) = = = = cos z,
n=0
(2n)! n=0
(2n)! n=0
(2n)!
This in turn leads to quick proofs of how arguments and moduli change on multiplication and
division, for example if z = reiθ and w = seiϕ then
z reiθ r z |z| z
= iϕ = ei(θ−ϕ) ⇒ = and arg = arg z − arg w.
w se s w |w| w
Also note that the power law for the exponential function and (†) give
which is an alternative way to define ez , as used in the other texts. For similar formulae for
cos z and sin z note that from (†) we have
eiz = cos z + i sin z ⇒ e−iz = ei(−z) = cos(−z) + i sin(−z) = cos z − i sin z
⇒ cos z = 21 (eiz + e−iz ),
= 12 (e−y+ix + ey−ix )
1
(cos x + i sin x) + ey (cos x − i sin x)
−y
= 2 e
1 y
= 2 (e + e
−y
) cos x − 2i (ey − e−y ) sin x
Thus cos z = cos(x + iy) can be expressed in terms of the usual trigonometric functions of x,
together with the hyperbolic functions of y. A similar calculation for sin z yields:
cos z = cos x cosh y − i sin x sinh y, sin z = sin x cosh y + i cos x sinh y
where recall that cosh y = 12 (ey + e−y ) and sinh y = 21 (ey − e−y ). In particular, taking a
purely imaginary number as the argument in the above gives
98
COMPLEX NUMBERS AND FUNCTIONS
Our earlier identities about cos(z + w) etc. made it look like complex trigonometric func-
tions behave in essentially the same way as their real counterparts. However the above
identities show that this is not always the case. For example:
In particular, it is not true that | cos z| 6 1. Moreover ez can take any value in the complex
plane apart from 0, so is not restricted to just the positive real numbers as is ex , x ∈ R. For
example
√ √ √
exp ln( 2 ) + i π4 = exp ln( 2 ) cos π4 + i sin π4 = 2 × √12 + i √12 = 1 + i.
Exercise 5.14 (A03 7(b)). Define ez and cos z for z = x + iy. Write cos(2 − 3i) in the form
a + ib for a, b real numbers.
Solution.
Exercise 5.15. Show that sin(z) = sin z, and hence that | sin z|2 = sin2 x + sinh2 y. Use this
to write e4+i / sin(2 − 5i) in the form a + ib for a, b ∈ R.
Solution.
Example 5.16 (S05 5(b)). Write e2+3i and cos(4 − i) sin(3 + 5i) in the form x + iy for real
numbers x and y.
99
De Moivre’s Theorem; nth roots
Solution. We have
and
cos(4 − i) sin(3 + 5i) = cos 4 cosh 1 + i sin 4 sinh 1 sin 3 cosh 5 + i cos 3 sinh 5
= cos 4 cosh 1 sin 3 cosh 5 − sin 4 sinh 1 cos 3 sinh 5
+ i cos 4 cosh 1 cos 3 sinh 5 + sin 4 sinh 1 sin 3 cosh 5
Moreover, if m < 0 is an integer then we define z m = z −(−m) = (z −m )−1 = 1/z −m, and it
follows that the above equation holds for all integers m. So in particular if we take |z| = 1,
i.e. r = 1, then the above becomes
This identity is known as De Moivre’s Theorem and can be used to prove various trigono-
metric identities, as well as calculate powers and roots of complex numbers.
For example, given a complex number z = reiθ 6= 0 and an integer n > 2, which w ∈ C
satisfy wn = z? Any solution of this equation is an nth root of z. For the case n = 2 we
would be finding square roots. To solve this, let w = seiϕ , then
Exercise 5.17. Apply De Moivre’s Theorem with n = 3 to derive expressions for cos 3θ and
sin 3θ in terms of cos θ and sin θ.
100
COMPLEX NUMBERS AND FUNCTIONS
Solution.
Solution.
101
Exercises
5.8 Exercises
1. Which of the following complex sequences converge? [Hint: considering real and imaginary
parts of an , or considering |an | maybe be useful]
n ∞ ∞ ∞
(−1)n n
2
i n + in
(i) (ii) (iii) (iv) (e(1+i)n )∞
n=1
n n=1 n + i n=1 n2 + i n=1
3. Find the following powers and roots and plot them on an Argand diagram:
√ √ √ √
q
4
7 4
(i) (−1 + 3i) (ii) (1 − i) (iii) i (iv) 3 −8i (v) 81 + 81 3i
4. In each case find the radius of convergence of the given power series:
∞ ∞ ∞
X (n2 + 1)(z + 1)n X (n − 1)7n z n X i(z − i)n
(i) (ii) (iii)
n=0
n! n=0
3n + 5 n=0
in + 1
If we also know that f is differentiable at the point z0 = a + ib then we can calculate the
derivative in a number of different ways, the most obvious being to either vary the real part
while leaving the imaginary part fixed, or vice versa. For the first case we are making the
small change w = h + i0 = h with h ∈ R, h 6= 0, and so
f (z0 + w) − f (z0 ) f (a + ib + h) − f (a + ib)
f ′ (z0 ) = lim = lim
w→0 w h→0 h
[u(a + h, b) + iv(a + h, b)] − [u(a, b) + iv(a, b)]
= lim
h→0 h
u(a + h, b) − u(a, b) v(a + h, b) − v(a, b)
= lim +i×
h→0 h h
∂u ∂v
= (a, b) + i (a, b).
∂x ∂x
102
COMPLEX NUMBERS AND FUNCTIONS
∂u ∂v ∂u ∂v
= and =− .
∂x ∂y ∂y ∂x
The equations above are known as the Cauchy-Riemann equations, and are necessarily sat-
isfied by any differentiable function f : C → C.
Example 5.19. Show that the real and imaginary parts of the function f (z) = zz 2 satisfy
the Cauchy-Riemann equations only at the origin.
Solution. f (z) = f (x+iy) = (x−iy)(x+iy)2 = (x−iy)(x2 −y 2 +2ixy) = x3 +xy 2 +i(y 3 +x2 y)
and so the real and imaginary parts of f are
103
Differentiable and analytic functions
has radius of convergence r, then f is analytic in the disc D = {z : |z − z0 | < r}. Hence it is
infinitely differentiable in D, and
∞
X
f ′ (z) = nbn (z − z0 )n−1 .
n=1
Since the exponential and trigonometric functions were defined in terms of power series
with infinite radius of convergence, it follows that these functions are entire, and that we can
differentiate them term-by-term. It is then not hard to check that
d z d d
e = ez , sin z = cos z, cos z = − sin z.
dz dz dz
Exercise 5.21. Let u(x, y) = Re f (z) and v(x, y) = Im f (z) for f (z) = z 2 + iz, where
z = x + iy. Show that u and v satisfy the Cauchy-Riemann equations everywhere.
Solution.
Exercise 5.22. Let f (z) = |z|2 , and let u and v denote the real and imaginary parts of f .
Show that u and v only satisfy the Cauchy-Riemann equations at the origin, and that the
function f is differentiable there.
Solution.
104
COMPLEX NUMBERS AND FUNCTIONS
Exercise 5.23 (S03 7(b)). Simplify u(x, y) = Re zez and v(x, y) = Im zez , for z = x + iy,
∂u ∂v
and show that u and v satisfy = at all points (x, y).
∂x ∂y
Solution.
Exercise 5.24. Show that the function f (z) = z is not differentiable anywhere.
Solution.
∂2u ∂2u
⇒ + 2 = 0.
∂x2 ∂y
That is, u satisfies Laplace’s equation, as does the imaginary part v of f , as can be shown
by a similar calculation. Alternatively, we say that u and v are harmonic functions.
Such functions play an extremely important role in applied mathematical problems, for
example within the study of fluid mechanics which is an area of mathematics that draws
heavily on complex analytic methods. Not only do harmonic functions appear, but, for
example, the calculations involved in determining the lift generated by air flowing round the
wing of an aircraft can be greatly simplified by making an appropriate transformation of the
complex plane, i.e. some map of the form w = f (z) to turn the wing profile into a circle.
105
Harmonic functions
When doing such transformations we usually further require them to be conformal at all
points off of the wing’s surface: a map is conformal at a point z = z0 if it preserves angles
between lines passing through z0 when looking at their images in w-plane. This property is
guaranteed by the simple condition that f ′ (z0 ) 6= 0, which is true of the Möbius transformation
az + b
w= except when z = −d/c (assuming c 6= 0).
cz + d
Exercise 5.25 (A03 7(c)). Simplify u(x, y) = Re(z 2 − iz) and show that it satisfies the
∂2u ∂2u
equation + 2 = 0.
∂x2 ∂y
Solution.
2 2
Exercise 5.26 (A04 5(b)). Let u(x, y) = Re e−z and v(x, y) = Im e−z for z = x + iy. Show
∂u ∂v ∂ 2 u ∂ 2u
that = and + 2 = 0 at all points (x, y).
∂x ∂y ∂x2 ∂y
Solution.
106
COMPLEX NUMBERS AND FUNCTIONS
Example 5.27 (S05 5(c)). Let z = x + iy and simplify u(x, y) = Re z sin z. Show that u
satisfies the equation
∂ 2 u ∂ 2u
+ 2 = 0.
∂x2 ∂y
Solution. If z = x + iy then
∂u
= sin x cosh y + x cos x cosh y + y sin x sinh y
∂x
∂2u
= 2 cos x cosh y − x sin x cosh y + y cos x sinh y
∂x2
∂u
= x sin x sinh y − cos x sinh y − y cos x cosh y
∂y
∂2u
= x sin x cosh y − 2 cos x cosh y − y cos x sinh y
∂y 2
∂ 2 u ∂ 2u
and so + 2 = 0.
∂x2 ∂y
Example 5.28. Let u(x, y) and v(x, y) be the real-valued functions defined by
∂u ∂v
where z = x + iy. Show that = holds at all points (x, y), and that v satisfies the
∂x ∂y
∂2v ∂2v
equation + = 0.
∂x2 ∂y 2
Solution. Now iz 2 + cos z = i(x2 − y 2 + 2ixy) + cos x cosh y − i sin x sinh y, and so
∂u ∂v
Thus = −2y − sin x cosh y and = −2y − sin x cosh y, hence these partial derivatives
∂x ∂y
are equal.
∂v ∂2v ∂2v
Also, = 2x − cos x sinh y ⇒ 2
= 2 + sin x sinh y, while = −2 − sin x sinh y,
∂x ∂x ∂y 2
∂2v ∂2v
so that 2
+ 2 = 0.
∂x ∂y
107
Exercises
5.11 Exercises
1. In each case, write the function w = f (z) as w = u(x, y) + iv(x, y), where z = x + iy.
∂u ∂v ∂u ∂v ∂2u ∂2u
Then verify that = , that = − , and that + 2 = 0:
∂x ∂y ∂x ∂y ∂x2 ∂y
2. In each case show that the given function is not analytic at any point in C by showing
that the Cauchy-Riemann equations do not hold at most points in C:
108