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

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : Calculus : Integration : ChangeofVariables

Student[MultivariateCalculus]

  

ChangeOfVariables

  

return the change of variables of a multivariate integral function or algebraic expression

  

Revert

  

return to previous form of multivariate integral

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ChangeOfVariables(f, g)

ChangeOfVariables(f, h)

Revert(m)

Parameters

f

-

algebraic expression or inert multiple integral

g

-

list of equations

h

-

list of indexed names

m

-

inert integral with unevaluated region of integration

Description

• 

The ChangeOfVariables command returns a new integral or algebraic expression specified by the change of variables equations.

• 

The second parameter of the command can be either a list of equations representing a suitable transformation or a list with two entries containing coordinate systems.

  

In the first form, the transformation equations must specify new variable names for any coordinate that is to be changed; unchanged variables can be omitted from the transformation or given in the form of an identity equation, such as x=x. For example, ChangeOfVariables(Int(Int(a*x,x),y), [u=a*x]) is valid, as is ChangeOfVariables(Int(Int(a*x,x),y), [u=a*x,y=y]), but ChangeOfVariables(Int(Int(a*x,x),y), [y=a*x,x=y]) is not.

• 

The coordinate systems available are cartesian and polar for two dimensions, and cartesian, cylindrical, and spherical for three dimensions.

  

The coordinate systems must be specified in the form [OldCoordinateSystem[OldVariables],NewCoordinateSystem[NewVariables]]. Examples:

  

* [polar[r,theta], cartesian[x,y]]

  

* [cylindrical[r,theta,u], cartesian[x,y,z]]

  

* [spherical[R,theta1,phi], cylindrical[r,theta2,z]]

  

In the polar, cylindrical, and spherical coordinate systems, the first variable is assumed to be the radial component.

• 

In general, when working with definite integrals, it is not always possible to find a new region of integration after applying a change of variables. Thus, if ChangeOfVariables cannot find the new region of integration, it retains the old region and indicates that the region has not been converted. If this occurs, use the Revert function to return to the previous integral before ChangeOfVariables was applied. Revert only works on integrals where the region of integration cannot be found. Otherwise, the same integral is returned.

Examples

withStudentMultivariateCalculus:

aIntIntx,x=1..4,y=2..5

a2514xⅆxⅆy

(1)

bChangeOfVariablesa,cartesianx,y,polarr,θ

by=2y=5x=1x=4r2cosθⅆrⅆθ

(2)

cChangeOfVariablesb,r=u+v,θ=v2

cy=2y=5x=1x=4u+v2cosv2ⅆuⅆv

(3)

Revertb

2514xⅆxⅆy

(4)

Revertc

y=2y=5x=1x=4r2cosθⅆrⅆθ

(5)

RevertRevertc

2514xⅆxⅆy

(6)

aIntIntIntxy,x,y,z

axyⅆxⅆyⅆz

(7)

ChangeOfVariablesa,cartesianx,y,z,cylindricalr,θ,u

sin2θr32ⅆrⅆθⅆu

(8)

ChangeOfVariablesa,cartesianx,y,z,cylindricalr,θ,z

sin2θr32ⅆrⅆθⅆz

(9)

ChangeOfVariablesa,x=u+1,y=y,z=w2

u+1yⅆuⅆyⅆw

(10)

ChangeOfVariablesx+z,x=u+1,z=w2

u1+w

(11)

See Also

PDEtools[dchange]

Student

Student[MultivariateCalculus]