Question

In: Advanced Math

Consider the following real 3rd order polynomial f (x)= x^3− 5.5 x^2− 5x+ 37.5 A) Use...

Consider the following real 3rd order polynomial

f (x)= x^3− 5.5 x^2− 5x+ 37.5

A) Use the bisection method to determine one of the roots, employing initial guesses of xl = - 10, xu = -1, and a stopping criterion εs=12% .

B) Use the false position method to determine a root, employing initial guesses of xl = - 1, xu = 4, and a stopping criterion εs=3%. Was this method the best for these initial guesses?

C) Use the fixed point iteration to determine a root, employing an initial guess x0 = 7 and a stopping criterion εs=5%

D) Use the Newton-Raphson to determine a root, employing an initial guess x0 = 7 and a stopping criterion εs=5%

Please please show all steps

Thank you

Solutions

Expert Solution

A.  bisection method

Let f(x)=x3-5.5x2-5x+37.5


1st iteration :

Here f(-10)=-1462.5<0 and f(-1)=36>0

∴ Now, Root lies between -10 and -1

x0=-10+(-1)2=-5.5

f(x0)=f(-5.5)=-5.53-(5.5-5.52)-(5-5.5)+37.5=-267.75<0


2nd iteration :

Here f(-5.5)=-267.75<0 and f(-1)=36>0

∴ Now, Root lies between -5.5 and -1

x1=-5.5+(-1)2=-3.25

f(x1)=f(-3.25)=-3.253-(5.5-3.252)-(5-3.25)+37.5=-38.671875<0


3rd iteration :

Here f(-3.25)=-38.671875<0 and f(-1)=36>0

∴ Now, Root lies between -3.25 and -1

x2=-3.25+(-1)2=-2.125

f(x2)=f(-2.125)=-2.1253-(5.5-2.1252)-(5-2.125)+37.5=13.69335938>0


4th iteration :

Here f(-3.25)=-38.671875<0 and f(-2.125)=13.69335938>0

∴ Now, Root lies between -3.25 and -2.125

x3=-3.25+(-2.125)2=-2.6875

f(x3)=f(-2.6875)=-2.68753-(5.5-2.68752)-(5-2.6875)+37.5=-8.19799805<0


5th iteration :

Here f(-2.6875)=-8.19799805<0 and f(-2.125)=13.69335938>0

∴ Now, Root lies between -2.6875 and -2.125

x4=-2.6875+(-2.125)2=-2.40625

root is x=-2.40625

error is 3%

B. false position method

Find a root of an equation f(x)=x3-5.5x2-5x+37.5 between -4 and -1, using False Position method (regula falsi method)

Solution:
Here x3-5.5x2-5x+37.5=0

Let f(x)=x3-5.5x2-5x+37.5


1st iteration :

Here f(-4)=-94.5<0 and f(-1)=36>0

∴ Now, Root lies between x0=-4 and x1=-1

x2=x0-f(x0)⋅x1-x0f(x1)-f(x0)

x2=-4-(-94.5)⋅-1-(-4)36-(-94.5)

x2=-1.8276

f(x2)=f(-1.8276)=-1.82763-(5.5-1.82762)-(5-1.8276)+37.5=22.1633>0


2nd iteration :

Here f(-4)=-94.5<0 and f(-1.8276)=22.1633>0

∴ Now, Root lies between x0=-4 and x1=-1.8276

x3=x0-f(x0)⋅x1-x0f(x1)-f(x0)

x3=-4-(-94.5)⋅-1.8276-(-4)22.1633-(-94.5)

x3=-2.2403

f(x3)=f(-2.2403)=-2.24033-(5.5-2.24032)-(5-2.2403)+37.5=9.8536>0


3rd iteration :

Here f(-4)=-94.5<0 and f(-2.2403)=9.8536>0

∴ Now, Root lies between x0=-4 and x1=-2.2403

x4=x0-f(x0)⋅x1-x0f(x1)-f(x0)

x4=-4-(-94.5)⋅-2.2403-(-4)9.8536-(-94.5)

x4=-2.4065

f(x4)=f(-2.4065)=-2.40653-(5.5-2.40652)-(5-2.4065)+37.5=3.7458>0


4th iteration :

Here f(-4)=-94.5<0 and f(-2.4065)=3.7458>0

∴ Now, Root lies between x0=-4 and x1=-2.4065

x5=x0-f(x0)⋅x1-x0f(x1)-f(x0)

x5=-4-(-94.5)⋅-2.4065-(-4)3.7458-(-94.5)

x5=-2.4672

root is x= -2.4672

error is 1.3%

C. it is very large so i am skip this if you want it then comment im send to you

D. Find a root of an equation f(x)=x3-5.5x2-5x+37.5 initial solution x0=7, using Newton Raphson method

Solution:
Here x3-5.5x2-5x+37.5=0

Let f(x)=x3-5.5x2-5x+37.5

∴f′(x)=3x2-11x-5

x0=7


1st iteration :

f(x0)=f(7)=73-5.5⋅72-5⋅7+37.5=76

f′(x0)=f′(7)=3⋅72-11⋅7-5=65

x1=x0-f(x0)f′(x0)

x1=7-7665

x1=5.83077


2nd iteration :

