Chapter 6: Techniques of Integration
Section 6.6: Rationalizing Substitutions
|
Example 6.6.3
|
|
Evaluate the indefinite integral .
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
The integrand is real, except at where the denominator is zero. An antiderivative that is real for all such values of is
The rationalizing substitution can be used to obtain this antiderivative.
After completing the square in the denominator and applying a partial fraction decomposition, the antiderivative is given in terms of logarithms. Alternatively, after completing the square in the denominator, an antiderivative of from Table 3.10.1 is invoked.
Consequently, the alternative antiderivative is
which is real except at those points where it is undefined.
Figure 6.6.3(a) is a graph of and the line (in green). Where , the graph is drawn in black; where , it is drawn in red.
>
|
f:=proc(s)
local C,CC;
C := (3/13)*sqrt(13)*abs(tan((1/2)*x)-2/3);
CC:=evalf(eval(C,x=s));
if CC<1 then CC else 10;end if;
end proc:
|
>
|
g:=proc(s)
local C,CC;
C := (3/13)*sqrt(13)*abs(tan((1/2)*x)-2/3);
CC:=evalf(eval(C,x=s));
if CC>1 then CC else -10;end if;
end proc:
|
>
|
p1:=plot(f,-9..9,0..3,discont=true,color=black):
p2:=plot(g,-9..9,0..3,discont=true,color=red):
p3:=plot(1,x=-9..9,color=green):
plots:-display(p1,p2,p3,scaling=constrained);
|
|
Figure 6.6.3(a) in black; in red
|
|
|
|
|
Maple Solution
|
|
Maple evaluates the given integral in terms of the inverse hyperbolic tangent, a function that is real only when the absolute value of its argument is less than 1.
Evaluate the integral
|
•
|
Control-drag the given integral.
|
•
|
Context Panel: Evaluate and Display Inline
|
|
=
|
|
|
Table 6.6.3(a) shows the first few steps in the annotated stepwise solution generated by the
tutor when the Constant, Constant Multiple, and Sum rules are taken as Understood Rules.
|
Table 6.6.3(a) Initial steps taken by the Integration Methods tutor
|
|
|
Maple applies the rationalizing substitution and imposes a partial-fraction decomposition. Hence, the antiderivative will contain two logarithms, but Maple will not take the absolute value of the arguments. In fact, the ultimate solution generated by the tutor is
an expression that is precisely equivalent to Maple's solution in terms of the inverse hyperbolic tangent.
Table 6.6.3(b) lists the Maple calculations that would result in the solution given in terms of logarithms of absolute values.
Initialize
|
•
|
Install the IntegrationTools package.
|
|
|
•
|
Assign the inert form of the integral the name .
|
|
|
Apply the rationalizing substitution
|
|
|
Partial-fraction decomposition of the integrand
|
|
Integrate the partial fractions
|
|
|
Use "brute-force" to take the absolute value of the argument of the logarithms
|
|
|
Table 6.6.3(b) Stepwise calculation of a solution given in terms of logarithms of absolute values.
|
|
|
•
|
Note that an annotated stepwise solution is available via the Context Panel with the "All Solution Steps" option.
|
•
|
The rules of integration can also be applied via the Context Panel, as per the figure to the right.
|
|
|
|
|
|
|
|
<< Previous Example Section 6.6
Next Example >>
© Maplesoft, a division of Waterloo Maple Inc., 2025. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
|