% Question 1 6

6. Problem 12.24(MATLAB). (Due in class on October 26th, 2004, Tuesday) % Question 1 6.8 (pg 158) clear all; % Determine the highest real root of f(x) = x^3 - 6x^2 + 11x: %a) Graphically . x = -20:1:20; for i = 1:1:41. y(i) = x(i)^3 - 6*x(i)^2 + 11*x(i); end. plot(x,y); % b) Using Newton Raphson method (three iterations, xi = 3.5) fx = [1 -6 11 ... ................
................