Making Substitutions
Go to Maple Portal Maple Portal for Engineers
Introduction
Simple Substitutions
Substituting for Combinations of Variables: algsubs
See Also
In this document, you will learn different methods to substitute values for variables in mathematical expressions. Both simple substitutions, such as "evaluate sin⁡x when x=π",⁢and substitutions of algebraic subexpressions, such as "evaluate a⋅b⋅sina⋅b⋅c when a⋅b=n−1" are explained.
Substituting a value for a variable, x, in an expression F containing x is the same as evaluating F⁢at the point x. This is the terminology Maple uses to describe the problem. Knowing this terminology will make it much easier to remember the appropriate menus and commands (or at least, recognize them when you see them).
The following explains both interactive and command methods for evaluating an expression at a point.
Interactive Methods
Palettes
The Expression palette provides an "evaluate at a point" template, f⁡xx=a|f(x)x=a. Fill in the values of the template to evaluate your expression at a point.
For example, sin⁡xx=a|f(x)x=π = 0
Tip: Press Tab to move through the placeholders in the template. Press Shift + Tab to go back a placeholder.
Context Menu
Right-click on the expression you wish to evaluate, and select Evaluate at a Point. A dialog is displayed which allows you to set variables for some or all of the variables in the expression.
For example, setting x=5 and y=2⁢gives:
x2+y2→evaluate at point29
Setting x=⁢a+b and leaving y without a value gives:
x2+y2→evaluate at pointa+b2+y2
Commands
The recommended command for substituting a value for a variable in an expression is the eval command.
eval⁡sin⁡x,⁢x=π
0
eval⁡x2+y2,⁢x=a+b
a+b2+y2
To substitute multiple values, put them in a list.
poly:=x⋅y+3⁢z+2
poly:=x⁢y+3⁢z+2
eval⁡poly,⁢x=2,⁢y=3,z=t
8+3⁢t
Comparing eval and subs
Another command for making simple substitutions is the subs command. It is important to note that after making a substitution, the subs command does not evaluate the results. If the developer neglects to do the evaluation afterwards, this can result in unexpected behavior (and long debugging sessions!).
Using subs:
subsy=0,⁢sin⁡y
sin⁡0
and the same question using eval:
evalsin⁡y,y=0
Notice that the calling sequences for eval and subs are different: eval expects its first argument to be the expression and its second argument to be the substitution, while subs command takes the substitution expression as its first argument and the expression as its second argument.
The eval command knows how to correctly evaluate piecewise expressions, while subs may make substitutions that do not make sense mathematically. In the following example subs gives a division by zero error, but eval correctly evaluates the piecewise definition at x=0.
p≔1xx<00x≥0
{1xx<000≤x
subsx=0,p
Error, numeric exception: division by zero
evalp,x=0
For these reasons, the eval command is often preferable.
One feature of subs is that it allows a chain of substitutions. If you supply subs with a number of equations, the substitutions are applied sequentially beginning with the left-most equation:
subsa=b,b=c,sina
sin⁡c
eval does not provide that ability with a single call, so to obtain a similar chain of evaluations from eval, you must use nested calls:
evalevalsina,a=b,b=c
In the examples earlier, the substitutions for variables are simple, stand-alone quantities. You can also substitute for an entire subexpression involving multiple variables, such as replacing a⋅b⁢with c.
The first attempt at making this substitution is to try the eval command. The eval command can substitute for any operand of the expression, such as
evalx⋅y+3 z+2, x⋅y=u
u+3⁢z+2
but it will only substitute for subexpressions that correspond to the operands of a Maple object. That is, it will only replace exact occurrences of an operand. This is called syntactic substitution. (The subs command also does syntactic substitution.)
eval⁡x⋅y+3⋅x⋅y⋅z+2, x⋅y=u;
u+3⁢x⁢y⁢z+2
The subexpression x⋅y⋅z was not replaced with u⋅z, because x⋅y is not an operand of 3⋅x⋅y⋅z. See op for more information on operands.
For more powerful mathematical substitutions involving sums and products of variables we can use the algsubs command, which stands for algebraic substitution.
algsubs⁡x⋅y=u, x⋅y+3⋅x⋅y⋅z+2
u+3⁢z⁢u+2
algsubs⁡a2=0,ⅇ2−a+a22−a36
ⅇ2−a
The value being substituted into the original expression is not limited to a simple symbol or value.
algsubsa⋅b=n−1,a⋅b⋅sina⋅b⋅c
sin⁡c⁢n−1⁢n−1
algsubs⁡s2=1−c2,s3
1−c2⁢s
The algsubs command accepts some options for specifying the substitution mode and the ordering of variables. See algsubs for more details.
Note: Another approach is to use the simplify command with side relations. This command reduces the expression to normal form with respect to the equations you provide, and also allows you control over the final result by optionally specifying a monomial order for the variables. It may be a more appropriate choice if you need more control over the form of the final result. See simplify/siderels.
In summary,
eval does strict syntactic substitution and then evaluates the result. Use for simple applications of replacing a symbol by a value.
subs does strict syntactic substitution but does not evaluate the result. Use to substitute subexpressions into an expression.
algsubs does algebraic substitution. Use when a more powerful substitution is needed.
algsubs, eval, IntegrationTools[Change], op, simplify/siderels, subsop, trigsubs
Download Help Document