Derivadas Latex PDF

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Derivadas Latex

September 11, 2019

[1]: x , y= sympy.symbols("x y")


[5]: sympy.init_printing(use_unicode=True)
[11]: #Calculo de Derivadas
[12]: sympy.diff(sympy.cos(x), x)
[12]: − sin ( x )
[13]: sympy.diff(5/x**5,x)
[13]: 25

x6
[14]: sympy.diff(sympy.sqrt(x**6 - 1)**1/3,x)
[14]: x5

x6 − 1
[ ]:

You might also like