derivative of a function

后端 未结 2 1899
太阳男子
太阳男子 2021-01-30 15:11

I am using D to get derivatives of a function. However, R does not simplify the expression when returning the derivative. I need to figure out if a function has a derivative tha

2条回答
  •  离开以前
    2021-01-30 15:34

    library(Ryacas)
    x <- Sym("x")
    Simplify(deriv(sqrt(1 - x^2),x,2))  # return the result simplified
    

    gives

    expression((x^2 - 1 - x^2)/root(1 - x^2, 2)^3)
    

    You can also try

    PrettyForm(Simplify(deriv(sqrt(1 - x^2),x,2)))
    

    which gives

       2        2  
      x  - 1 - x   
    ---------------
                  3
        /      2 \ 
    Sqrt\ 1 - x  / 
    

    As for numerical integration try giving this to see what is available

    library(sos)
    findFn('{numerical+integration}')
    

提交回复
热议问题