Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. Mder[f_, x_, 0] := f[x]
  2. Mder[f_, x_, 1] := Limit[(f[x + h]/f[x])^(1/h), h -> 0]
  3. Mder[f_, x_, n_Integer /; n > 1] := Nest[Mder[f, x, 1], x, n]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement