Exercises

Use the Maple diff command to compute the first and second derivatives of the following expressions.

  1.             eq1 := (x^2 → - exp(5*x^2) * x - 23)/(x^3 → -x^2 → + 8*x - 10)
                diff(eq1, x)
                diff(eq1, x$2)      
              
  2.             eq2:=exp(x)*x^6 → -(2/x) + 4x^2 → - ln(x)
                diff(eq2, x)
                diff(eq2, x$2)
              
  3.             eq3 := x / sin(x) * ln(x)
                diff(eq3, x)
                diff(eq3, x$2)