    |\^/|      MAPLE V
._|\|   |/|_.  Copyright (c) 1981-1990 by the University of Waterloo.
 \  MAPLE  /   All rights reserved.  MAPLE is a registered trademark of
 <____ ____>   Waterloo Maple Software.
      |        Type ? for help.

#
# enter a symbolic formula
#
> force := mass*acceleration;

                           force := mass acceleration

#
# add specific assignments to constants
#
> mass := 3000;

                                  mass := 3000

#
# look at the modified formula
#
> force;

                               3000 acceleration

> acceleration := 9.8;

                              acceleration := 9.8

> force;

                                    29400.0

#
# compute energy
#
> distance1 := 10;

                                distance1 := 10

> distance2 := 50:
> `Total Energy` := force * (distance2 - distance1);

                                                     7
                         Total Energy := .11760000*10

> quit