f(x1)=f(5.83077)=5.830773-5.5⋅5.830772-5⋅5.83077+37.5=19.5916

f′(x1)=f′(5.83077)=3⋅5.830772-11⋅5.83077-5=32.85515

x2=x1-f(x1)f′(x1)

x2=5.83077-19.591632.85515

x2=5.23447

root is 5.23447 (by NR methode)

and actual root is 5

error is 4%


Related Solutions

Consider the polynomial f(x) = 3x 3 + 5x 2 − 58x − 40. Using MATLAB....
Consider the polynomial f(x) = 3x 3 + 5x 2 − 58x − 40. Using MATLAB. Find the three roots of the polynomial, i.e, x where f(x) = 0, using Newton’s method. Report the number of iterations taken by each algorithm using a tolerance of 10−8 .
Using MATLAB, Consider the polynomial f(x) = 3x^3 + 5x^2 − 58x − 40. Find the...
Using MATLAB, Consider the polynomial f(x) = 3x^3 + 5x^2 − 58x − 40. Find the three roots of the polynomial, i.e, x where f(x) = 0, using: (i) Bisection method, and (ii) Newton’s method. Report the number of iterations taken by each algorithm using a tolerance of 10^−8 .
2. Let f(x)=2x^2−4x+7/5x^2+5x−9, evaluate f '(x) at x=3 rounded to 2 decimal places. f '(3)= 3....
2. Let f(x)=2x^2−4x+7/5x^2+5x−9, evaluate f '(x) at x=3 rounded to 2 decimal places. f '(3)= 3. Let f(x)=(x^3+4x+2)(160−5x) find f ′(x). f '(x)= 4. Find the derivative of the function f(x)=√x−5/x^4 f '(x)= 5. Find the derivative of the function f(x)=2x−5/3x−3 f '(x)= 6. Find the derivative of the function g(x)=(x^4−5x^2+5x+4)(x^3−4x^2−1). You do not have to simplify your answer. g '(x)= 7. Let f(x)=(−x^2+x+3)^5 a. Find the derivative. f '(x)= b. Find f '(3)= 8. Let f(x)=(x^2−x+4)^3 a. Find the...
The Polynomial f(x) = X^3 - X^2 - X -1 has one real root a, which...
The Polynomial f(x) = X^3 - X^2 - X -1 has one real root a, which happens to be positive. This real number a satisfies the following properties: - for i = 1,2,3,4,5,6,7,8,9,10, one has {a^i} not equal to zero - one has [a] = 1, [a^2] = 3, [a^3] = 6, [a^4] = 11, [a^5] = 21, [a^6] = 7, [a^7] = 71, [a^8] = 130 (for a real number x, [x] denotes the floor of x and {x}...
Evaluate the polynomial y= x^3- 5x^2+ 6x + 0.55 at x=.137. Use 3-digit arithmetic with rounding....
Evaluate the polynomial y= x^3- 5x^2+ 6x + 0.55 at x=.137. Use 3-digit arithmetic with rounding. Evaluate the percent relative error. (b) Repeat (a) but express y as y= ((x- 5)x +6)x + 0.55
1. Consider the following curve f(x)= X^3 - 5x^2 +7x-5 Find the coordinates of the minimum and the maximum.
  1. Consider the following curve f(x)= X^3 - 5x^2 +7x-5 Find the coordinates of the minimum and the maximum. 2. The curve y= x^3 + ax^2 + bx + c has a relative max at x=-3 and a relative minimum at x= 1. Find the values of a and b. 3. Find the equation of the perpendicular line to the curve x^2 + 2xy - 2y^2 + x=2 at the point (-4,1) 4. Find the slant asymptote f(x)= (4x^2...
if f(x)=5x(x+4)^3 , find f'(x) and f"(x)
if f(x)=5x(x+4)^3 , find f'(x) and f"(x)
If f(x)=2x^2−5x+3, find f'(−4).      Use this to find the equation of the tangent line to the...
If f(x)=2x^2−5x+3, find f'(−4).      Use this to find the equation of the tangent line to the parabola y=2x^2−5x+3 at the point (−4,55). The equation of this tangent line can be written in the form y=mx+b where m is: ???? and where b is: ????
consider f(x) = ln(x) use polynomial degree of 5!!! a) Approximate f(0.9) and f(1.1) b) Use...
consider f(x) = ln(x) use polynomial degree of 5!!! a) Approximate f(0.9) and f(1.1) b) Use Taylor remainder to find an error formula for Taylor polynomial. Give error bounds for each of the two approximations in (a). Which of the two approximations in part (a) is closer to correct value? c) Compare an actual error in each case with error bound in part (b).
Factor the following: a) f(x)=x^5+5x^4-21x^3-137x^2-88x+240, knowing that f(5)=0 and f(-3)=0. b) f(x)=x^3+8x^2+5x-50 c)f(x)=-x^4-4x^3+19x^2+46x-120, knowing that (x+5)...
Factor the following: a) f(x)=x^5+5x^4-21x^3-137x^2-88x+240, knowing that f(5)=0 and f(-3)=0. b) f(x)=x^3+8x^2+5x-50 c)f(x)=-x^4-4x^3+19x^2+46x-120, knowing that (x+5) and (x-2) are factors.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT