From d27497488fc4276eb4e8fb421fbe974ffd0899df Mon Sep 17 00:00:00 2001 From: Jonathan Rampersad Date: Tue, 17 Jun 2025 14:30:40 -0400 Subject: [PATCH] fix: differential in README.md renamed to derivative --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f85aba5..7f2d943 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ print(f"Value of f1 at x=5 is: {y_val}") # > Value of f1 at x=5 is: 30.0 # 3. Get the derivative: 4x - 3 -df1 = f1.differential() +df1 = f1.derivative() print(f"Derivative of f1: {df1}") # > Derivative of f1: 4x - 3