This is an introduction to Maple. Look at the New User Tour under the Help menu. There is a fair amount of material here, so for this lab, just glance over it, but read more carefully (1) (Working through the New User's Tour) and (3) (Numeric computations.) You can come back later to go through the other topics. (Nothing to hand in.)
x = 6 e-x.
to 4 significant digits. Do this in two ways:
f := x -> -log(x/6)
Recall that the fixed-point method starts with an approximate value of
the solution p0 and then evaluates
p1 = f(p0). The hope is that
p1 is a better approximation. This process is then
repeated to convergence. In the file lab05 give the numeric answer and copy the Maple
commands that you used to arrive at the answer in both cases.