Skip to main content
Library homepage
 

Text Color

Text Size

 

Margin Size

 

Font Type

Enable Dyslexic Font
Mathematics LibreTexts

5.1: Series

( \newcommand{\kernel}{\mathrm{null}\,}\)

 

 

Series


Convergence of Sequences

An infinite sequence {z1,z2,z3} of complex numbers has a limit z if, for each positive number ε, there exists a positive integer n0 such that

|znz|<εwhenevern>n0.

Geometrically, this means that for sufficiently large values of n, the points zn lie in any given ε neighborhood of z (Figure 1). Since we can choose ε as small as we please, it follows that the points zn become arbitrarily close to z as their subscripts increase. Note that the value of n0 that is needed will, in general, depend on the value of ε.

Geometric interpretation
Figure 1: Geometric interpretation.

The sequence {zn}n=1 can have at most one limit. That is, a limit z is unique if it exists. When that limit exists, the sequence is said to converge to z; and we write

limnzn=z

If the sequence has no limit, it diverges.

Theorem 5.1.1

Suppose that  zn=xn+iyn(n=1,2,3,) and  z=x+iy . Then

limnzn=z

if and only if

limnxn=xandlimnyn=y.

Proof

To prove this theorem, we first assume that conditions (3) hold. That is, there exist, for each ε>0, positive integers n1 and n2 such that

|xnx|<ε2whenevern>n1

and

|yny|<ε2whenevern>n2.

Hence if n0 is the larger of the two integers n1 and n2,

|xnx|<ε2and|yny|<ε2whenevern>n0.

Since

|(xn+iyn)(x+iy)|=|(xnx)+(yny)||xnx|+|yny|,

then

|znz|<ε2+ε2whenevern>n0.

Therefore condition (2) holds.

Conversely, if we start with condition (2), we know that for each positive number ε, there exists a positive integer n0 such that

|(xn+iyn)(x+iy)|<εwhenevern>n0.

However

|xnx||(xnx)+(yny)|=|(xn+iyn)(x+iy)|

and

|yny||(xnx)+(yny)|=|(xn+iyn)(x+iy)|.

Consequently

|xnx|<εand|yny|<εwhenevern>n0.

Therefore, conditions (3) are satisfied. ■


Convergence of Series

An infinite series

n=1zn=z1+z2+z3+

of complex numbers converges to the sum S if the sequence

Nn=1zn=z1+z2+z3++zN(N=1,2,3,)

of partial sums converges to S; we then write

n=1zn=S.

Note that since a sequence can have at most one limit, a series can have at most one sum. When a series does not converge, we say that it diverges.

Theorem 5.1.2

Suppose that zn=xn+iyn(n=1,2,3,) and S=X+iY. Then

n=1zn=S

if and only if

n=1xn=Xandn=1yn=Y.

Proof

To prove this theorem, we first write the partial sums (5) as

SN=XN+iYN,

where

XN=Nn=1xnandYN=Nn=1yn.

Now statement (6) is true if and only if

limNSN=S;

and, in view of relation (8) and Theorem 1 on sequences, limit (9) holds if and only if

limNXN=XandlimNYN=Y.

Limits (10) therefore imply statement (6), and conversely. Since XN=X and YN=Y are partial sums of the series (7), the theorem is proved. ■

This theorem can be useful in showing that a number of familiar properties of series in calculus carry over to series whose terms are complex numbers.

Property 1: If a series of complex numbers converges, the n-th term converges to zero as n tends to infinity.

It follows from Property 1 that the terms of convergent series are bounded. That is, when series (4) converges, there exists a positive constant M such that

|zn|M for each positive integer n.

Another important property of series of complex numbers that follows from a corresponding property in calculus is the following.

Property 2: The absolute convergence of a series of complex numbers implies the convergence of that series.

Recall that series (4) is said to be absolutely convergent if the series

n=1|zn|=n=1x2n+y2n(zn=xn+iyn)

of real numbers x2n+y2n converges.

To establish the fact that the sum of a series is a given number S, it is often convenient to define the remainder ρN after N terms, using the partial sums:

ρN=SSN

Thus S=SN+ρN. Now, since |SNS|=|ρN0|, then a series converges to a number S if and only if the sequence of remainders tends to zero.

Example 5.1.1

With the aid of remainders, it is easy to verify that

n=0zn=11zwhenever|z|<1

We need only recall the identity

1+z+z2++zn=1zn+11z

to write the partial sums

SN(z)=n=0zn=1+z+z2++zN1(z1)

as

SN(z)=1zN1z.

If

S(z)=11z

then

ρN(z)=S(z)SN(z)=zN1z(z1).

Thus

|ρN|=|z|N|1z|0only when|z|<1.

In this case, it is clear that the remainders ρN tend to zero when |z|<1 but not when |z|1


Geometric series exploration

The series introduced in the previous example

n=0zn=11zwhenever|z|<1

is known as the geometric series.

Use the following applet to explore this series. Drag the point z around. Observe what happens when it is inside, outside or on the border of the unit circle. Drag the slider to show the partial sum.

Code

Enter the following script in GeoGebra to explore it yourself and make your own version. The symbol # indicates comments.

#Complex number
        
Z = 0.72 + ί * 0.61

#Circle of radius 1

c = Circle((0,0), 1)

#Number of terms of the partial series

n = Slider(0, 250, 1, 1, 150, false, true, false, false)

SetValue(n, 250)

#Define the sequence z^n

S = Join({0 + ί * 0, 1 + ί * 0}, Sequence(Z^j, j, 1, n))

#Define partial sum

SP = Sequence(Sum(S, j), j, 1, n + 2)

#Finally join the points of the partial sum

L = Sequence(Segment(Element(SP, j), Element(SP, j + 1)), j, 1, n + 1)

This page titled 5.1: Series is shared under a CC BY-NC-SA license and was authored, remixed, and/or curated by Juan Carlos Ponce Campuzano.

Support Center

How can we help?