IntRules - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Integration Rules for Calculus1

 

Rules

Examples

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 integrals.

Rule

Alternate Names

Description

constant

 

cⅆx=cx

constantmultiple

`c*`

cfxⅆx=cfxⅆx

diff

Diff

ⅆⅆxfxⅆx=fx

difference

`-`

fxgxⅆx=fxⅆxgxⅆx

identity

 

xⅆx=x22

partialfractions

 

fxⅆx=R1x+R2x+...ⅆx where R1x+R2x+... is a partial fraction decomposition of fx

power

`^`

xnⅆx=xn+1n+1

 

 

abxnⅆx=bn+1n+1an+1n+1

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

`+`

fx+gxⅆx=fxⅆx+gxⅆx

  

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 1x.

• 

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

abfxⅆx=bafxⅆx

 

join

acfxⅆx+cbfxⅆx=abfxⅆx

 

split

abfxⅆx=acxxⅆx+cbfxⅆx

c

• 

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.

• 

The parts rule implements integration by parts: fxⅆⅆxgxⅆx=fxgxgxⅆⅆxfxⅆx.  To apply the rule, you must specify the two functions fx and gx.

     [parts, fx, gx]

  

That is, the first parameter (fx) is the term to be differentiated, and the second parameter (gx) is the integral of the term to be integrated when applying the rule.

  

Note: To determine the function gx for integration by parts, set up a new problem. That is, if the integrand of the original problem is a product fxGx, you must determine gx such that g'x=Gx. Create the problem Gxⅆx, and then apply appropriate rules to find gx.  Use GetProblem to return to the original problem and apply integration by parts.

• 

The rewrite rule changes the form of the integrand when the integration variable is not changed. This rule has the general form:

     [rewrite, f1x=g1x, f2x=g2x, ...]

  

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.

     [change, Fx,u=Gx,u, u, siderels]

     [change, Fx,u=Gx,u, u=Hx, siderels]

  

The first parameter (Fx,u=Gx,u) defines the relationship between the old variable (x) and the new variable (u).  This most commonly takes the form x=Gu or u=Fx, but can be much more general, provided it can be solved for x.

  

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 x=u, 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 siderels 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.

     f1x=g1u,...,h1u=k1u,...

  

That is, it is a set of substitutions in which the old variable x cannot appear on the right-hand side, and in which only one of the variables x or u can appear on the left-hand side.  Substitutions that depend on the old variable x are applied before the main change of variables substitution, while substitutions that do not depend on x are applied after.

  

The remaining parameter (u or u=Hx) is also optional. It can be the new variable name (u) or can provide the formula for the inverse change of variables substitution (u=Hx).  If the change of variables formula includes parameters it may be necessary to use one of these two forms to clearly specify the new variable.

  

Note: If you provide the parameter u=Hx 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 x=a, where x 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

withStudent:-Calculus1:

infolevelStudentCalculus11:

Rule`c*`Int3sinx,x=0..1

Creating problem #1

013sinxⅆx=301sinxⅆx

(1)

UnderstandInt,`c*`

Int=constantmultiple

(2)

Ruleparts,sinx,expxIntsinxexpx,x

Creating problem #2

sinxⅇxⅆx=sinxⅇxⅇxcosxⅆx

(3)

Ruleparts,cosx,expx

sinxⅇxⅆx=sinxⅇxⅇxcosxsinxⅇxⅆx

(4)

Rulesolve

sinxⅇxⅆx=ⅇxcosx2+sinxⅇx2

(5)

Rulechange,u=2xIntsin2x,x=a..b

Creating problem #3

Applying substitution x = 1/2*u, u = 2*x with dx = 1/2*du, du = 2*dx

absin2xⅆx=2a2bsinuⅆu2

(6)

Rulechange,u=sqrtxIntsinsqrtxsqrtx,x=a..b

Creating problem #4

Applying substitution x = u^2, u = x^(1/2) with dx = 2*u*du, du = 1/2/x^(1/2)*dx

absinxxⅆx=2x=ax=bsinuⅆu

(7)

Rulesin

absinxxⅆx=2cosux=a..b|cosux=a..b

(8)

Rulerevert

Reverting substitution using u = x^(1/2)

absinxxⅆx=2cosb+2cosa

(9)

Rulesplit,cIntfx,x=a..b

Creating problem #5

abfxⅆx=acfxⅆx+cbfxⅆx

(10)

Ruleflip

abfxⅆx=cafxⅆx+cbfxⅆx

(11)

Rulejoin

abfxⅆx=abfxⅆx

(12)

See Also

diff

Int

Student

Student[Calculus1]

Student[Calculus1][IntTutor]

Student[Calculus1][SingleStepOverview]