COMPLEX ANALYSIS: Maple Worksheets,
2009
(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/
Check out the
New Complex Analysis Projects
page
CHAPTER 8 RESIDUE
THEORY
Section 8.7 Integrands with
Branch Points
We now show how to evaluate certain improper real integrals involving
the integrand
.
The complex function
is multivalued, so we must first
specify the branch that we will be using.
Let
be a real number with
. In this section we will use the
branch of
corresponding with the branch of the
logarithm
(see Equation 5-20) as follows:
=
=
=
=
,
where
and
. Notice that this is not the
traditional principal branch of
, and that as defined the function
is analytic in the domain
.
Theorem 8.7
Let
and
are polynomials of degree
and
,
respectively, where
.
If
for
and
has a zero of order at most
at the origin and
where
, then
=
,
where
,
, ...,
are the nonzdro poles of
.
Load Maple's "residue"
procedure.
Make sure this is done only ONCE during a Maple session.
> readlib(residue):
Example 8.23, Page
341. Use residues to
find the P.V. for the integral
P. V.
.
> a:='a': f:='f':
F:='F': z:='z':
f := z -> z^a/(z*(z+1)):
`f(z) ` = f(z);
> `F(x)` =
f(x);
z1 := -1:
`The singularity is at z = ` = z1;
r1 := residue(f(z), z=z1): `Res[f`,z1,`] ` = r1;
r1 := -exp(I*a*Pi): `Res[f`,z1,`] ` = r1;
val := res*2*Pi*I/(1 - exp(I*a*2*Pi)):
print(int(F(x),x=-infinity..infinity) = val);
val := Pi/( (exp(I*a*Pi)-exp(-I*a*Pi))/(2*I)):
print(int(F(x),x=-infinity..infinity) = val);
val := evalc(val):
print(int(F(x),x=-infinity..infinity) = val);
![]()
![]()
![]()



End of Section 8.7.