Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Clear[f]
  2. f[x_] := x^3 + x^(1/3)
  3.  
  4. Plot[
  5. Evaluate@Table[D[f[x], {x, i}], {i, 0, 3}], {x, 1, 10},
  6. PlotLegends -> "Expressions", PlotTheme -> "Scientific",
  7. PlotLabel -> "f(x)=x^3+ x^(1/3) function and derivativesn"
  8. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement