C02-5.mws

COMPLEX ANALYSIS: Maple Worksheets, 2001
(c) John H. Mathews Russell W. Howell
mathews@fullerton.edu howell@westmont.edu

Complimentary software to accompany the textbook:

COMPLEX ANALYSIS: for Mathematics & Engineering, 4th Ed, 2001, ISBN: 0-7637-1425-9
Jones and Bartlett Publishers, Inc., 40 Tall Pine Drive, Sudbury, MA 01776
Tele. (800) 832-0034; FAX: (508) 443-8000, E-mail: mkt@jbpub.com, http://www.jbpub.com/


CHAPTER 2 COMPLEX FUNCTIONS

Section 2.5 Branches of Functions

In Section 2.3 we defined the principal square root function and investigated some of its properties. We left some unanswered questions concerning the choices of square roots. We now look into this problem because it is similar to situations involving other elementary functions.

In our definition of a function in Section 2.1 we specified that each value of the independent variable in the domain is mapped onto one and only one value of the dependent variable. As a result, one often talks about a single-valued function , which emphasizes the only one part of the definition and allows us to distinguish such functions from multiple-valued functions, which we now introduce.


Let
w = f(z) denote a function whose domain is the set D and whose range is the set R . If w is a value in the range, then there is an associated inverse relation z = g(w) that assigns to each value w the value (or values) of z in D for which the equation f(z) = w holds true. But unless f takes on the value w at most once in D , then the inverse relation g is necessarily many valued, and we say that g is a multivalued function . For example, the inverse of the function `w = f(z) ` = z^2 is the square root function `z = g(w)` = w^`1/2` . We see that for each value z other than z = 0 , the two points z and -z are mapped onto the same point w = f(z) ; hence g is in general a two-valued function.

The study of limits, continuity, and derivatives loses all meaning if an arbitrary or ambiguous assignment of function values is made. For this reason we did not allow multivalued functions to be considered when we defined these concepts. When working with inverse functions, it is necessary to carefully specify one of the many possible inverse values when constructing an inverse function. The idea is the same as determining implicit functions in calculus. If the values of a function f are determined by an equation that they satisfy rather than by an explicit formula, then we say that the function is defined implicitly or that f is an implicit function . In the theory of complex variables we study a similar concept.

Let w = f(z) be a multiple-valued function. A branch of f is any single-valued function f[0] that is continuous in some domain (except, perhaps, on the boundary), and at each point z in the domain, assigns one of the values of f(z) .

Load Maple's "conformal mapping" procedure.
Make sure this is done only ONCE during a Maple session.

> with(plots):

Example 2.20, Page 79. Consider the two branches of the square root function:
w = f[1](z) = sqrt(z) = sqrt(r)*(cos(theta/2)+i*sin(theta/2)) , and
w = f[2](z) = -sqrt(z) = sqrt(r)*(cos((2*pi+theta)/2)+i*sin((2*pi+theta)/2)) .

(a) Find the image of the disk abs(z) <= 4 in the z -plane slit along
the ray
y = 0 , x <= 0 under the mapping w = sqrt(z) .

> f1:='f1': z:='z':
f1 := z -> z^(1/2):
`f1(z) ` = f1(z);
conformal(f1(Re(z)*exp(I*Im(z))), z=0.01-I*3.14..4+I*3.14,
title=`w = f1(z) = z^(1/2)`,
grid=[13,13], numxy=[50,50],
scaling=constrained,
view=[-2..2,-2..2]);

`f1(z) ` = sqrt(z)

[Maple Plot]

(b) Find the image of the disk abs(z) <= 4 in the z-plane slit along
the ray
y = 0 , x <= 0 under the mapping w = -sqrt(z) .

> f2:='f2': z:='z':
f2 := z -> - z^(1/2):
`f2(z) ` = f2(z);
conformal(f2(Re(z)*exp(I*Im(z))), z=0.01-I*3.14..4+I*3.14,
title=`w = f2(z) = - z^(1/2)`,
grid=[13,13], numxy=[50,50],
scaling=constrained,
view=[-2..2,-2..2]);

`f2(z) ` = -sqrt(z)

[Maple Plot]

>

End of Section 2.5.