Non-Linear First Order ODE: Critical Point Linearization

In summary, the conversation discussed determining critical points for a non-linear first order ODE and finding the linearized system for each critical point. It was determined that the critical points occur at (0,0), (1,1), and (-1,1). The Jacobian was used to find the linearization at each point, and the type and stability of each point was determined by finding the eigenvalues. It was concluded that (0,0) is an unstable saddle, (1,1) is a saddle point, and (-1,1) is a stable node.
  • #1
Mike86
5
0

Homework Statement



dx/dt = x - y + (x^2) - xy

dy/dt = -y + (x^2)

- Determine the critical points for the equation,
- Determine the linearized system for each critical point and discuss whether it can be used
to approximate the behaviour of the non-linear system. What is the type and stability of
each critical point?


Homework Equations



Critical points occur when:

dx/dt = 0 and dy/dt = 0

The Attempt at a Solution



Hey guys! First post, hope all goes well and there will me many more to come :)

Ok I am doing this problem and this is the first time I've come across non-linear first order ODE's, usually I have been doing linear ones!

Basically I have established the critical points occur at (0,0) and (1,1).

I am not sure at all how to determine the linearized system for each critical point. I have looked in a couple of textbooks and online but haven't found too much unfortunately.

Any advice on how to go about this step would be great. If anyone knows of a good place to find an worked example of a similar question that would be great too (I have found this is the best way for me to learn, personally works really well for me!)

Thanks in advance :)
 
Physics news on Phys.org
  • #2
dx/dt = x - y + (x^2) - xy
dy/dt = -y + (x^2)

So the critical points are where [itex]x- y+ x^2- xy= 0[/itex] and [itex]-y+ x^2= 0[/itex]. From the second equation, [itex]y= x^2[/itex] and then the first equation becomes [itex]x- x^2+ x^2- x^3[/itex][itex]= x- x^3= x(1- x^2)= x(1- x)(1+ x)= 0[/itex]. x can have three values, 0, 1, and -1.

If x= 0, then, from the second equation, y= 0 so, yes, (0, 0) is a critical point. If x= 1,then, from the second equation, y= 1 so, yes, (1, 1) is a critical point.

But you missed one critical point! Do you see what it is?

The most general way of "linearizing" equations is to look at the Jacobian: if dx/dt= f(x,y) and dy/dt= g(x,y) then the Jacobian is the matrix
[tex]\begin{bmatrix}\frac{\partial f}{\partial x} & \frac{\partial f}{\partial y} \\ \frac{\partial g}{\partial x} & \frac{\partial g}{\partial y}\end{bmatrix}[/tex]

Here, f(x,y)= x - y + (x^2) - xy and g(x,y)= -y + (x^2) so the Jacobian is
[tex]\begin{bmatrix}1+ 2x- y & -1- x\\ -2x & -1\end{bmatrix}[/tex]

At (0, 0) that is
[tex]\begin{bmatrix}1+ 2(0)- 0 & -1- 0 \\-2(0) & -1\end{bmatrix}= \begin{bmatrix}1 & -1 \\ 0 & -1\end{bmatrix}[/tex]
so the linearization of the system of equations is
[tex]\begin{bmatrix} \frac{dx}{dt}\\ \frac{dy}{dt}\end{bmatrix}= \begin{bmatrix}1 & -1 \\ 0 & -1\end{bmatrix}\begin{bmatrix} x \\ y \end{bmatrix}[/tex]
or dx/dt= x- y, dy/dt= -y.
Do the same at the other two points.

In this simple case, since the functions are polynomials we don't need to be that sophisticated. We can argue that, close to 0, higher powers are much smaller than first power terms and drop them:
dropping both [itex]x^2[/itex] and xy from x - y + (x^2) - xy gives x- y and dropping [itex]x^2[/itex] from -y + (x^2) gives -y so that we have dx/dt= x- y and dy/dt= -y as before.

At (1, 1), of course, x and y are not close to 0 but x- 1 and y- 1 are: let u= x- 1 and v= y- 1 so that x= u+ 1 and y= v+ 1. Then [itex]x- y+ x^2- xy=[/itex][itex] u+1- (v+1)+ (u+1)^2- (u+1)(v+1)[/itex][itex]= u+ 1- v- 1+ u^2+ 2u+ 1- uv- u- v- 1[/itex][itex]= u^2- uv+ 2u- 2v[/itex] and [itex]-y+ x^2=[/itex][itex] -(v+1)+ (u+1)^2=[/itex][itex] -v- 1+ u^2+ 2u+ 1= u^2+ 2u- v[/itex]. Now linearize by dropping higher powers of u and v: dx/dt= 2u- 2v= 2(x- 1)- 2(y- 1)= 2x- 2y and dy/dt= 2u- v= 2(x- 1)- (y- 1)= 2x- y+ 1.

But the more "sophisticated" method of evaluating the Jacobian at the point is more general and simpler.
 
Last edited by a moderator:
  • #3
Thank you so much for that!

The other critical point is at (-1, 1). I totally overlooked that one.

I have found an example about non-linear ordinary ODE's and for the point (0,0) they have used the same approach.

I have found the Jacobi matrix for (1,1) and (-1,1), being [2, -2; 2, -1] and [-2, 0; -2, -1] respectively.

Based on these linearizations I am now trying to find the type and stability of each point. For (0,0) it was simple enough. I found the eigenvalues as -1 and 1. And as -1 < 0 < 1, I concluded the critical point is a unstable saddle.

The example I have seen for points away from the origin took a similar approach to finding the linearization. But at one point the example used anti-differentiation.

