Math Problem Statement

  1. Find the root of x2-2=0 by using

a. Newton Raphson method( ) where Xo=1.5

b. Secant formula () Xo=1.45 X1=1.5

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Numerical Methods
Root Finding
Iteration Methods

Formulas

Newton-Raphson formula: x_(n+1) = x_n - f(x_n)/f'(x_n)
Secant formula: x_(n+1) = x_n - f(x_n) * (x_n - x_(n-1)) / (f(x_n) - f(x_(n-1)))

Theorems

Convergence of Newton-Raphson method
Convergence of Secant method

Suitable Grade Level

Undergraduate - First Year