- 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 1 (91.13 KiB) Viewed 102 times
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
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 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.0
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.