Compare commits
3 Commits
7927845f17
...
3aad9efb61
Author | SHA1 | Date | |
---|---|---|---|
3aad9efb61 | |||
32d6cfeeea | |||
8d6fe7aca0 |
@ -61,8 +61,8 @@ print(f"Derivative of f1: {df1}")
|
|||||||
# > Derivative of f1: 4x - 3
|
# > Derivative of f1: 4x - 3
|
||||||
|
|
||||||
# 4. Get the 2nd derivative: 4
|
# 4. Get the 2nd derivative: 4
|
||||||
df1 = f1.nth_derivative(2)
|
ddf1 = f1.nth_derivative(2)
|
||||||
print(f"2nd Derivative of f1: {df1}")
|
print(f"2nd Derivative of f1: {ddf1}")
|
||||||
# > Derivative of f1: 4
|
# > Derivative of f1: 4
|
||||||
|
|
||||||
# 5. Find roots analytically using the quadratic formula
|
# 5. Find roots analytically using the quadratic formula
|
||||||
|
@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
[project]
|
[project]
|
||||||
# --- Core Metadata ---
|
# --- Core Metadata ---
|
||||||
name = "polysolve"
|
name = "polysolve"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
authors = [
|
authors = [
|
||||||
{ name="Jonathan Rampersad", email="jonathan@jono-rams.work" },
|
{ name="Jonathan Rampersad", email="jonathan@jono-rams.work" },
|
||||||
]
|
]
|
||||||
|
Reference in New Issue
Block a user