A system that does not explicitly contain dependence on the independent variable (say t) is called autonomous. An example is
| |
(19) |

![]()
![]()

![]()
![]()
![]()
Definition 1
An equilibrium solution or critical point of
the autonomous system (1.21) is a constant vector
such that
.
We are interested in stability properties of critical points; i.e., if we perturb the solution slightly from an equilibrium position, does it stay close or wander away?
Example 5
: Pendulum.
From Newton's law, we have the rate of change of angular momentum equal
to the torque. That is,
, or
![]()
![]()

For 2-D systems, it is convenient to study the phase plane, the
x1-x2 plane where:
given
, we plot trajectories on an
plane, or
given the system

A phase vector diagram shows tangent vectors to the trajectories in the x1-x2 plane. Below is a figure showing a phase vector diagram for the example
![]()
On Matlab, try:
[x,y]=meshgrid(-3:0.475: 3, -3:0.475:3);
z1=x+y;
z2=-4*x+y;
quiver(x,y,z1,z2)
grid
On Mathematica, try:
Needs["Graphics `PlotField`"]
PlotVectorField[{ x+y, -4*x+y}, {x, -3,3 }, { y,-3,3},
Axes
True, Ticks
None, Frame
True,
AspectRatio
1]
We can add ScaleFunction
(1&) inside the square brackets
to scale the vectors to unit length.
Basic properties of phase plane diagrams for
,
, x1(0)=a, x2(0)=b.
1. Existence. There is a trajectory through each point (a,b) on the plane.
2. If F and G are smooth functions,
we get uniqueness of the solution. Two trajectories through the
same point are translations (in time)
of each other. That is, if
,
passes through (a,b) at t=t0, and another trajectory
passes through (a,b) at t=t1, then because the solution to each
problem is unique, one solution is a translation of the other.
3. A trajectory may not cross itself. A trajectory can be a closed curve
for periodic solutions.
If, on the other hand, the system is non-autonomous,
,
, there can be different tangent
vectors
going through (x1, x2) for different
t and there is the possibility of cross-overs in the phase trajectory
plot. An example is
which has the solution
. This
solution exhibits the same value of x for different values of t.
For instance x=c for
and
, but
and
are not translations of each other. This
type of behavior means that you can have 2D chaos in non-autonomous systems,
but not for autonomous systems. The property that trajectories cannot cross
for 2D autonomous systems is a powerful tool for establishing the existence
of periodic solutions (Poincaré-Bendixson theory).