Advertisement
FelipeNeto2

CADERNO 1(maple)

Aug 1st, 2019
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. 1)
  2. a)
  3. > (20-5*sqrt(6))/(pi-1);
  4. print(`output redirected...`); # input placeholder
  5. (1/2)
  6. 20 - 5 6
  7. -------------
  8. pi - 1
  9. b)
  10. > (1/3-4/7)/(3*exp(1)+2*pi);
  11. print(`output redirected...`); # input placeholder
  12. 5
  13. - --------------------
  14. 21 (3 exp(1) + 2 pi)
  15. 2)
  16. a)
  17. > x^4+3*x^3+sqrt(x+3)+1;
  18. print(`output redirected...`); # input placeholder
  19. 4 3 (1/2)
  20. x + 3 x + (x + 3) + 1
  21. b)
  22. > (3*x^5-7*x^3)/(exp(x)+3/x);
  23. print(`output redirected...`); # input placeholder
  24. 5 3
  25. 3 x - 7 x
  26. -----------
  27. 3
  28. exp(x) + -
  29. x
  30. 2)
  31. > expand((y^3+5)^2*(2*y-1)^3);
  32. print(`output redirected...`); # input placeholder
  33. 9 8 7 6 5 4 3 2
  34. 8 y - 12 y + 6 y + 79 y - 120 y + 60 y + 190 y - 300 y + 150 y - 25
  35. 3)
  36. > expand((y+x*(y+z))^3);
  37. print(`output redirected...`); # input placeholder
  38. 3 3 2 2 3 2 2 2 2 3 3 3 2
  39. y + 3 x y + 3 y x z + 3 x y + 6 x y z + 3 y x z + x y + 3 x y z
  40.  
  41. 3 2 3 3
  42. + 3 x y z + x z
  43. 4)
  44.  
  45. > simplify((y^2-25)^2/(y-5));
  46. print(`output redirected...`); # input placeholder
  47. / 2 \
  48. (y + 5) \y - 25/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement