need help on python hw for physics
Posted: Tue Apr 26, 2022 7:39 pm
need help on python hw for physics
Problem 3 a) Using Sympy, find the factors of f(x) = x - 13x + 12 b) Find F(X), the integral of f(x), using Sympy C) Find the lambdification of F(x) and plot from -4 to 3 d) Find the exact area of f(x) from -4 to 3 using F(x). Check the results against the graph. +]: from sympy import * X=symbols('x') f=x**3-13*x+12 ]:
Problem 3 a) Using Sympy, find the factors of f(x) = x - 13x + 12 b) Find F(X), the integral of f(x), using Sympy C) Find the lambdification of F(x) and plot from -4 to 3 d) Find the exact area of f(x) from -4 to 3 using F(x). Check the results against the graph. +]: from sympy import * X=symbols('x') f=x**3-13*x+12 ]: