Physics[Vectors][Nabla] - the differential operator nabla
Calling Sequence
Nabla(A)
Nabla(A, differential_operation)
Nabla(A, differential_operation, useComponent)
Remark: these calling sequences are also valid with the inert %Nabla command
Parameters
A
-
any algebraic expression
differential_operation
any of Curl, Divergence, Gradient, or Laplacian
useComponent
optional, to request representing the components of a non-projected vector using the Component command
Description
Nabla is a command representation for the nabla differential operator. Thus, it can be used to calculate the gradient, divergence, curl or Laplacian of a function as well.
%Nabla is the inert form of Nabla, that is: it represents the same mathematical operation while holding the operation and checking of arguments unperformed. The expansion rules defined for Nabla, however, also work (are implemented) for the inert %Nabla. To activate the operation use value.
Nabla works in a context sensitive manner. For instance, Nabla(F) returns the gradient of F or the divergence of F according to whether F is identified as a scalar or a vector function (see ?Identify). So when called with only one argument Nabla(F) = Nabla . F. When called with two arguments, Nabla(F, Curl), Nabla(F, Divergence), Nabla(F, Gradient) and Nabla(F,Laplacian) respectively return the curl the divergence, the gradient and the Laplacian of F. The result is expressed in the specific coordinates and orthonormal vector basis system related to the functional dependence detected in F. When F does not depend on the geometrical coordinates x,y,z,ρ,φ,r,θ, Nabla(F, ...) returns 0; and when F depends on coordinates of more than one system, the calculations are interrupted an error message is displayed on the screen.
A call to Nabla with one or two arguments returns the evaluation of the corresponding vector differential operation unless F is a non-projected vector, in which case Nabla(F) and Nabla(F, Divergence) return unevaluated as Divergence⁡F and Nabla(F, Curl) returns Curl(F) (see ?Divergence and ?Curl). Generally speaking, to evaluate the corresponding vector differential operation it would be necessary to know the components of F in some orthonormal vector basis. It is possible, however, to make Nabla return the vector differential operation performed by representing these unknown components using the Component command; for that purpose the optional argument useComponent should be given.
Since Nabla performs differentiation using the standard diff command, all differentiation knowledge of diff is used when computing with Nabla.
For the conventions about the geometrical coordinates and vectors see Identify.
Examples
with⁡PhysicsVectors
&x,`+`,`.`,Assume,ChangeBasis,ChangeCoordinates,CompactDisplay,Component,Curl,DirectionalDiff,Divergence,Gradient,Identify,Laplacian,∇,Norm,ParametrizeCurve,ParametrizeSurface,ParametrizeVolume,Setup,Simplify,`^`,diff,int
Setup⁡mathematicalnotation=true
mathematicalnotation=true
Nabla can be used to represent a gradient
∇⁡f⁡x,y,z
∂∂xf⁡x,y,z⁢i∧+∂∂yf⁡x,y,z⁢j∧+∂∂zf⁡x,y,z⁢k∧
Note the "application" of Nabla as in the above can be performed as well using the . operator:
∇·f⁡x,y,z
The Laplacian
∇⁡f⁡x,y,z,Laplacian
∂2∂x2f⁡x,y,z+∂2∂y2f⁡x,y,z+∂2∂z2f⁡x,y,z
To distinguish a non-projected vector from a scalar variable a postfix identified is used. You can use the default identified, that is the underscore _, or set any valid Maple sequence of characters as identifier. For illustration purposes let's set again this default identifier:
Physics:-Setup⁡vectorpostfix=_
vectorpostfix=_
So the divergence of a non-projected vector can be computed in these three equivalent manners
∇⁡f_⁡x,y,z
∇·f→⁡x,y,z
∇⁡f_⁡x,y,z,Divergence
∇·f_⁡x,y,z
The curl
∇⁡f_⁡x,y,z,Curl
∇×f→⁡x,y,z
To actually compute the operation instead of just representing it, in the case of non-projected vectors use the optional argument useComponent, so that the unknown components are represented using the Component command
∇⁡f_⁡x,y,z,Curl,useComponent
∂∂yf→⁡x,y,z3−∂∂zf→⁡x,y,z2⁢i∧+∂∂zf→⁡x,y,z1−∂∂xf→⁡x,y,z3⁢j∧+∂∂xf→⁡x,y,z2−∂∂yf→⁡x,y,z1⁢k∧
See Also
Component, convert,VectorCalculus, Curl, Divergence, Gradient, Identify, Laplacian, Physics, Physics conventions, Physics examples, Physics Updates, Tensors - a complete guide, Mini-Course Computer Algebra for Physicists, Physics[Vectors]
Download Help Document