Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. clear all
  2.  
  3. syms x
  4.  
  5. p3 = diff(1-3*x^2-5*x^3+8*x^4)
  6. p4 = diff(diff(cos(6*x+7)))
  7. p5 = subs(diff(nthroot(1+5*x^2-2*x^3-7*x^4,6)),x,5.8)
  8.  
  9. syms t
  10. p6 = subs(diff((2*(5/(3-(5+t)))),2),t,5.5)
  11. p7 = int((6*x^2+8*x+2)*(cos(5*x+3)))
  12. p8 = int(cos(7*x+6),6,30)
  13.  
  14. syms f(x)
  15. f(x) = (8*x+4+(3/x))
  16. p10 = f(2)+subs(diff(f(x)),3)
  17. p11= (subs(diff(f(x)),-3)-6*(subs((diff(f(x),2)),7)))
  18. p12 = diff((9*x+6)*f(x))
  19. p13 = simplify(int((9*x+8+(8*x+3)*f(x))))
  20.  
  21. g = @(x) 1+4.*x.^2-6.*x.^3-5.*x.^4
  22.  
  23. p15 = simplify((diff(g(x))+(g(7*x+6))))
  24. p16 = subs(diff(g(sin(x))^(1/3),2),x,5)
  25. p17 = int(g(x),0.08,0.27) + int(x*g(8*x+6),0.09,0.40)
  26.  
  27. syms y(t)
  28. p18 = dsolve(diff(y)+(y/t)==(3*t+7+cos(t)))
  29.  
  30. syms h(t)
  31. p19 = dsolve(diff(h(t))+9*cos(t)==h(t),h(5)==0)
  32.  
  33. p20 = fplot(3*x^2+7*x+4)
  34. p21 = 0
  35. for (x = 2:2:536)
  36. p21 = p21 + x;
  37. end
  38. p22 = 1
  39. while (4^p22 < 10^29)
  40. p22 = p22+1;
  41. end
  42. p23 = 21
  43. for (x = 1:1:42)
  44. p23 = p23 + (4^x/13^(x+1));
  45. end
  46. p24 = 7
  47. while (p24 < 199781258)
  48. p24 = p24^4.4 + 7.28;
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement