Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. In[8]:= f[u_] := D[g[u], u]
  2.  
  3. In[9]:= f[u]^2 == 4 g[u]^3 - a*g[u] - b
  4.  
  5. Out[9]= Derivative[1][g][u]^2 == -b - a g[u] + 4 g[u]^3
  6.  
  7. In[10]:= FullSimplify[f'''[u]/f'[u] - 1.5 f''[u]^2/f'[u]^2]
  8.  
  9. (
  10. !(*SuperscriptBox[(g),
  11. TagBox[
  12. RowBox[{"(", "4", ")"}],
  13. Derivative],
  14. MultilineFunction->None])[u] (g^[Prime][Prime])[u] - 1.5
  15. !(*SuperscriptBox[(g),
  16. TagBox[
  17. RowBox[{"(", "3", ")"}],
  18. Derivative],
  19. MultilineFunction->None])[u]^2)/(g^[Prime][Prime])[u]^2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement