Md_hosen_zisad

Untitled

Nov 6th, 2018
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. E6
  2.  
  3. ource Code :
  4. %differentiation
  5. syms x;
  6. syms y;
  7. syms z;
  8. syms t;
  9. y1=sin(x*t^2);
  10. diff(y1,x)
  11. y2=t^2*cos(t^2*x);
  12. diff(y2,t)
  13. y3=2*x^8*z^9;
  14. diff(y3,z,8)
  15. %integration
  16. syms f;
  17. f1=3/(5*x+2);
  18. int(f1,x)
  19. f2=x*cos(x);
  20. int (f2,x)
  21. f3=x+3;
  22. int(int(f3,y,x^2,x),x,0,1)
  23. f4=x/(1+z^2);
  24. int(f4,x)
  25. int(f4,z)
Add Comment
Please, Sign In to add comment