Indefinite Integrals
Nerd Cafe
Example 1:
from sympy import symbols, integrate
x = symbols('x')
integrate(x**2, x)Example 2:
Example 3:
Example 4:
Example 5:
Example 6:
Last updated
Nerd Cafe
from sympy import symbols, integrate
x = symbols('x')
integrate(x**2, x)Last updated
from sympy import symbols, integrate
x = symbols('x')
integrate(3*x**2 + 2*x + 1, x)from sympy import symbols, integrate, sin
x = symbols('x')
integrate(sin(x), x)from sympy import symbols, integrate, cos
x = symbols('x')
integrate(cos(x), x)from sympy import symbols, integrate, exp
x = symbols('x')
integrate(exp(x), x)from sympy import symbols, integrate
x = symbols('x')
integrate(1/x, x)