Guest User

Untitled

a guest
Dec 13th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. L = m (z'[t]^2)/2 - m g z[t]
  2.  
  3. D[D[L, z'[t]],t] - D[L,z[t]] == 0
  4.  
  5. g m + m z''[t] == 0
  6.  
  7. L = m (x'[t]^2 + y'[t]^2) / 2;
  8. MapThread[Function[{q, v, h}, D[D[L,v],t] - D[L,q] == h],
  9. {{x[t], y[t]}, {x'[t], y'[t]}, {fx[t], fy[t]}}]
  10.  
  11. {m x''[t] == fx[t], m y''[t] == fy[t]}
  12.  
  13. D[exp[t]^2 / 2, exp[t]]
  14.  
  15. exp[t]
  16.  
  17. D[Exp[t]^2 / 2, Exp[t]]
  18.  
  19. General: Exp[t] is not a valid variable.
Add Comment
Please, Sign In to add comment