1. Employ the Newton-Raphson method to determine a real root for f(x) = x³ + 4x² − 10 using an initial guess of x0 = 5.0
Posted: Sun Jul 10, 2022 10:52 am
1. Employ the Newton-Raphson method to determine a real root for f(x) = x³ + 4x² − 10 using an initial guess of x0 = 5.0000. Perform the computation until a ≤ 0.0001%.| Abs Error = ((Xr_new Xr old) / Xr new)*100%. Please show sample computations for the 1st 3 iterations for X variables and the last 3 iterations for the Abs error computations. 2. Use secant method to determine a root of f(x) = x 4-x-10 with initial guesses of x_1 = 1 and xq = 2.0. Perform the computation until ɛa ≤ 0.0001%. Abs Error = ((Xr new Xr old) / Xr new)*100%. Please show sample computations for the 1st 3 iterations for X variables and the last 3 iterations for the Abs error computations.