Provide third order Taylor expansion of stable manifold near a saddle point in a dynamical system.

287 Views Asked by At

Given this dynamical system: $$\begin{cases}x'=-4y+4y^3\\y'=-4x\end{cases}$$

I have seen that the system has a saddle at $(0,0)$. Now I am asked to approximate (using a third order Taylor expansion) the equation of the stable manifold near this point. I know that what I have to do is analogous to what the user @John B answered here. However my case is more complicated since I can't solve the system required to know the coefficients $a,b,...$

If I take $\varphi(x)=a+bx+cx^2+dx^3+\cdots$ then I get the relations $$-4ba+4ba^3=0\\-4=-4b^2+12a^2b^2-8ca+8ca^3\\ 0=-4bc+12a^2cb+12ab^3-8cb+24a^2b^2c-12da+12da^3 \\...$$

My problem is that every time I add a new relation a new coefficient appears, having always one more variable than equations in the system. How can I solve it?

1

There are 1 best solutions below

7
On BEST ANSWER

$$\begin{cases}\frac{dx}{dt} =-4y+4y^3\\\frac{dy}{dt}=-4x\end{cases}$$ $$\frac{dy}{dx}=\frac{x}{y-y^3}$$ This ODE is separable and then integrable which leads to : $$y(x)=\pm\sqrt{1\pm\sqrt{C-2x^2}}$$ Since in the wording of the question the point $(0,0)$ is mentioned as belonging to the solution, this condition implies $C=1$ and : $$y(x)=\pm\sqrt{1-\sqrt{1-2x^2}}$$ Series expansion around $(0,0)$ : $$y(x)=\pm\left(x+\frac14 x^3+\frac{7}{32}x^5+...\right)$$

Nevertheless, the above calculus is probably not the expected method. $$ $$

OTHER METHOD : A series of the form $y(x)=a_0+a_1x+a_2x^2+a_3x^3+...$ is expected.

Preliminary inspection of $\frac{dy}{dx}=\frac{x}{y-y^3}=\frac{x}{y}\:\frac{1}{(1-y^2)}$ makes understand that $y(x)$ is an odd function. Thus : $$y(x)=a_1x+a_3x^3+...$$ $$\frac{dy}{dx}=a_1+3a_3x^2+...=\frac{x}{ (a_1x+a_3x^3+...)-(a_1x+a_3x^3+...)^3}$$ $$-x+(a_1+3a_3x^2+...)\big((a_1x+a_3x^3+...)-(a_1x+a_3x^3+...)^3 \big)=0$$ $$(a_1^2-1)x+(4a_1a_3-a_1^4)x^3+...=0$$ $$\begin{cases} a_1^2-1=0 \quad\implies\quad a_1=\pm 1\\ 4a_1a_3-a_1^4=0 \quad\implies\quad a_3=\frac{a_1^3}{4} \end{cases}$$ $$y(x)=a_1\big(x+\frac14a_1^2 x^3+...\big)$$ $$y(x)=\pm\big(x+\frac14 x^3+...\big)$$