Math 174
Calculus II
Fall 2002
Dr. Constant J. Goutziers
Department of Mathematics, Computer Science and Statistics
goutzicj@oneonta.edu
Lesson 13
Rationalizing Substitutions
Initializations
| > | restart; with(student): with(oneonta): |
| > |
14.1 Rationalizing Substitutions involving Radicals and Trigonometric Functions.
Examples
Example 13.1.1
Evaluate
| > | e1:=Int(1/(x^(1/2)+x^(1/3)), x); |
| > | e2:=changevar(x=u^6, e1, u); |
| > | e3:=simplify(e2, symbolic); |
| > | e4:=parf(e3); |
| > | e5:=value(e4)+c; |
| > | e6:=subs(u=x^(1/6), e5); |
| > |
Example 13.1.2
Evaluate
.
| > | e1:=Int(1/(cos(x)+2*sin(x)), x); |
| > | e2:=changevar(u=tan(x/2), e1, u); |
| > | e3:=expand(e2); |
| > | e4:=factor(e3); |
| > | e5:=completesquare(e4, u); |
Even though this denominator can be factored, and the integral treated with partial fraction decomposition,
| > | e51:=2*Int(factor(op(1, op(2, e5)), 5^(1/2)), u); |
| > | e52:=parf(e51); |
we will simply ask for its value.
| > | e6:=value(e5)+c; |
| > | e7:=convert(e6, ln); |
| > | e8:=simplify(e7); |
| > | e9:=subs(u=tan(x/2), e8); |
| > |