How can I sketch the stable and unstable manifolds of the system $$u'=v$$ $$v' = 2u-u^3-v$$?
I know the definitions of the stable and unstable manifold, but I have no Idea how to even begin sketching it. Any help is appreciated.
How can I sketch the stable and unstable manifolds of the system $$u'=v$$ $$v' = 2u-u^3-v$$?
I know the definitions of the stable and unstable manifold, but I have no Idea how to even begin sketching it. Any help is appreciated.
A small MATHEMATICA script to draw the unstable manifold which is located along a section of
$$ v \approx -2u +\frac{u^3}{7}+\frac{3u^5}{539} $$
n = 5;
V = Sum[a[k] U^k, {k, 1, n}];
res = D[V, U] V - 2 U + U^3 + V;
equs = CoefficientList[res, U];
sola = Solve[equs == 0, Table[a[k], {k, 1, n}]][[1]];
V0 = V /. sola
gr1 = StreamPlot[{v, 2 u - u^3 - v}, {u, -3, 3}, {v, -3, 3}];
gr2 = Plot[V0, {U, -1, 1}, PlotStyle -> {Thick, Red}];
Show[gr1, gr2]