Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Octave 0.61 KB | None | 0 0
  1. pkg load symbolic
  2. syms y(t)
  3.  
  4. ecuatia1 = diff(y(t), 2) + 3*y(t) == 9
  5. dsolve(ecuatia1)
  6.  
  7. ecuatia2 = diff(y(t), 2) - 5*diff(y(t), 1) == t*e^t
  8. dsolve(ecuatia2)
  9.  
  10. ecuatia3 = diff(y(t), 2) - 2*diff(y(t), 1) + y(t) == 8*e^t
  11. dsolve(ecuatia3)
  12.  
  13. ecuatia4 = 4*diff(y(t), 2) + 11*diff(y(t), 1) - 3*y(t) == -2*t*e^(-3*t)
  14. dsolve(ecuatia4)
  15.  
  16. ecuatia5 = diff(y(t), 2) - y(t) == t*sin(t)
  17. dsolve(ecuatia5)
  18.  
  19. ecuatia6 = diff(y(t), 2) + y(t) == t*sin(t)
  20. dsolve(ecuatia6)
  21.  
  22. ecuatia7 = diff(y(t), 2) + 2*diff(y(t), 1) + 2*y(t) == 4*t*e^(-t)*cos(t)
  23. dsolve(ecuatia7)
  24.  
  25. ecuatia8 = diff(y(t), 2) - 4*y(t) == 8*sin(2*t)
  26. dsolve(ecuatia8)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement