0% found this document useful (0 votes)
69 views

Numerical Analysis Question Bank

The document provides instructions for solving numerical analysis problems using the Bisection and Newton's methods. Students are asked to: 1) Use the Bisection method to find roots of equations to within specified tolerances. 2) Write algorithms for both methods in MATLAB and test them on equations. 3) Use Newton's method to find roots, compare results to Bisection method, and observe behaviors for different initial guesses.

Uploaded by

AAYUSH KATARIYA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
69 views

Numerical Analysis Question Bank

The document provides instructions for solving numerical analysis problems using the Bisection and Newton's methods. Students are asked to: 1) Use the Bisection method to find roots of equations to within specified tolerances. 2) Write algorithms for both methods in MATLAB and test them on equations. 3) Use Newton's method to find roots, compare results to Bisection method, and observe behaviors for different initial guesses.

Uploaded by

AAYUSH KATARIYA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

BIRLA INSTITUTE OF TECHNOLOGY AND SCIENCE - PILANI, HYDERABAD CAMPUS

Tutorial-1, First Semester 2021-2022


Course No.: MATH F313 Course Title: NUMERICAL ANALYSIS

1. Use the Bisection method to find the indicated roots of the following equations:

(a) f (x) = xex − 2 = 0, in the interval [0,1]. (use an error tolerance ϵ = 0.008)
(b) The smallest positive root of cos x = 21 + sin x (ϵ = 0.0001)
(c) x − 2−x = 0 for 0 ≤ x ≤ 1.

2. Use the Bisection method to find solutions accurate to within 10−2 for x4 −2x3 −4x2 +4x+4 = 0
on each interval

(a) [-2,-1] (b) [0,2] (c) [2,3] (d) [-1,0].



3. Find an approximation to 2 correct to with 10−4 using the Bisection algorithm.

4. If the Bisection method is used on an interval of length 1 to find Cn with error |Cn − C| < 10−5
determine the least value of n that will assure the accuracy.

5. Write the Bisection method algorthim in MATLAB and test it for the problems in questions
1, 2, and 3.

6. Using Newton’s method, find the roots of the equations in problem 1.



7. Approximate 2 using Newton’s method (use five iterations). Compare the result with the
problem 3.

8. Write the Newton’s method algorithm in MATLAB and test it for the problems in questions
1,2, and 3.

9. Use Newton’s method to find solutions accurate to within

(a) x − cos x = 0, [0, π/2], ϵ = 10−4 , (b) x − 0.8 − 0.2 sin x = 0, [0, π/2], ϵ = 10−4 .
x
10. Consider f (x) = = 0 in [-1,1]. Find the root using Newton’s method with initial
1 + x2
guess x0 = 0.75. What is your observation.

11. f (x) = x6 − x − 1 = 0 obtain the root which is accurate upto 9 significant digits using
Newton’s method with x0 = 1.0 and x0 = 2.0. what is your observation.

You might also like