Research Work 3
Research Work 3
INTRODUCTION
Another valuable tool in the numerical toolbox for solving nonlinear problems, is the
fixed-point iteration method.
In solving the root of the original equation, there should be an initial guess x, to which
a function g(x) is repeatedly applied to such guess. The guess is further narrowed with each
iteration, converging closer to the real root. This process is repeated until reaching a
solution, which is when the difference between successive guesses is sufficiently minimal,
or when error is lesser than or equal to predefined tolerance.
1. Use the fixed-point iteration method to locate at least one root of a function with a
polynomial degree of four (4) in the general form, f(x)= Ax⁴ + Bx³ + Cx² + Dx + E
such that, the quartic function is x⁴ + 2x³ – 85x² – 86x + 1680 with a tolerance ≤
0.00001, by means of utilizing the Microsoft Excel as a programming tool and by
using the value:
A. 4.5
CHAPTER 3
METHODOLOGY OR ALGORITHM
The following algorithm shows the step-by-step procedure in solving for the solutions
of the given quartic function, f(x)= x⁴ + 2x³ – 85x² – 86x + 1680, by means of Microsoft
Excel as the programming tool and by means of the root-finding method hereinafter referred
to as the fixed-point iteration method:
1. Manipulate the equation into different forms, such that, only x is at constant
left on one side of the equation.
The equation is x⁴ + 2x³ – 85x² – 86x + 1680= 0, if manipulated it can be in the form:
A. x= ⁴√(-2x³+85x²+86x-1680)
B. x= (-x²+85+(86/x)-(1680/x²))½
C. x= (-1680)/(x³+2x²-85x-86)+1680
The equation at hand, when used with SHIFT+SOLVE, results to x=5.
4. Updating the x.
A. In A4, the new value of x in A4 shall be the previous value of g(x) in B3.
=B3
START
input x g(x)
NO
check convergence
error ≤
g(x) = x
tolerance?
update value of x
YES
OUTPUT:
root= x3
STOP
CHAPTER 5
FIRST ITERATION
SECOND ITERATION
1. In A4:
=B3
2. Drag down B3 to B4.
3. In C4:
=ABS((A4-A3)/A4)*100
4. Drag down D3 to D4. If D4=FALSE, proceed to another iteration and so on.
CHAPTER 6
Setting up a simple spreadsheet and ensuring certain conditions are met, performing
the fixed-point iteration method on Microsoft Excel iteratively narrowed down the initial
value to an approximate solution. The bisection method operated on Excel, obtained at
least one root of the function, f(x)= x⁴ + 2x³ – 85x² – 86x + 1680 with an error ≤ 0.00001,
manipulated into the form, x= (-1680)/(x³+2x²-85x-86)+1680 by using the value:
A. 4.5
1. Burden, R. L., & Faires, J. D. (2005). Student Solutions Manual and Study Guide for
Numerical Analysis (9th ed.).
2. Chapra, S. C., & Canale, R. P. (2000). Numerical Methods for Engineers (6th ed.).
McGraw-Hill Higher Education.
3. Katz, V. J. (1993). A History of Mathematics: An Introduction. New York :
HarperCollins.