0% found this document useful (0 votes)
115 views3 pages

Final Exam 1999S: Root Finding

This document provides examples of using numerical methods like Newton's method, Gauss-Seidel method, Secant method, and one-point iteration to find roots of equations or solve systems of linear equations. Many problems throughout various exams instruct students to use one of these numerical methods to solve equations or sets of linear equations, showing the mathematical steps and progress through iterations.

Uploaded by

makrsnakmines
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)
115 views3 pages

Final Exam 1999S: Root Finding

This document provides examples of using numerical methods like Newton's method, Gauss-Seidel method, Secant method, and one-point iteration to find roots of equations or solve systems of linear equations. Many problems throughout various exams instruct students to use one of these numerical methods to solve equations or sets of linear equations, showing the mathematical steps and progress through iterations.

Uploaded by

makrsnakmines
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/ 3

Root Finding

Final Exam 1999S


1. Use Newton's method to find a root of the following equation. Start at x=2.

x3 - 70= 0

7. Solve the following set of linear equations using Gauss-Seidel

-x+2y+4z = 10
x+3y+2z = 11
2x+ y = 5

Hour Exam 2000S


2) Use Newton's Method to find the root for x3 - 2x2 +4x= 41
Make your initial guess x=1. Perform at least one iteration.

3) Solve by the Gauss-Seidel Method. Perform at least one complete iteration.


2y + 3z = -1
2x + y = 12
-x +5y + 2z = -6

4) Use Secant Method to find the root for ln (x) + x3 = 400.


Use initial guesses of x1=1 and x2 =2. Show one iteration and identify x3.

5) Solve the following set of linear equations using Gauss-Jordan elimination. You need only show
enough work to establish the method. Be clear enough that a college freshman could finish your
work from your description.
x + 3y + 2z = 11
2x + y = 6
-x + 2y + 5z = 9

6) Solve for one root by one-point iteration. Show enough iterations to determine if the solution is
converging or diverging. Start at x = 2.
3
x - ln(x) = 50

Final Exam 2001F


2. Find a root of the following equation by any two numerical methods of your choice. To receive full
credit you must layout the mathematical method clearly.
x3 - 2 ln (x) = 34

8. Show how to solve the following set of linear equations using the Gauss-Seidel method

-x2 +2y + 5z3 = 18


2x + y2 = 6
3
7x +3y + 5z = 14
Final Exam 2002F
5. Layout the solution to the following set of equations using the Gauss-Seidel Method:
2 x + y 2 − z 2 = −3
3 x 3 + 2 y − 4 z = −1
x 2 − 7 y 2 − z = −3 0

Final Exam 2005S


8. Layout the solution to the following set of equations using the Gauss-Seidel Method:
2 x + y − 5 z = −3
3 x + 3 y − 4 z = −1
9 x − 2 y − z = −3 0

Final Exam 2005F


1. Layout the solution to the following set of equations using the Gauss-Seidel Method:
2 x + y − 5 z = −3
3 x + 3 y − 4 z = −1
9 x − 2 y − z = −3 0
Solution:
Make a dominant Diagonal:
9 x − 2 y − z = −3 0
3 x + 3 y − 4 z = −1
2 x + y − 5 z = −3
Solve for each variable in turn:
x = (−30 + 2 y + z ) / 9
y = ( −1 − 3 x + 4 z ) / 3
z = (−3 − 2 x − y ) /(−5)

N x y z
0 1 1
1 -3.00000 4.00000 0.20000
2 -2.42222 2.35556 0.10222
3 -2.79852 2.60148 0.00089
4 -2.75513 2.42298 -0.01746
5 -2.79683 2.44023 -0.03069
6 -2.79447 2.42022 -0.03374
7 -2.79926 2.42093 -0.03552
8 -2.79930 2.41861 -0.03600
9 -2.79986 2.41854 -0.03624
10 -2.79991 2.41826 -0.03631
11 -2.79998 2.41823 -0.03635
Hour Exam #2 2005F
4 Setup the one-point iteration to find the root to the following equations starting with x = 1.

x2.6 – 2ln(x) - x = 15
Solution:
XN+1 = [15+XN + 2*ln(XN)](1/2.6) = g(X). Start with X1 = 1
N XN g(x)
1 1 2.9048
2 2.90485 3.1675
3 3.16745 3.1938
4 3.19377 3.1963
5 3.19634 3.1966
6 3.19659 3.1966

Final Exam 2005F


4. Show how to find a root of the following equation by any two numerical methods of your
choice. To receive full credit you must give the method’s name and layout the mathematical
method clearly.
x3 - 2 ln (5+x) = 34

9. Show how to solve the following set of linear equations using the Gauss-Seidel
method

-x +2y + 5z = 44
2x + 4y - 2z = 32
7x + y + 2z = 27

You might also like