diff --git a/module1/derivative/index.html b/module1/derivative/index.html index c3e8d356..dffe86a8 100644 --- a/module1/derivative/index.html +++ b/module1/derivative/index.html @@ -1920,7 +1920,7 @@

Symbolic Derivativesplot_function("f(x) = sin(2x)", f) -plot_function("f'(x) = cos(2x)", d_f) +plot_function("f'(x) = 2 * cos(2x)", d_f)
def f(x): return math.sin(2 * x) @@ -1931,7 +1931,7 @@

Symbolic Derivatives +plot_function("f'(x) = 2 * cos(2x)", d_f)

@@ -2051,7 +2051,7 @@

Symbolic Derivatives