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
ChangeOfVariables(f, g)
ChangeOfVariables(f, h)
Revert(m)
f
-
algebraic expression or inert multiple integral
g
list of equations
h
list of indexed names
m
inert integral with unevaluated region of integration
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.
with⁡StudentMultivariateCalculus:
a≔Int⁡Int⁡x,x=1..4,y=2..5
a≔∫25∫14xⅆxⅆy
b≔ChangeOfVariables⁡a,cartesianx,y,polarr,θ
b≔∫y=2y=5∫x=1x=4r2⁢cos⁡θⅆrⅆθ
c≔ChangeOfVariables⁡b,r=u+v,θ=v−2
c≔∫y=2y=5∫x=1x=4u+v2⁢cos⁡v−2ⅆuⅆv
Revert⁡b
∫25∫14xⅆxⅆy
Revert⁡c
∫y=2y=5∫x=1x=4r2⁢cos⁡θⅆrⅆθ
Revert⁡Revert⁡c
a≔Int⁡Int⁡Int⁡x⁢y,x,y,z
a≔∫∫∫x⁢yⅆxⅆyⅆz
ChangeOfVariables⁡a,cartesianx,y,z,cylindricalr,θ,u
∫∫∫sin⁡2⁢θ⁢r32ⅆrⅆθⅆu
ChangeOfVariables⁡a,cartesianx,y,z,cylindricalr,θ,z
∫∫∫sin⁡2⁢θ⁢r32ⅆrⅆθⅆz
ChangeOfVariables⁡a,x=u+1,y=y,z=w−2
∫∫∫u+1⁢yⅆuⅆyⅆw
ChangeOfVariables⁡x+z,x=u+1,z=w−2
u−1+w
See Also
PDEtools[dchange]
Student
Download Help Document