diff --git a/README.md b/README.md index 9e23206..5ac3b87 100644 --- a/README.md +++ b/README.md @@ -149,3 +149,18 @@ ylabel('height (m)') print('figure01','-dpng') ``` ![Plot showing the final shape of the powerline](./figures/figure01.png) + +#Problem 3 + +``` +### Divergence of Newton-Raphson Method + +| iteration | x_i | approx error | +| --- | --- | --- | +| 0 | 3 | n/a | +| 1 | 3.2857 | 8.6957 | +| 2 | 3.5276 | 6.8573 | +| 3 | 3.7422 | 5.7348 | +| 4 | 3.9375 | 4.9605 | +| 5 | 4.1182 | 4.3873 | +```