From 703bcff3596433a937d344a60f228be2bf8dce40 Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Fri, 17 Oct 2025 17:16:37 -0600 Subject: Added interactive plots in mod2/open_methods --- tutorials/module_3/2_2_Open_Methods.md | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tutorials/module_3/2_2_Open_Methods.md') 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) + +[![Interactive plot](geogebra-newton-raphson.html)]() ### 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: +![Newton-Raphson in Optimization](https://www.youtube.com/watch?v=W7S94pq5Xuo) \ No newline at end of file -- cgit v1.2.3