Page 1 of 1

need help on python hw for physics

Posted: Tue Apr 26, 2022 7:39 pm
by answerhappygod
need help on python hw for physics
Need Help On Python Hw For Physics 1
Need Help On Python Hw For Physics 1 (13.21 KiB) Viewed 37 times
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 ]: