Use a given iterative formula with a specified starting value to find a root to a stated accuracy, where the iteration is a standard fixed point iteration on an algebraic/transcendental equation.
45 questions · Moderate -0.4
| C | D | E | |
| 4 | \(r\) | \(\mathrm { x } _ { \mathrm { r } }\) | \(\mathrm { f } \left( \mathrm { x } _ { \mathrm { r } } \right)\) |
| 5 | 0 | - 1 | - 0.4707963 |
| 6 | 1 | - 0.8 | - 0.0272952 |
| 7 | 2 | - 0.787691 | - 0.0193610 |
| 8 | 3 | - 0.7576546 | - 0.0020574 |
| 9 | 4 | - 0.7540834 | - 0.0001740 |
| 10 | 5 | ||
| 11 | 6 |
| \(r\) | \(\mathrm { x } _ { \mathrm { r } }\) | difference | ratio |
| 0 | 0 | ||
| 1 | -0.841471 | -0.84147 | |
| 2 | -0.287798 | 0.553673 | -0.65798 |
| 3 | -0.793885 | -0.50609 | -0.91405 |
| 4 | -0.361379 | 0.432507 | -0.85461 |
| 5 | -0.763945 | -0.40257 | -0.93078 |
| 6 | -0.404459 | 0.359486 | -0.89299 |
| 102 | -0.596302 | 0.004626 | -0.95886 |
| 103 | -0.600738 | -0.00444 | -0.95911 |
| 104 | -0.596484 | 0.004254 | -0.95887 |
| 105 | -0.600564 | -0.00408 | -0.95910 |
| 106 | -0.596652 | 0.003912 | -0.95888 |
| 107 | -0.600404 | -0.00375 | -0.95909 |
| 108 | -0.596806 | 0.003598 | -0.95889 |
| \(r\) | \(\mathrm { x } _ { \mathrm { r } }\) | difference | ratio |
| 0 | 0 | ||
| 1 | |||
| 2 | |||
| 3 | |||
| 4 | -0.000192 | ||
| 5 | \(- 1.99 \times 10 ^ { - 7 }\) | 0.00103 | |
| 6 | \(- 1.82 \times 10 ^ { - 10 }\) | 0.000914 |
| \(r\) | difference | ratio |
| 0 | ||
| 1 | - 0.1834898 | |
| 2 | - 0.0049137 | 0.02678 |
| 3 | \(- 6.44 \mathrm { E } - 06\) | 0.00131 |
| 4 | \(- 3.862 \mathrm { E } - 09\) | 0.0006 |
| 5 | \(- 2.313 \mathrm { E } - 12\) | 0.0006 |
| \(r\) | \(\mathrm { x } _ { \mathrm { r } }\) |
| 0 | 0.5 |
| 1 | - 0.40343 |
| 2 | \#NUM! |
| LINE 10 | INPUT \(X\) |
| LINE 20 | LET \(K = 1\) |
| LINE 30 | LET \(Y = \left( X ^ { * } X + 16 \right) / \left( 2 ^ { * } X \right)\) |
| LINE 40 | PRINT \(Y\) |
| LINE 50 | LET \(X = Y\) |
| LINE 60 | LET \(K = K + 1\) |
| LINE 70 | IF \(K = 4\) THEN GO TO LINE 90 |
| LINE 80 | GO TO LINE 30 |
| LINE 90 | STOP |