hello guys, I'm pretty new to mathematica! I'm trying to plot the system of differential equations below:
system = {x' == 1-y , y' == x^2 - y^2, {x,y} , t}
can u please help me with the code? I've tried to solve it numerically with Dsolve like below:
sol = DSolve { y' =(x^2-y^2)/(1-y) , y[0] ==1 , y'[0]==2}
but my mathematica doesn't catch the first part for some reason it just keeps evaluating it to true :\ i would be grateful if u guys could help me with this :)