[30 points] Implement the Newton-Raphson algorithm for solving nonlinear algebraic equations (single equations, not syst
Posted: Thu Jul 14, 2022 3:56 pm
[30 points] Implement the Newton-Raphson algorithm for solving nonlinear algebraic equations (single equations, not systems). The inputs are: (a) The equation. (b) The interval where the root must be sought. (c) The accuracy of the root. The output is the list of roots of the equation in the given interval. For verification purposes, use Python, MatLab or Wolfram Mathematica.