How do I Linearize

1.7k Views Asked by At

How would I solve the following problem?

Linearize around the fixed points

$$\left\{\begin{align}\frac{\text{d}x}{\text{d}t}&=y-x^2\\\frac{\text{d}y}{\text{d}t}&=y-x\end{align}\right.$$

I tried taking the derivative of each, and then I am stuck and Taylor expansion.

2

There are 2 best solutions below

1
On BEST ANSWER

Question Updated

You need simultaneous zeros for $x' = y' = 0$.

From the second equation, we have $y = x$, sub back into first and we have:

$$x(1 - x) = 0 \implies x = 0, 1$$

Now find the two $y$ values, which are $y = 0, 1$.

So, we have two critical points as:

$$(x, y) = (0, 0), (1, 1)$$

Try those in each equation and verify that you get zero for each one.

Next, find the eigenvalues of the Jacobian matrix for each critical (fixed) point. We have:

$$J(x,y) = \begin{bmatrix} \frac{\partial x'}{\partial x} & \frac{\partial x'}{\partial y} \\ \frac{\partial y'}{\partial x} & \frac{\partial y'}{\partial y} \end{bmatrix} = \begin{bmatrix} -2x & 1 \\ -1 & 1 \end{bmatrix}$$

Do you see what the linearized system is now?

Now, evaluate the eigenvalues of $J(0,0)$ and $J(1,1)$.

For $J(0,0)$, we get $\lambda_1 = (-1)^{1/3},~ \lambda_2 = -(-1)^{2/3}$.

For $J(1,1)$, we get $\lambda_1 = \dfrac{1}{2}(-1 - \sqrt{5}),~ \lambda_2 = \dfrac{1}{2}(-1 + \sqrt{5})$.

Update 2

To find the linear approximation to the function $f(x)$ near a point $x^*$, we make use of Taylor’s theorem:

$$f(x) ≈ f(x^∗) + f′(x^∗)(x − x^∗).$$

There is a similar version of this theorem for functions depending on two variables. Indeed,

$$F(x, y) ≈ F(x^∗, y^∗) + \dfrac{\partial F}{\partial x}(x^∗,y^∗)(x − x^∗) + \dfrac{\partial F}{\partial y} (x^∗, y^∗)(y − y^∗).$$

At a critical point, $F(x^∗, y^∗) = 0 = G(x^∗, y^∗)$. So the linear approximation is:

$$ \begin{bmatrix} x \\ y \end{bmatrix}' = \begin{bmatrix} \dfrac{\partial F}{\partial x} (x^∗, y^∗) & \dfrac{\partial F}{\partial y} (x^∗, y^∗) \\ \dfrac{\partial G}{\partial x} (x^∗, y^∗) & \dfrac{\partial G}{\partial y} (x^∗, y^∗) \end{bmatrix} \begin{bmatrix} x-x^* \\ y-y^* \end{bmatrix}$$

We can clean this up a little if we set $u = x − x^∗$ and $v = y − y^∗$. Then the linearization near $(x^∗, y^∗)$ becomes:

$$ \begin{bmatrix} u \\ v \end{bmatrix}' = \begin{bmatrix} \dfrac{\partial F}{\partial x} (x^∗, y^∗) & \dfrac{\partial F}{\partial y} (x^∗, y^∗) \\ \dfrac{\partial G}{\partial x} (x^∗, y^∗) & \dfrac{\partial G}{\partial y} (x^∗, y^∗) \end{bmatrix} \begin{bmatrix} u \\ v \end{bmatrix} = J\begin{bmatrix} u \\ v \end{bmatrix}$$

Notes: this is exactly what was derived above!

Notes: Do the calculations and make sure you get the same result, here are the intermediate calculations.

  • $\dfrac{\partial F}{\partial x} = -2x$
  • $\dfrac{\partial F}{\partial y} = 1$
  • $\dfrac{\partial G}{\partial x} = -1$
  • $\dfrac{\partial G}{\partial y} = -1$
  • $(x^*, y^*) = (0, 0), (1, 1)$

Here are some Nonlinear Differential Equations, Section 3.2 on the Taylor approach for another perspective and for you to follow along with.

0
On

You need to find the Jacobian matrix, which is the first term of the Taylor expansion.

$$A(x,y) = \begin{bmatrix} \frac{\partial f_1}{\partial x} & \frac{\partial f_1}{\partial y} \\ \frac{\partial f_2}{\partial x} & \frac{\partial f_2}{\partial y} \end{bmatrix} = \begin{bmatrix} a - by - 2e & -bx \\ cy & -f + cx \end{bmatrix}$$

Now, you need to put the fixed points in $A(x,y)$ to obtain a linear dynamical system around each fixed point as $\dot{z}_i = A(x_i^*, y_i^*) z_i$ where $(x_i^*, y_i^*)$ is $i$th fixed point and $z = \begin{bmatrix} x & y \end{bmatrix}^T$.