Download as pdf or txt
Download as pdf or txt
You are on page 1of 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