Errata for the Maple programs accompanying Numerical Methods by Faires and Burden, 2nd ed.
BISECT21
1. Find and replace all I's by i's.
2. Find printf(`For example: cos(x)`); and add \n at the end,
printf(`For example: cos(x)\n`);
SECANT22
1. Find and replace all I's by i's.
2. Find printf(`For example: cos(x)`); and add \n at the end,
printf(`For example: cos(x)\n`);
FALPOS23
1. Find and replace all I's by i's.
2. Find printf(`For example: cos(x)`); and add \n at the end,
printf(`For example: cos(x)\n`);
NEWTON24
1. Find and replace all I's by i's.
2. Find printf(`For example: cos(x)`); and add \n at the end,
printf(`For example: cos(x)\n`);
MULLER25
1. Find and replace all I's by i's.
2. Find printf(`For example: x^2-2*x+2`); and add \n at the end,
printf(`For example: x^2-2*x+2\n`);
3. Add pp to the list of local variables,
MULLER25 := proc() local P, OK, TOL, M, X, FLAG, NAME, OUP, F, H, DEL1, DEL, i, B, D, E, J, pp;