I want to Plot V(y axis) vs t(x axis) graph using the below equation at 5 different values of L(shown below) L= [5,10,15,20,25] b=0.0032 Equation, (b*V*0.277*t) – (b*L) = log(1+b*V*0.277*t) code output will be as shown in figure Expected Outcome Answer While sympy exposes the plot_implicit function, the results are far from good. We can use Numpy and Matplotlib to
Tag: equation
Sympy gives a residual value when trying to solve the logistics equation
If I try solving the logistics differential equation in Sympy I get a residual value (10^(-13)) which prevents sympy from getting the correct values for the initial coditions. If I run this code: import sympy as sp I get: How can one get rid of these residuals in the solution? Answer Either don’t use Float (use a = Rational(3, 100))