diff options
Diffstat (limited to 'tutorials/module_3/2_2_Open_Methods.md')
| -rw-r--r-- | tutorials/module_3/2_2_Open_Methods.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tutorials/module_3/2_2_Open_Methods.md b/tutorials/module_3/2_2_Open_Methods.md index 7502a86..af7d550 100644 --- a/tutorials/module_3/2_2_Open_Methods.md +++ b/tutorials/module_3/2_2_Open_Methods.md @@ -24,6 +24,12 @@ Since $x_0$ is our current guess and $x_0$ is our next guess, we can write these $$ \boxed{x_{i+1} = x_i - \frac{f(x_i)}{f'(x_i)}} \tag{3.1} $$ + +### Interactive Plot +Test the function $f(x)=tan^{-1}(x)$ or $f(x)=$atand$(x)$ +[Interactive graphical render of newton-raphson method](https://www.geogebra.org/m/DGFGBJyU) + +[]() ### Problem 1 From experimental data we extrapolated a function f. Write a python function called *newtonraphson* which as the following input parameters - `f` - function @@ -183,3 +189,5 @@ x= = 1.5 sol, total_iter, root = newton_raphson(g, g_prime, x0) ``` +Extra: +
\ No newline at end of file |
