This document outlines 6 numerical analysis problems to solve using various root finding methods. The problems include using the bisection, false position, secant, Newton's, and fixed point iteration methods to find roots of equations. They also include finding all real roots of a cubic equation using Newton-Raphson method and using secant method to find a root within an error tolerance.
Download as DOC, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
31 views
Tutorial
This document outlines 6 numerical analysis problems to solve using various root finding methods. The problems include using the bisection, false position, secant, Newton's, and fixed point iteration methods to find roots of equations. They also include finding all real roots of a cubic equation using Newton-Raphson method and using secant method to find a root within an error tolerance.
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1
Assignment 1
Numerical Method
1. Find a root of the following equations using bisection
method.(upto 4th iteration only) a) Log x cos x=0 b) X3 3 = x c) Sinx=1/x(root lies between 1 and 1.5) 2. Use the false position and secant formula to compute a root of the following equation correct up to 2-decimal places. a) X e-x = 0 b) Xsinx = 1 c) X2 -5x + 6 = 0 3. Apply the newtons method to find the root of the following equation correct upto 2-decimal places. a) Logx = cosx b) X5 3x2-100 = 0 (with x0=2 ) 4. Use the fixed point iteration method to evaluate the roots of the equation. a) X2 x -6 = 0 b) X2 x -1 =0 5. Calculate the root of non-linear equation f ( x) 3 x sin x e x using secant method. The absolute error of functional value at our calculated root should be less than 10 -3. 6. Find out all the possible real roots of the equation x 3 2x 5 = 0 using Newton Raphson method correct upto three decimal places.