- #1
ver_mathstats
- 260
- 21
Python:
import math
def derivative_quotient(f, a, h):
return float((f(a + h) - f(a)) / h)
if h==0:
return "Division by zero is not allowed."
Here is my code so far, I am unsure of where to go from here or if I am even on the right track. I am a little confused what it means by "where f is function from float to float". Any help would be appreciated thank you.