PDEtools[declare]
declare a function for compact display
PDEtools[undeclare]
undeclare a function for compact display
Physics[CompactDisplay]
synonym of PDEtools[declare]
Physics[Vectors][CompactDisplay]
Calling Sequence
Parameters
Description
Examples
Compatibility
declare(f(x), g(x, y), '...')
declare(expr)
declare(prime = x)
declare(prime)
declare(copyasdisplayed = truefalse)
declare(copyasdisplayed)
undeclare(f(x), '...')
undeclare(expr)
undeclare(prime)
undeclare(all)
ON
OFF
show
f(x)
-
function to be printed with compact display
expr
set, list, or sequence of expressions
prime = x
equation indicating the differentiation variable to be displayed with a prime, or just the keyword prime to query about its value
copyasdisplayed = ..
equation where the right-hand side is true or false (the default), or just the keyword copyasdisplayed to query about its value; when true, displayed output of declared functions and derivates is copied & pasted "as displayed", instead of the default behavior which is "as entered"
quiet
(optional) perform declarations without having information displayed on the screen
The purpose of this set of commands, declare, undeclare, show, ON, OFF, is to permit a simple, compact display of functions and derivatives on the screen. The Physics CompactDisplay command is a synonym to declare so you can use it in place of declare when working with the Physics package.
Typically, one declares functions by using declare(f(x, y, z)) with the result that f⁡x,y,z is displayed as f (that is, only its name) as well as occurrences of indexed f, say as in fj⁡x,y,z are displayed as fj. This avoids a significant part of redundant information on the screen. One can declare the prime variable and many functions at once.
This scheme also displays all differentiation variables as indices, and permits declaring a prime variable so that, for functions of one variable, derivatives with respect to that declared prime variable are displayed with a prime.
Different from macro and alias, this set of commands works with 'print/foo' routines, so it does not change the output, only its typesetting on the screen.
When declare is called with an algebraic expression, each unknown function in the expression gets "declared".
Note: you cannot declare for compact display known functions of the mathematical language (cos, sin, etc.).
Expressions involving declared functions or derivatives, that are compactly displayed on the screen, are copied and pasted as they were entered, not as they are displayed. For example declaring f⁡x,y,z makes it be displayed as f, but copying that f from the output and pasting into an input line produces f⁡x,y,z, not f. The same happens with derivatives displayed compactly as indexed or with primes '. However, it is sometimes convenient to copy and paste as displayed, for instance to paste formulas with format in an email, or in text in a worksheet. For that purpose, set the value of copyasdisplayed to true entering declare(copyasdisplayed = true);
If no arguments are given to declare, the values of the copyasdisplayed, prime, and declared variables are reported. If the arguments prime or copyasdisplayed - just the keywords - are given, the corresponding values are reported.
The command undeclare accepts the same types of arguments as declare does, that is, a function, a sequence of functions, or an algebraic expression. It is used to "undo" declarations previously done by using declare.
declare and undeclare by default print informative messages when they are called. By using the optional argument 'quiet' these messages are suppressed.
When declare is first called, the scheme for compact display is turned ON. However, to turn explicit the actual value of an expression being displayed compactly, you can toggle this feature OFF. Two macros ON and OFF are provided for that purpose. Also, in the ON mode, the macro show displays the last expression in OFF mode.
These functions are part of the PDEtools package, and so they can be used in the form declare(..) and undeclare(..) only after executing the command with(PDEtools). However, they can always be accessed through the long form of the command by using PDEtools[declare](..) or PDEtools[undeclare](..).
Declare y(x) to be displayed as y, and x to be the 'prime' differentiation variable.
with⁡PDEtools:
declare⁡y⁡x,prime=x
y⁡x⁢will now be displayed as⁢y
derivatives with respect to⁢x⁢of functions of one variable will now be displayed with '
Check the declarations.
declare⁡
Declared :
y⁡x⁢to be displayed as⁢y
derivatives with respect to⁢x⁢of functions of one variable are being displayed with '
Displayed derivatives and declared functions will be copied and pasted "as they were entered"
declare⁡prime
Following is an ODE displayed by using the scheme for compact printing.
ode≔diff⁡diff⁡y⁡x,x,x⁢diff⁡y⁡x,x⁢y⁡x⁢f⁡x−2⁢diff⁡y⁡x,x3⁢x6+2⁢diff⁡y⁡x,x2⁢y⁡x⁢diff⁡g⁡x,x+y⁡x5
ode≔y''⁢y'⁢y⁢f⁡x−2⁢y'3⁢x6+2⁢y'2⁢y⁢g'+y5
Turn the scheme OFF, print the ODE, and then turn the scheme ON again. Compare the results.
ode
ⅆ2ⅆx2y⁡x⁢ⅆⅆxy⁡x⁢y⁡x⁢f⁡x−2⁢ⅆⅆxy⁡x3⁢x6+2⁢ⅆⅆxy⁡x2⁢y⁡x⁢ⅆⅆxg⁡x+y⁡x5
y''⁢y'⁢y⁢f⁡x−2⁢y'3⁢x6+2⁢y'2⁢y⁢g'+y5
Use the show command to display the ODE in standard format, to copy and paste to an input line, but keep the scheme ON.
ⅆ2yⅆx2⁢ⅆyⅆx⁢y⁢f⁡x−2⁢ⅆyⅆx3⁢x6+2⁢ⅆyⅆx2⁢y⁢ⅆⅆxg⁡x+y5
Now undeclare all the functions.
undeclare⁡prime
There is no more prime differentiation variable; all derivatives will be displayed as indexed functions
yx,x⁢yx⁢y⁢f⁡x−2⁢yx3⁢x6+2⁢yx2⁢y⁢gx+y5
undeclare⁡all
y⁡x⁢will now be displayed *as is*
Nothing declared
Here is a PDE example.
pde≔x⁢diff⁡f⁡x,y,y−diff⁡f⁡x,y,x−f⁡x,y2⁢g⁡xh⁡y
pde≔x⁢∂∂yf⁡x,y−∂∂xf⁡x,y−f⁡x,y2⁢g⁡xh⁡y
pde
x⁢fy−fx−f⁡x,y2⁢g⁡xh⁡y
During a working session, declare the main function of the problem to avoid redundant information throughout the solution.
declare⁡f⁡x,y
f⁡x,y⁢will now be displayed as⁢f
x⁢fy−fx−f2⁢g⁡xh⁡y
You can declare all the functions in a given DE or PDE directly.
declare⁡pde
g⁡x⁢will now be displayed as⁢g
h⁡y⁢will now be displayed as⁢h
x⁢fy−fx−f2⁢gh
It is also possible to selectively undeclare one (or many) functions. When doing that, one can give the function or its name.
undeclare⁡g
g⁡x⁢will now be displayed *as is*
x⁢fy−fx−f2⁢g⁡xh
f⁡x,y⁢will now be displayed *as is*
h⁡y⁢will now be displayed *as is*
x⁢∂∂yf⁡x,y−∂∂xf⁡x,y−f⁡x,y2⁢g⁡xh⁡y
The PDEtools[declare] and Physics[CompactDisplay] commands were updated in Maple 18.
The copyasdisplayed = .. parameter was introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
The Physics[Vectors][CompactDisplay] command was updated in Maple 2023.
See Also
DEtools
dsolve
dsolve,education
PDEtools
pdsolve
print
Download Help Document