Warning! It seems that you are using Dodona within another webpage, so not everything may work properly. Let your teacher know so that he can solve the problem by adjusting a setting in the learning environment. In the meantime, you can click this link to open Dodona in a new window.
def afgeleide( a, f, delta ):
h = 2
benadering_oud =
h /= 2
benadering =
i = 1
print("In iteratie", i, "is de benadering:", round(benadering, 15))
while and i < :
i = i + 1
benadering_oud =
h = h / 2
benadering = (f(a + h) - f(a)) / h
print("In iteratie", i, "is de benadering:", round(benadering, 15))
if :
return "Niet afleidbaar in dit punt"
else:
return benadering
You can submit as many times as you like. Only your latest submission will be taken into account.