“Python calcule o derivado da função” Respostas de código

Como devolver a derivada de uma função em Python

#This prints the derivative of a function
import sympy as sym
x = sym.Symbol('x')
function = x ** 4 + 7 * x ** 3 + 8
derivitive = sym.diff(function)
print(derivitive)
Tense Tapir

Python calcule o derivado da função

from sympy import Symbol, Derivative

x= Symbol('x')

function= x**4 + 7*x**3 + 8

deriv= Derivative(function, x)
deriv.doit().subs({x:4})

Excited Eel

Respostas semelhantes a “Python calcule o derivado da função”

Perguntas semelhantes a “Python calcule o derivado da função”

Mais respostas relacionadas para “Python calcule o derivado da função” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código