Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. In[136]:= Table[
  2. With[{z = InverseFunction[f][x]},
  3. BellY[Table[{Pochhammer[n, j]/
  4. Derivative[1][f][
  5. z], -Derivative[j + 1][f][
  6. z]/((j + 1) Derivative[1][f][z]^(j + 1))}, {j, n - 1}]] -
  7. D[z, {x, n}] // Simplify], {n, 2, 6}]
  8.  
  9. Out[136]= {0, 0, 0, 0, 0}
  10.  
  11. In[137]:=
  12. With[{p = 4, z = InverseFunction[f][x]},
  13. Sum[Derivative[m][g][z] BellY[p, m,
  14. Table[If[k == 1, 1/Derivative[1][f][z],
  15. BellY[Table[{Pochhammer[k, j]/
  16. Derivative[1][f][
  17. z], -Derivative[j + 1][f][
  18. z]/((j + 1) Derivative[1][f][z]^(j + 1))}, {j,
  19. k - 1}]]], {k, p}]], {m, 1, p}] - (D[
  20. g[z], {x, p}])] // Expand
  21.  
  22. Out[137]= 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement