- Level: AS and A Level
- Subject: Maths
- Word count: 2256
Numerical Solutions of Equations
Extracts from this document...
Introduction
P2 Maths Coursework
Numerical Solutions of Equations Page of
P2 Maths Coursework
Numerical Solutions of Equations
Introduction
The aim of this coursework is to compare three different numerical methods of solving equations. This will allow us to determine which one is the most efficient, quickest and easiest method to use.
The three methods I will use are:
- Decimal Search method
- Newton-Raphson method
- Rearranging method
Decimal Search
The decimal search is named as it employs the tactic of splitting the current interval of x values into 10 equal intervals of equal size and looking for a change of sign.
This process is then repeated, again splitting the current interval into 10 equal intervals of equal size and this can be continued until the root has been found to the required degree of accuracy.
The equation that I have chosen to solve is y = x5 – 2.7x + 1.8
It is illustrated by the graph below.
This is the same equation but has been zoomed in.
y = x5 – 2.7x + 1.8
y = x5 – 2.7x + 1.8 crosses the x-axis between x = -2 and x = -1. To find the smallest root, I will take x = -4 as my starting value, and see the number of iterations required to find the root.
x | Y=x^5-2.7x+1.8 |
-1 | 3.5 |
-1.1 | 3.15949 |
-1.2 | 2.55168 |
-1.3 | 1.59707 |
-1.4 | 0.20176 |
-1.5 | -1.74375 |
-1.6 | -4.36576 |
-1.7 | -7.80857 |
-1.8 | -12.23568 |
-1.9 | -17.83099 |
-2 | -24.8 |
x | Y=x^5-2.7x+1.8 |
-1.4 | 0.20176 |
-1.41 | 0.03391633 |
-1.42 | -0.139533923 |
-1.43 | -0.318710894 |
-1.44 | -0.503736422 |
-1.45 | -0.694734062 |
-1.46 | -0.891829098 |
-1.47 | -1.095148551 |
-1.48 | -1.304821197 |
-1.49 | -1.520977575 |
-1.5 | -1.74375 |
x | Y=x^5-2.7x+1.8 |
-1.411 | 0.01682557 |
-1.4111 | 0.015113406 |
-1.4112 | 0.013400679 |
-1.4113 | 0.011687391 |
-1.4114 | 0.009973541 |
-1.4115 | 0.008259128 |
-1.4116 | 0.006544153 |
-1.4117 | 0.004828615 |
-1.4118 | 0.003112515 |
-1.4119 | 0.001395852 |
-1.412 | -0.000321374 |
x | Y=x^5-2.7x+1.8 |
-1.41 | 0.03391633 |
-1.411 | 0.01682557 |
-1.412 | -0.000321374 |
-1.413 | -0.017524621 |
-1.414 | -0.034784292 |
-1.415 | -0.052100505 |
-1.416 | -0.069473381 |
-1.417 | -0.086903041 |
-1.418 | -0.104389604 |
-1.419 | -0.121933191 |
-1.42 | -0.139533923 |
x | Y=x^5-2.7x+1.8 |
-1.4119 | 0.001395852 |
-1.41191 | 0.001224155 |
-1.41192 | 0.001052452 |
-1.41193 | 0.000880743 |
-1.41194 | 0.000709029 |
-1.41195 | 0.000537309 |
-1.41196 | 0.000365584 |
-1.41197 | 0.000193853 |
-1.41198 | 2.21161E-05 |
-1.41199 | -0.000149626 |
-1.412 | -0.000321374 |
Middle
In this case the function touches the x-axis but doesn't cross it, so no change of sign exists; hence we can’t use this method to calculate an estimate of the root
x | y = x3 + 5x2 + x + 0.051 |
0.1 | 0.202 |
0.11 | 0.222831 |
0.12 | 0.244728 |
0.13 | 0.267697 |
0.14 | 0.291744 |
0.15 | 0.316875 |
0.16 | 0.343096 |
0.17 | 0.370413 |
0.18 | 0.398832 |
0.19 | 0.428359 |
0.2 | 0.459 |
Newton Raphson Method
This method involves fixed-point estimation, whereby a tangent to the curve from an initial value of x is drawn then it is calculated where the tangent intercepts the x-axis. This gives the next approximation to the root. Repeating the process gives more and more accurate values for the root.
Newton-Raphson formula is:
f(x) = x³-13x+14
Using the Newton-Raphson method, I will choose a starting point (x1) of positive 3 and will draw a tangent to the line at this point on the x-axis – where x = 3. Where the tangent cuts the x-axis, I will have as my x2, my second point. I will draw a new tangent here and continue the process. I will illustrate this root graphically, but the other two purely numerically. I need to differentiate this equation, in order to use this method as the Newton-Raphson formula is as follows.
Differentiate the equation f’(x) = 3x²-13.
x2= 3 – 3³- (13*3)+14
(3*3²)-13
x2= 3 - 2
14
x2= 2.85714
By using this same method, but shortened significantly by using the ANS button on my calculator, I will find x3,, x4 etc
x3 = 2.84423
x4 = 2.84181
x5 = 2.84134
x6 = 2.84125
x7 = 2.84123
x8 = 2.84122
x9 = 2.84122
Conclusion
Newton-Raphson was the quickest of the three numerical methods. Newton-Raphson took only four steps and fixed point iteration took six steps to converge to the required root. The use of Microsoft Excel did not make a huge difference because a scientific calculator can easily be programmed with the required iterative formulae. A few presses of the ‘equals’ button would converge to the required root.
The most likely problem with Newton-Raphson was finding the wrong root if the tangent diverges away from the required root. Decimal search also had a problem by not showing a change of sign in the first set of calculations when the root had two decimal places.
The Rearrangement method takes a lot of time to find the right arrangement of an equation, because not all g(x) graphs will allow convergence to the required root. Graphamatica was a very useful piece of software as it could be used to instantly visualise curves and gradient functions. This meant that within seconds I could produce an accurate curve instead of having to make some calculations and draw the curve myself. This saved a lot of time as I could easily pick appropriate starting values without having to waste time using trial and error to pick my starting value.
This student written piece of work is one of many that can be found in our AS and A Level Core & Pure Mathematics section.
Found what you're looking for?
- Start learning 29% faster today
- 150,000+ documents available
- Just £6.99 a month