readme-patch #11

Merged
jono merged 2 commits from readme-patch into main 2025-06-17 18:37:50 +00:00
Showing only changes of commit 8d6fe7aca0 - Show all commits

View File

@ -61,8 +61,8 @@ print(f"Derivative of f1: {df1}")
# > Derivative of f1: 4x - 3
# 4. Get the 2nd derivative: 4
df1 = f1.nth_derivative(2)
print(f"2nd Derivative of f1: {df1}")
ddf1 = f1.nth_derivative(2)
print(f"2nd Derivative of f1: {ddf1}")
# > Derivative of f1: 4
# 5. Find roots analytically using the quadratic formula