Integration Rules for Calculus1
|
Rules
|
|
•
|
See Student[Calculus1] for a general introduction to the Calculus1 subpackage of the Student package.
|
•
|
See SingleStepOverview for an introduction to the step-by-step (or single-step) functionality of the Calculus1 package.
|
•
|
The following table lists the built-in rules for integration that do not take parameters. These rules can be passed as the index to Rule or as a rule argument to Understand. These rules apply to both indefinite and definite integals.
|
Rule
|
Alternate Names
|
Description
|
constant
|
|
|
constantmultiple
|
``
|
|
diff
|
|
|
difference
|
|
|
identity
|
|
|
partialfractions
|
|
where is a partial fraction decomposition of
|
power
|
|
|
|
|
|
revert
|
|
revert a change of variables substitution
|
solve
|
|
algebraically solve an equation in which the same integral appears more than once (often used after multiple applications of integration by parts)
|
sum
|
|
|
|
|
|
The name of any univariate function can also be used as a rule argument to the Rule command. The name of any univariate function recognized by Maple, for example, sin, can be passed as a rule argument to the Understand command (where recognized means that it is of type mathfunc).
|
|
Note: Rules are named for properties or subexpressions of the integrand, not the result. Thus, for example, the power rule, not the ln rule, applies to the problem of integrating .
|
•
|
There are 3 additional rules that are recognized exclusively for definite integration: flip, join, and split. Only split takes a parameter. None can be passed as a rule argument to Understand.
|
Rule
|
Description
|
Parameters
|
flip
|
|
|
join
|
|
|
split
|
|
|
|
|
•
|
There are 3 additional integration rules that require one or more parameters: parts, rewrite, and change. Each can be used as the index to Rule, but cannot be given as a rule argument to Understand.
|
[parts, , ]
|
|
|
|
That is, the first parameter () is the term to be differentiated, and the second parameter () is the integral of the term to be integrated when applying the rule.
|
•
|
The rewrite rule changes the form of the integrand when the integration variable is not changed. This rule has the general form:
|
[rewrite, , , ...]
|
|
|
|
The effect of applying the rewrite rule is to perform each substitution listed as a parameter to the rule, where occurrences of the left-hand side of each substitution are replaced by the corresponding right-hand side.
|
|
Note: The Rule routine does not attempt to validate the rewrite rules.
|
•
|
The change rule changes the integration variable. It can take the following forms.
|
|
Note: The name of the new variable (u in the preceding paragraph) must be previously unused in the problem to which you are applying this change of variables rule. If it is not new, the Rule routine automatically chooses a different name, and produces a corresponding userinfo (level 1) message. The only exception to this uniqueness requirement occurs if the second parameter to the change rule is , that is, the only effect of the change rule is to rename the variable of integration. In this situation, if the new name is not new to the problem, a userinfo warning message is produced, but the renaming is performed. If it was not your intention to re-use a variable in the problem, you can invoke the Undo command to undo this change rule.
|
|
The parameter is always optional, and rarely needed; if provided, it must be the last parameter in the rule. It can be used to provide some simplification rules (side relations) to be applied in the case that the Maple (automatic) simplification rules do not produce the desired form. This parameter must be in the following form.
|
|
Note: If you provide the parameter giving the inverse change of variables substitution, the Rule command does not attempt to verify its correctness.
|
|
Note: When a change rule is applied to a definite integration problem, the Rule routine determines whether the end points of integration are transformed to the new coordinate system. The decision is based primarily on a measure of the simplicity of the transformed end points. If the end points remain in terms of the original variable, end points appear in the form , where is the original variable. Once the integration has been completed, you can use the revert rule to transform back to the original variable, at which time the evaluation at the end points takes place. Examples of these situations are given below.
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
Creating problem #3
Applying substitution x = 1/2*u, u = 2*x with dx = 1/2*du, du = 2*dx
| |
| (6) |
>
|
|
Creating problem #4
Applying substitution x = u^2, u = x^(1/2) with dx = 2*u*du, du = 1/2/x^(1/2)*dx
| |
| (7) |
>
|
|
| (8) |
>
|
|
Reverting substitution using u = x^(1/2)
| |
| (9) |
>
|
|
| (10) |
>
|
|
| (11) |
>
|
|
| (12) |
|
|