Using the following code in Mathematica, we were able to obtain a picture of the flow, along with two invariant lines. The roots are located at $ y=( 1 \pm \sqrt[5] \div(2) -1$
$\sqrt[3]{x+y}$
Needs["VectorFieldPlots`"];
A1 = VectorFieldPlot[{x + y, x}, {x, -1, 1}, {y, -1, 1},
PlotPoints -> 20, ScaleFactor -> 0.2, Axes -> True];
A2 = Plot[(1 + (Sqrt[5]/2) – 1)*x, {x, -1.5, 1.5}];
A3 = Plot[(1 - (Sqrt[5]/2) – 1)*x, {x, -1.5, 1.5}];
Show[A1, A2, A3]
While examining the next equation:
We were able to determine the Eigen values and obtain a picture of the flow for randomly defined variables along the range .
a = RandomInteger[{-5, 5}]
b = RandomInteger[{-5, 5}]
c = RandomInteger[{-5, 5}]
d = RandomInteger[{-5, 5}]
MatrixForm[{{a, b}, {c, d}}]
VectorFieldPlot[{a*x + b*y, c*x + d*y}, {x, -1, 1}, {y, -1, 1},
PlotPoints -> 20, ScaleFactor -> 0.2, Axes -> True]
Eigenvalues[{{a, b}, {c, d}}]
0
3
4
-3
( 0 3 )
( 4 -3)
{1/2 (-3 – Sqrt[57]), 1/2 (-3 + Sqrt[57])}


Posted by jhutch737 





