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 9 CONFORMAL
MAPPING
Section 9.1 Basic Properties of
Conformal Mappings
Let
be an analytic function in the
domain
, and let
be a point in
.
If
, then we can express
in the form
=
+
+
,
where
.
If
is near
, then the transformation
has the
linear approximation
=
=
,
where
and
.
Because
for points near
the transformation
has an effect much like the linear
mapping
.
The effect of the linear mapping
is a rotation of the plane through
the angle
,
followed by a magnification by the
factor
,
followed by a rigid translation by
the vector
.
Consequently, the mapping
preserves the angles at the point
. We now show that the mapping
also preserves angles at
.
Theorem 9.1
Let
be an analytic function in the
domain
, and let
be a point in
.
If
, then
is conformal at
.
Load Maple's "conformal mapping"
procedure.
Make sure this is done only ONCE during a Maple session.
> with(plots):
Warning, the name changecoords has been redefined
Example 9.1, Page
357. Show that the
mapping
i
s conformal
at the points
,
, and
.
Find the angle of rotation
and the scale factor
at the points
,
, and
.
> f:='f': z:='z':
Z:='Z':
f := z -> cos(z):
df := diff(f(Z),Z):
Df := z -> subs(Z=z,df):
`f(z) ` = f(z);
`f '(z) ` = Df(z);` `;
Z0 := I:
` `; `At Z0 ` = Z0;
f1 := Df(Z0):
`f '(Z0) ` = f1;
`rotation ` = argument(f1),` scale ` = abs(f1);
Z0 := 1:
` `; `At Z0 ` = Z0;
f1 := Df(Z0):
`f '(Z0) ` = f1;
`rotation ` = argument(f1),` scale ` = abs(f1);
Z0 := Pi + I:
` `; `At Z0 ` = Z0;
f1 := Df(Z0):
`f '(Z0) ` = f1;
`rotation ` = argument(f1),` scale ` = abs(f1);
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
Example 9.2, Page
358. Graph the
transformation
.
> f:='f':
z:='z':
f := z -> z^2:
`f(z) ` = f(z);
Find the image of the square
0
x
1, 0
y
1.
> f:='f':
z:='z':
f := z -> z^2:
`f(z) ` = f(z);
conformal(f(z), z=0..1+I,
title=`w = z^2`,
labels=[`u`,`v `], tickmarks=[3,3],
grid=[9,9], numxy=[9,9],
scaling=constrained,
view=[-1..1,0..2]);
![[Maple Plot]](images/C09-175.gif)
End of Section 9.1.