0% found this document useful (0 votes)
11 views1 page

Root Finding for x^3 - x - 1

This document presents the results of an iterative method to find the root of the function x^3 - x - 1. The method starts with an initial guess of x0 = 1 and iterates until the absolute error is less than the tolerance of 0.0001. The table shows the iterations, values of x(n) and x(n+1), absolute error, and final root of 1.32471796. A graph of the function is also shown.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

Root Finding for x^3 - x - 1

This document presents the results of an iterative method to find the root of the function x^3 - x - 1. The method starts with an initial guess of x0 = 1 and iterates until the absolute error is less than the tolerance of 0.0001. The table shows the iterations, values of x(n) and x(n+1), absolute error, and final root of 1.32471796. A graph of the function is also shown.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd

Ejemplo 2

x0 = 1 Tol = 0.0001 función = x^3 - x - 1

n x(n) x(n+1) Error Absoluto Respuesta x y=x^3-x-1


0 1 1.5 0 -1
1 1.5 1.34782609 0.152173913 0.2 -1.192
2 1.34782609 1.3252004 0.022625688 0.4 -1.336
3 1.3252004 1.32471817 0.000482225 0.6 -1.384
4 1.32471817 1.32471796 2.1675426E-07 1.32471796 0.8 -1.288
5 1.32471796 1.32471796 4.3742787E-14 1.32471796 1 -1
1.2 -0.472
1.4 0.344
1.6 1.496
1.8 3.032
2 5

5
y=x^3-x-1
4

0
0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2 2.2

-1

-2

You might also like