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

Online Help

All Products    Maple    MapleSim


Physics[Vectors][diff] - differentiate expressions taking into account the geometrical relations between curvilinear unit vectors and coordinates of different types

Calling Sequence

diff(A, x1, x2, ...)

Parameters

A

-

an algebraic expression

x1, x2, ...

-

names or functions representing the differentiation variables

geometricdifferentiation

-

optional, default value is true, to take into account the geometrical relation between curvilinear coordinates and unit vectors even after setting this option to false using Setup

Description

• 

The diff command of Vectors is the same as the diff command of Physics, but for two additional things:

1. 

It takes into account the geometrical relation between cartesian, cylindrical and spherical coordinates, as well as the coordinate dependence of curvilinear unit vectors. Example: x=ρcosφ, so diff(x, rho) returns cosφ even when has(x, rho) returns false.

2. 

It takes into account any functional dependency of the geometrical coordinates and unit vectors found in the derivand. Example: When the derivand has xt the formula used is xt=ρtcosφt so diff(x(t), rho) (also diff(x(t), rho(t))) returns cosφt.

  

Although taking into account relations between geometrical coordinates, unit vectors and their functional dependency, is natural when working with vectors, you can turn OFF these two differences between Physics[Vectors][diff] and Physics[diff] using the Setup command, entering Setup(geometricdifferentiation = false). In such a case you can still differentiate taking into account the geometrical relation between curvilinear coordinates unit vectors by passing the optional argument geometricdifferentiation.

  

The %diff is the inert form of diff, that is: it represents the same mathematical operation while holding the operation unperformed. To activate the operation use value.

• 

The result of diff is always expressed in the coordinate system of the differentiation variable. When that is ambiguous (e.g. z may be cartesian or cylindrical), the ambiguity is resolved looking at the derivand, whether it is a cartesian or cylindrical vector, and when it is neither, then cartesian coordinates are used. The same approach is used when the differentiation variable is φ, that could be cylindrical or spherical.

• 

In the derivand, the cylindrical and spherical coordinates and related unit vectors can have functional dependency, say as in ρt, or for a unit vector, _ρφt, and the differentiation variables can be names or functions, as it is the case when using the Physics[diff] command. This permits computing things for instance like ⅆⅆt_ρφt taking into account that ⅆ_ρⅆφ=_φ.

• 

The computation of diff(A, q) is performed as follows.

  

If q does not belong to φ,r,ρ,θ,x,y,z (the geometrical coordinates - see conventions), then send the task to Physics[diff] returning Physics:−diffa,q.

  

Otherwise,  if A is a projected vector then

1. 

A is reprojected in the cartesian orthonormal basis (using ChangeBasis), where unit vectors are constant;

2. 

a change of variables if performed on the components of A (using dchange), in order to express A in the coordinate system to which q belongs;

3. 

the differentiation is performed using the standard Physics[diff];

4. 

the result is reprojected into the original orthonormal basis and returned.

  

If A is a non-projected vector or a scalar function, the task is restricted to steps 2. and 3. above.

• 

For the conventions about the geometrical coordinates and vectors see Identify

Examples

withPhysicsVectors

&x,`+`,`.`,Assume,ChangeBasis,ChangeCoordinates,CompactDisplay,Component,Curl,DirectionalDiff,Divergence,Gradient,Identify,Laplacian,,Norm,ParametrizeCurve,ParametrizeSurface,ParametrizeVolume,Setup,Simplify,`^`,diff,int

(1)

Setupmathematicalnotation=true

mathematicalnotation=true

(2)

The radial cylindrical unit vector

R_ρ

Rρ

(3)

diffR,x

yφx2+y2

(4)

diffR,y

xφx2+y2

(5)

diffR,z

0

(6)

Note the difference when you change the order in which derivatives are computed in a 2nd order derivative

diffx,x,ρ

0

(7)

simplifydiffx,ρ,x

y2x2+y232

(8)

Curvilinear coordinates and related unit vectors can have functional dependency, and so can the differentiation variable. Consider for instance the radial unit vector ρ in cylindrical coordinates as a function of the polar angle φ which in turn is a function of t

_ρφt

ρφt

(9)

The derivative with respect to φt takes into account the geometrical dependency of ρ with respect to φ, while keeping, in the result, the dependency with respect to t of the derivand

diff,φt

φt

(10)

The derivative of  ρφt with respect to t uses the chain rule taking the result above into account, hence

diff,t

φ.tφt

(11)

You can turn OFF geometric differentiation using Setup

Setupgeom=false

* Partial match of 'geom' against keyword 'geometricdifferentiation'

_______________________________________________________

geometricdifferentiation=false

(12)

So now, for example, the differentiation above returns

diff,t

Dρφtφ.t

(13)

and differentiating ρ with respect to x returns 0 instead of eq.(4)

diffR,x

0

(14)

You can still use geometric differentiation by passing the optional argument geometricdifferentiation

diffR,x,geometricdifferentiation

yφx2+y2

(15)

See Also

ChangeBasis, ChangeCoordinates, convert,VectorCalculus, Identify, operations, Physics, Physics conventions, Physics examples, Physics Updates, Tensors - a complete guide, Mini-Course Computer Algebra for Physicists, Physics/Vectors, Physics[diff]