0% found this document useful (0 votes)
50 views16 pages

Newton and Bisection Method

This document provides 4 questions asking the student to use numerical methods like Newton's method and bisection method to find the roots of equations. Question 1 asks to use Newton's method to find the root of √x + x^2 = 7 starting at x = 7 over 5 iterations. Question 2 asks to use Newton's method to find the cube root of 155 starting at x = 155 over 5 iterations. Question 3 asks to use the bisection method to find the root of f(x) = x^2 - e^-x starting between a=0 and b=1 over 5 iterations. Question 4 asks to use Newton's method to solve a system of 2 non-linear equations starting at x=1 and y

Uploaded by

John Wick
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)
50 views16 pages

Newton and Bisection Method

This document provides 4 questions asking the student to use numerical methods like Newton's method and bisection method to find the roots of equations. Question 1 asks to use Newton's method to find the root of √x + x^2 = 7 starting at x = 7 over 5 iterations. Question 2 asks to use Newton's method to find the cube root of 155 starting at x = 155 over 5 iterations. Question 3 asks to use the bisection method to find the root of f(x) = x^2 - e^-x starting between a=0 and b=1 over 5 iterations. Question 4 asks to use Newton's method to solve a system of 2 non-linear equations starting at x=1 and y

Uploaded by

John Wick
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/ 16

Assignment # 1

Q1. Find the root of the equation √𝒙 + 𝒙𝟐 = 𝟕 using Newton’s method. Start at x = 7 and
carry out the first five iterations.

1
2
3
4
Q2. Determine the cube root of 155 by finding the numerical solution of the equation
x3-155 = 0 using Newton’s method. Start at x = 155 and carry out the first five iterations.

5
6
7
8
Q3. Determine the root of f(x) = x2-e-x using the bisection method. Start with a=0 and b=1
and carry out the first five iterations.

9
10
11
12
Q4. Solve the following system of non-linear equations:

4x2 - y3 + 28 = 0

3x3 + 4y2 -145 = 0

Use Newton’s method. Start at x=1 and y=1 and carry out first two iterations.

13
14
15
16

You might also like