Quiz 3: The Newton-Raphson method
Question
Solve the equation ex - 4x = 0 using Newton-Raphson iteration.
Not correct. Choice (a)
is false.
Not correct. Choice (b)
is false.
Your answer is correct.
Sketch the curve of f( x) = ex - 4 x and see that there is a solution between x = 0 and
x = 1 and between x = 2 and x = 3 . Now f′( x) = ex - 4 so the iterative function
is

giving x0 = 0 .5, x1 = 0 .35060, x2 = 0 .35739, x3 = 0 .35740 , x4 = 0 .35740 ,
and x0 = 2 .5, x1 = 2 .23327, x2 = 2 .15874, x3 = 2 .15332 , x4 = 2 .15329,
x5 = 2 .15329 .
Not correct. Choice (d)
is false.
Use the Newton-Raphson method to solve 2x3 - 6x2 + 6x - 1 = 0 to 4 decimal
places.
Not correct. Choice (a)
is false.
Your answer is correct.
Sketching the curve f( x) = 2 x3 - 6 x2 + 6 x - 1 we see there is a root between 0 and
0 .5 . f(0) = -1, f(0 .5) = 0 .75 so the function changes sign on the interval
0 ≤ x ≤ 0 .5 . f′( x) = 6 x2 - 12 x + 6 = 6( x - 1) 2 so there is a critical value at x = 1 .
f′′( x) = 12 x - 12 so the second derivative changes sign at x = 1 . The tangent at
x = 0 is y = 6 x - 1 which cuts the x-axis at x = . The tangent at x = 0 .5 is
y = x which cuts the x-axis at x = 0 . Therefore we can use Newton-Raphson with
the iterative function

so x0 = 0 .5, x1 = 0, x2 =  , x3 = 0 .20444 , x4 = 0 .206295, x5 = 0 .20630,
x6 = 0 .2063 .
Not correct. Choice (c)
is false.
Not correct. Choice (d)
is false.
Newton-Raphson method will always converge to a solution for f(x) = 0 on the
interval a ≤ x ≤ b if certain conditions are met. Which of the following is not one of
these conditions ?
Not correct. Choice (a)
is false.
Not correct. Choice (b)
is false.
Not correct. Choice (c)
is false.
Your answer is correct.
The condition should be that f′( x)  0 on the interval a ≤ x ≤ b.
The function f(x) = 2x3 - 2x2 - 3x + 2 has a root between 0 and 1. Which of the
following conditions fail ?
Not correct. Choice (a)
is false.
Not correct. Choice (b)
is false.
Your answer is correct.
f′′(x) does change sign on the interval since f′′(0) = -4 and f′′(1) = 8.
Not correct. Choice (d)
is false.
As we saw in question 4, we cannot use the Newton-Raphson method to find the root
of the function f(x) = 2x3 - 2x2 - 3x + 2 on the interval 0 ≤ x ≤ 1. Find a
suitable function to use the Gregory-Dary iteration method and find the
solution.
Your answer is correct.
x = φ( x) =  (2 x3 - 2 x2 + 2) is a suitable function since ∣φ′( x) ∣ < 1 on 0 ≤ x ≤ 1 and
starting with x0 = 0 .5 it takes 6 iterations to get the solution x5 = x6 = 0 .57318 .
Not correct. Choice (b)
is false.
Not correct. Choice (c)
is false.
Not correct. Choice (d)
is false.
Consider the function f(x) = x4 + 3x2 - x - 5. It has one root at x = -1.
Use the Newton-Raphson method to find the other real root to 9 decimal
places.
Your answer is correct.
| xn+1 | = xn - | |
| | = . | | |
Not correct. Choice (b)
is false.
Not correct. Choice (c)
is false.
Not correct. Choice (d)
is false.
Consider the function f(x) = 3sin2x - 2e3x + x. Use the Newton-Raphson method
starting at x0 = -2 and x0 = -3 to find the two roots to 9 decimal places (NB: For
this question you should use Mathematica or a programmable calculator to ensure
accurate answers).
Not correct. Choice (a)
is false.
Not correct. Choice (b)
is false.
Your answer is correct.
| xn+1 | = xn - | |
| | = . | | |
Not correct. Choice (d)
is false.
How many times do we need to iterate using the Newton-Raphson method to find the
root of the function f(x) = 4xe2x - 2 to 4 decimal places starting with x0 = 0.5
?
Not correct. Choice (a)
is false.
Not correct. Choice (b)
is false.
Not correct. Choice (c)
is false.
Your answer is correct.
| xn+1 | = xn - | |
| | = , | | |
so x0 = 0 .5, x1 = 0 .3420, x2 = 0 .2887, x3 = 0 .2836
x4 = 0 .2836. The answer is obtained in 4 iterations when starting with x0 = 0 .5.
Compare this with the Gregory-Dary iteration method for the same function where it
took 15 iterations to get the answer.
Use the Newton-Raphson method to find the second iterate to 5 dec. places of the
solution of

starting at x0 = 0 .5 .
Not correct. Choice (a)
is false.
Your answer is correct.
The iterative function is

Note that our starting point will determine which of the many possible solutions we
find.
Not correct. Choice (c)
is false.
Not correct. Choice (d)
is false.
The amount of insulin in microunits per mL in a diabetic patient is given by the
function I(t) = 4.5 + 40.5te-0.26t where t is the number of hours since the last
injection. If the next insulin injection must be given after the insulin has peaked and
then fallen to 45 microunits per mL, at what time, to the nearest minute, must the
next insulin injection be given ?
Not correct. Choice (a)
is false.
Your answer is correct.
Consider the graph of I( t) shown below.
We wish to solve f( t) = 40 .5 te-0.26t - 40 .5 = 0. The first root is between 0 and 1 and
the second appears to be between 7 and 8.5. Try Newton-Raphson with x0 = 7 .5 and
we get x = 7 .994 or 8 hours to the nearest minute.
Not correct. Choice (c)
is false.
Not correct. Choice (d)
is false.
|