Skip to content
Advertisement

Tag: equation-solving

System of equations in python symbolically

I want to solve this system symbolically but it didn’t work. where did I make the mistake? and how can I solve it? I get this error Answer You are attempting to solve such an equation: Ax = b. I don’t think you can mix-up command from different libraries like that, there is some compatibility but you should check the

Array input into an equation get array output in Python

I’m a python beginner and I’m trying to solve a cubic equation with two independent variables and one dependent variable. Here is the equation, which I am trying to solve for v: 3pv^3āˆ’(p+8t)v^2+9vāˆ’3=0 If I set p and t as individual values, I can solve the equation with my current code. But what I would like to do is set

Advertisement