The approach you used for the linearization of (1,1) is the first time I have see something like that. I understand what you have done but the final step of dropping higher powers kinda confused me.

Also with the final linearization, I am not sure how to establish the type and stability of the point! From your concluded values of dx/dt and dy/dt I can't find a way to establish what type and stability the critical point has. I have graphed the point on Phase Plane and it looks like a stable centre with orbits resembling circles. I just can't see this with the linearization.

Thanks again for that HallsofIvy, appreciate it soo much. I am guessing you are a math teacher or lecturer! :)
 
Last edited:
  • #4
Any ideas? Still stuck on this one :( Thanks!
 
  • #5
The Jacobian is
[tex]\begin{bmatrix}1+ 2x- y & -1- x\\ -2x & -1\end{bmatrix}[/tex]
and at (1, 1) that is
[tex]\begin{bmatrix}2& -2\\ -2 & -1\end{bmatrix}[/tex]

We can determine what kind of point that is by finding the eigenvalues. The characteristic equation is
[tex]\left|\begin{array}{cc}2-\lambda & -2\\ -2 & -1-\lambda\end{array}\right|= (2-\lambda)(-1-\lambda)- 4= \lambda^2- \lambda- 6= (\lambda- 3)(\lambda+ 2)= 0[/tex]
which has roots [itex]\lambda= 3[/itex] and [itex]\lamba= -2[/itex]
Since those are of different sign, (1, 1) is a saddle point- there is an "inflow" along one line and an "outflow" along another.

In fact, we can see that an eigenvector corresponding to eigenvalue 3 is <-2, 1> so the line y= -2x is the "outflow" line. An eigenvector corresponding to eigenvalue -2 is <1, 2> so 2y= x, or y= (1/2)x, is the "inflow" line.

For this particular problem, we could have just looked at the determinant.
[tex]\left|\begin{array}{cc} 2 & -2 \\ -2 & -1\end{array}\right|= (2)(-1)- (-2)(-1)= -2- 4= -6[/tex]
Since that is negative, and the determinant is always the product of the eigenvalues, the eigenvalues are of opposite sign and so we have a saddle point. If the determinant had been positive, we would know that the eigenvalues are of the same sign but would not know if they were both positive (a "source") or both negative (a "sink").

A less sophisticated way of doing that, without using matrices, is to look for "straight line solutions". The linearized equations, around (1, 1) are x'= 2x- 2y and y'= -2x- y. A linear solution would be of the form y= mx. Then y'= mx' so -2x- y= m(2x- 2y).
Since y= mx, that is \(\displaystyle -2x- mx= m(2x- 2mx)\) or \(\displaystyle x(-2- m)= x(2m- 2m^2)\). In order that that be true for all x we must have \(\displaystyle -2- m= 2m- 2m^2\) or \(\displaystyle 2m^2-3m- 2= (2m+1)(m-2)= 0 so m= -1/2 or 2.

That is, linear solutions are y= -(1/2)x and y= 2x, the lines we got from the eigenvectors.

At (2, -1), for example, which is on the line y= -(1/2)x, x'= 2x- 2y= 2(2)- 2(-1)= 4+ 2= 6> 0 and y'= -2x- y= -2(2)- (-1)= -2+ 1= -1< 0 so that x is increasing while y is decreasing- we have motion away from the point.

At (1, 2), which is on the line y= 2x, x'= 2x- 2y= 2(1)- 2(2)= 2- 4= -2< 0 and y'= -2x- y= -2(1)-(2)= -4< 0 so we have motion toward the point. Again, a saddle point.\)
 
Last edited by a moderator:

What is a non-linear first order ODE?

A non-linear first order ODE (ordinary differential equation) is a mathematical equation that describes the relationship between a function and its derivatives, where the derivative is not a linear function of the function itself. This means that the rate of change of the function is not directly proportional to the function itself.

What is a critical point in a non-linear first order ODE?

A critical point in a non-linear first order ODE is a point where the function and its derivative are both equal to zero. At this point, the behavior of the function changes, and it is often used to study the stability of a system.

Why is linearization important in non-linear first order ODEs?

Linearization is important in non-linear first order ODEs because it allows us to approximate the behavior of a non-linear function near a critical point with a simpler linear function. This makes it easier to analyze and solve the equation, as linear equations are generally easier to work with.

What is the process of linearizing a non-linear first order ODE at a critical point?

The process of linearizing a non-linear first order ODE at a critical point involves finding the derivative of the function, evaluating it at the critical point, and then using this value to construct a linear approximation of the function. This is done by using the tangent line to the function at the critical point, which has the same slope as the derivative at that point.

What information can be gained from linearization of a non-linear first order ODE?

Linearization of a non-linear first order ODE can provide insight into the behavior of the function near a critical point, such as whether the point is stable or unstable. It can also help in determining the stability of a system and making predictions about its future behavior.

Similar threads

  • Calculus and Beyond Homework Help
Replies
3
Views
575
  • Calculus and Beyond Homework Help
Replies
2
Views
333
  • Calculus and Beyond Homework Help
Replies
1
Views
301
  • Calculus and Beyond Homework Help
Replies
19
Views
786
  • Calculus and Beyond Homework Help
Replies
5
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
289
  • Calculus and Beyond Homework Help
Replies
4
Views
2K
  • Calculus and Beyond Homework Help
Replies
8
Views
478
  • Calculus and Beyond Homework Help
Replies
12
Views
1K
  • Calculus and Beyond Homework Help
Replies
5
Views
1K
Back
Top