Python Forum

Full Version: Beginner: System of Equations
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone!

I'm doing my master dissertation and my model includes 10 equations, 10 variables and 9 unknown parameters. I'm going to plot some of those variables and analyse their behavior over time. Might you help me how i can do this?


imagine a simple model like this;


x(t) + 2*y(t)**2 - 5
x(t)**3 - 3*y(t) + 4

How can we plot x and y over time in different figures?

Thanks a lot.
You're writing two mathematical expressions involving two functions x(t) and y(t) but this is not a system of equations because there is no = sign. It is not possible to find x and y without the equations.
(Mar-18-2018, 10:37 PM)Gribouillis Wrote: [ -> ]You're writing two mathematical expressions involving two functions x(t) and y(t) but this is not a system of equations because there is no = sign. It is not possible to find x and y without the equations.

Agreed.