From 1b0b152ccdcb8a953197ae67adc5c202c84c270b Mon Sep 17 00:00:00 2001 From: Jie Luo <65482183+Livinfly@users.noreply.github.com> Date: Tue, 11 Mar 2025 07:26:22 +0000 Subject: [PATCH 1/2] fix: module1/derivative, derivative of 'sin(2x)' is '2 * cos(2x)' --- module1/derivative/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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