 
 
 
 
 
   
 and
 and  are both expressions. A function,
on the other hand, is a rule for associating an output value with an
input value.
 are both expressions. A function,
on the other hand, is a rule for associating an output value with an
input value.
The connection is that expressions are often used to define 
functions. That is, we could let 
 , which defines a
function
, which defines a
function  . The rule for this function is to substitute a value for
. The rule for this function is to substitute a value for
 into the expression
 into the expression  to obtain the output value. Not
all expressions can be used to define functions, however, and not all
functions are defined by expressions so these really are distinct
mathematical objects.
 to obtain the output value. Not
all expressions can be used to define functions, however, and not all
functions are defined by expressions so these really are distinct
mathematical objects.
Maple mimics this mathematical distinction between expression and function. You can define expressions in Maple and even label them for later use with commands like the one below.
> p := x^2+sin(3*x);This is an expression not a function, which means there is no rule associated with it. Thus evaluating the expression at a specific value of
 requires the subs command, as in the following
example.
 requires the subs command, as in the following
example.
> subs(x=2,p);The syntax for defining a function in Maple uses an arrow to make the idea of a function as a process explicit. For example, we can define a function
 in Maple using the expression
 in Maple using the expression  with the
following command.
 with the
following command.
> f := x -> x^2+sin(3*x);Evaluating our function at a specific value of
 is now easy.
 is now easy. 
> f(2);One final thing to note is that Maple will use f to denote the function we have defined, but will use f(x) to denote the expression used to define the function.
If you want to evaluate the derivative at a specific value of  or
just get the expression for the derivative, you can use the following
forms of the D operator.
 or
just get the expression for the derivative, you can use the following
forms of the D operator.
> D(f)(2); > D(f)(x);This last form is the one to use for plotting, as shown below.
> plot(D(f)(x),x=-2..2);
Suppose you want to find the equaton of the line tangent to the graph
of  at the point
 at the point  .  This can be done in Maple using the
point slope form of a line as shown below.
.  This can be done in Maple using the
point slope form of a line as shown below. 
> tanline := D(f)(5)*(x-5)+f(5);
The D operator CANNOT be used on expressions, for example trying to use it to differentiate the expresssion we defined above results in an error.
> D(p);The following is also INCORRECT syntax
> D(f(x));
To differentiate expressions, you need to use the diff command. Here is an example.
> diff(p,x);The diff command can also be applied to functions as shown below.
> diff(f(x),x);Note, however, that the result of the diff command is an expression, not a function. This means that computing the value of the derivative at a specific value of
 requires you to use the
subs command.
 requires you to use the
subs command.
 . In your writeup,
identify which curve is the 
function and which is the derivative, for example by identifying a
point where the derivative is zero.
. In your writeup,
identify which curve is the 
function and which is the derivative, for example by identifying a
point where the derivative is zero. 
 
 and plot
it on the same graph. Use the interval
 and plot
it on the same graph. Use the interval 
 .
.
 
 meter cliff and air
  resistance is neglected, the position of the object at time
 meter cliff and air
  resistance is neglected, the position of the object at time  is given by
  is given by 
 , where
, where  is in seconds. The
  average velocity at time
 is in seconds. The
  average velocity at time  is
 is 
 
 is
exactly half the instantaneous velocity at time
 is
exactly half the instantaneous velocity at time  .
.
 
 
 
 
