Physics Exam  >  Physics Notes  >  Physics for IIT JAM, UGC - NET, CSIR NET  >  Dynamical Systems - 1

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET PDF Download

Definition

Dynamical system is a set of n first-order ordinary differential equations of the form

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET(8.1)
Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

where xa = xa(t) are unknown functions of time, a = 1, 2.......... n and fa are arbitrary differentiable functions of variables xa and possibly of time t. If functions fa do not depend on time explicitly, dynamical system is called autonomous, otherwise it is called non-autonomous. Using the index notation, dynamical system (8.1) can be written briefly in the form

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET        (8.2)

where x stands for the n tuple of variables xa. Autonomous system is then

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

In this notation we suppress time-dependence of xa on time because this dependence is assumed implicitly. Motivated by Hamilton's formalism, we intend to interpret the solution xa = xa(t) as the motion in the phase space. Phase space is an abstract space

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

with coordinates xa. Arbitrary point x ∈ M represents the state of physical system described by equations (8.1). Solution of dynamical system is not unique unless we specify the initial conditions, i.e. values of coordinates xa at some given initial time t0,

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Usually we set t0 = 0. The n−tuple of initial coordinates xa0 will be denoted simply by x0 ∈ M.

Suppose we choose a point x0∈ M at time t0 = 0 as in figure 8.1. A mathematical theorem guarantees that there exists unique solution x = x(t) satisfying (8.1) such that x(0) = x0. The solution x = x(t) is also called the phase trajectory. Equations (8.1) essentially state that vector f(x(t)) evaluated at arbitrary point of the trajectory is in fact tangent to the trajectory, see figure 8.1. Hence, we can interpret vector field f(x) as a velocity. Although it can be very difficult or even impossible to solve the equations of motion (8.1), the velocity gives us a good idea about the behaviour of the system.

 

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Fig. 8.1. Two-dimensional dynamical system of the form Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET. Initial position is at x0 = x(0).
 The "velocity" vector at x0 is f (x0 ) and determines the tra jectory of the system in the in nitesimal neighbourhood of the initial point.


Example

Let us see an illustrating example. We are already familiar with the equation of harmonic oscillator

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

This is a second order equation but we can bring into into the rs-order form by setting

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Then we have

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

and

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

 Hence, instead of single equation Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NETof second order we now have two equations of first order

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET             (8.3)

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Clearly, this is a dynamical system (8.1) if we set f1 = x2 and f2 = x1. Thus, the velocity eld is

f (x1; x2) = (x2; x1)                    (8.4)

This vector eld can be visualised in Mathematica by function VectorPlot:

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Resulting gure is

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

This picture agrees with our previous analysis when we used the conservation of energy to show that the phase tra jectories of harmonic oscillator are circles (or ellipses when using SI units). Another possibility is to use function StreamPlot with the same arguments which yields

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

 

Implementation in Mathematica

In this section we show how to implement a dynamical system in Mathematica in a convenient way.

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

This code deserves a brief explanation. Arguments of the function DynDys are

  • pure function f { this is a vector function representing the right hand side of dynamical system (8.1);
  • initial conditions IC { list of the initial values of variables xa at time t = 0;
  • tmax { upper bound of interval t 2 (0; tmax).
    Hence, function DynSys can be called, e.g. with the arguments

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

In this example, pure function f is

{#2, -#1} &

which is equivalent to

f (x1; x2) = (x2; x1):

Clearly, this corresponds to harmonic oscillator (8.4).

Initial conditions IC are set to

x1(0) = 1; x2(0) = 1

and we want to nd the solution in time interval (0; 10).
Now suppose that we called function DynSys with the arguments above and let us explain how this function works. Thus, we assume that the arguments are

f = {#2, -#1}&
IC = {1, 1}
tmax = 10.

The rst command
vars = Table[ x[a][t], {a, 1, Length[IC]}];
creates a list of variables xa(t) in the form
vars = { x[1][t], x[2][t] }.
The left hand side of equations  Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET is generated simply by calling

lhs = D[vars, t]

which yields

lhs = { x[1]'[t], x[2]'[t] }.

Now we form the right hand side of equations. Recall that vars is the list of variables. We want to evaluate functions fa at point xa, i.e. we need the expression

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

However, we cannot write simply f[vars] because this would mean

f[{x[1][t], x[2][t]}]

while what we need is

f[ x[1][t], x[2][t] ].

Hence, we must turn the list vars into the sequence of arguments by replacing its head. Command

rhs = f[Sequence @@ vars].

leads to correct application of function f to arguments xa:

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Having de ned the left hand side and the right hand side of dynamical system separately, we join them in a usual way,

eqs = Equal @@@ Transpose[ {lhs, rhs} ]

Next we de ne the initial conditions with values speci ed in argument IC={1,1}. We need to produce the list

{ x[1][0] == 1, x[2][0] == 1 }

The left hand side of initial conditions consists of the elements of vars evaluated at time 0,

vars /. t->0,

the right hand side consists of the elements of IC. We con join them together by

inConds = Equal @@@ Transpose[{vars /. t -> 0, IC}];

Finally we solve the list of equations of motion and initial conditions by NDSolve:

NDSolve[Join[eqs, inConds], vars, {t, 0, tmax}].

Now, the reader should be familiar with functionality of function DynSys. We use this function in the following examples.

To nalize this section we show how to use function DynSys to solve the motion of harmonic oscillator.

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

 

Chaotic pendulum 

In the previous chapters we introduced the mathematical pendulum as a simple example of physical system which has only one degree of freedom (angle of de
ection θ) and is described by the Lagrange equation

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

This equations is non-linear because of the presence of the sine. We have seen that this equation cannot be solved in terms of elementary functions but we were able to nd the numerical solution. Moreover, using the Hamiltonian formalism we were able to plot the phase tra jectories without actually solving the equation of motion.

We can generalize the model of mathematical pendulum in several ways. First, any realistic system is dissipative, i.e. there are resisting forces acting against the motion of the pendulum. As an approximation, resisting force is proportional to velocity and has opposite direction. In the case of pendulum, velocity is proportional to θ. and hence equation of pendulum with resisting force has the form

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

where b is the constant characterizing the strength of resisting force. For example, it can be related to the viscosity of the medium in which the pendulum moves.
Pendulum with resisting force is called damped pendulum.

Next we can assume that in addition to restoring gravitational force there is an external force acting on the pendulum. Such force is called driving force. In the presence of driving force, even if the initial velocity of the pendulum is zero (and the pendulum is at equilibrium position), driving force will make the pendulum to move.
Resulting motion of the pendulum will be a "mixture" of two motions: periodic motion due to self-oscillations of the pendulum, and motion due to driving force.
Pendulum with the driving force, driven pendulum with the friction is described by equation

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET (8.5)

where we assume that driving force is harmonic with angular frequency Ω and amplitude F0. In the subsequent analysis we will show that this kind of pendulum exhibits chaotic behaviour and hence we also call it chaotic pendulum.

We start with rewriting equation (8.5) in the form of dynamical system. This is straightforward since we can de ne

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

We will freely pass from notation (θ, p; φ) to equivalent notation (x1, x2, x3) according to the context. By de nition, variable φ satis es equation

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

while variable p (which is clearly related to the momentum of the pendulum) was de ned by

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

which can be consequently regarded as an equation for θ. The only true dynamical equation is an equation for p which follows from (8.5):

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Thus, variables (x1, x2, x3) = (θ, p; φ) are determined by dynamical system

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET (8.6)

supplemented with initial conditions, i.e. values of xa at time t = 0.

Dynamical system (8.6) can be solved in Mathematica using function DynSys de ned in the previous section. We choose initial conditions

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

and investigate how values b, Ω and F0 affect the behaviour of the pendulum. First we set 

b = 0,  F0 = 0, Ω = 0.

So, we reduce driven pendulum to the case of ordinary mathematical pendulum without friction and driving force (damping coeffcient b = 0 and the amplitude of the force is F= 0).

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Here we have chosen tmax = 10 but the reader should adjust this parameter in order to reproduce all gures below. Now we can plot the phase tra jectory in a usual way.

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

 

Let us add the friction now and set
b = 0.1,
see gure 8.2 for the result. We can see that the phase tra jectory is a spiral which, in the limit  Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET ends at the origin of the phase plane. This means that the oscillations are damped until the pendulum stops. Slightly more "fancy" picture can be obtained by

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

which results in gure 8.3.

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Fig. 8.2. Parameters b = 0.1, F0 = 0. Non-zero friction leads to damped oscillations of the pendulum.

 

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Fig. 8.3. Phase tra jectory of damped pendulum together with the time dependence of deection θ = θ(t).

Let us see how the driving force affects the motion. For this purpose we set

b = 0, F= 1, Ω = 2, and choose the initial conditions to

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

In other words, the pendulum is initially at its equilibrium position and, hence, without driving force it would stay at rest. However, the presence of driving force leads to solution plotted in gure 8.4.

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Fig. 8.4. Motion of the pendulum without friction under the external driving force with amplitude F= 1 and angular frequency Ω = 2. Initial position of the pendulum is θ (0) = p(0) = 0.

In the following example we choose

b = 1, F0 = 1, Ω  = 1, 

see gure 8.5. An interesting feature of this solution is the presence of short transient stage during which the phase tra jectory follows outgoing spiral but then settles at circular periodic orbit. Such behaviour is called limit cycle.

To experiment with values of parameters b, F0 and Ω and with initial values θ(0), p(0) and φ(0). We can see that resulting motion of the pendulum is a consequence of complicated and delicate interplay between three motions:

Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET   Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET

Fig. 8.5. Motion of the pendulum with friction (b = 1) under the external driving force with amplitude F0 = 1 and angular frequency Ω = 1. Initial position of the pendulum is θ(0) = p(0) = 0.

  •  self-oscillations of the pendulum;
  • resisting force (friction);
  • external driving force.

While for some combinations of parameters the motion is perfectly understandable (like in the absence of the friction and the driving force or in the absence of driving force but in the presence of friction), for general values the motion is unpredictable, chaotic.

The document Dynamical Systems - 1 | Physics for IIT JAM, UGC - NET, CSIR NET is a part of the Physics Course Physics for IIT JAM, UGC - NET, CSIR NET.
All you need of Physics at this link: Physics
158 docs

FAQs on Dynamical Systems - 1 - Physics for IIT JAM, UGC - NET, CSIR NET

1. What is a dynamical system in physics?
A dynamical system in physics refers to a system that evolves over time according to a set of mathematical equations. These equations describe the motion and behavior of the system's variables, such as position, velocity, and acceleration. The study of dynamical systems allows us to analyze and understand the complex behaviors and patterns that arise in various physical phenomena.
2. How are dynamical systems used in physics?
Dynamical systems are used in physics to model and analyze a wide range of phenomena, from celestial mechanics to fluid dynamics. By formulating the equations that govern the evolution of a system, physicists can make predictions about its future behavior and study its stability, periodicity, and chaotic dynamics. Dynamical systems theory provides a powerful framework for understanding the fundamental principles underlying physical systems.
3. What are some examples of dynamical systems in physics?
There are numerous examples of dynamical systems in physics. Some common ones include the motion of celestial bodies, such as planets orbiting around the Sun, the behavior of pendulums, the flow of fluids in pipes or rivers, and the vibrations of atoms in a crystal lattice. These systems can exhibit a wide range of behaviors, from simple periodic motion to chaotic and unpredictable dynamics.
4. What is the difference between linear and nonlinear dynamical systems?
The main difference between linear and nonlinear dynamical systems lies in the nature of their mathematical equations. In linear systems, the equations describing the system's evolution are linear, which means that the variables appear only to the first power and do not multiply or divide each other. Nonlinear systems, on the other hand, have equations that can involve products, powers, or other nonlinear functions of the variables. Nonlinear systems often exhibit more complex and interesting behaviors, including chaos.
5. How can chaos arise in dynamical systems?
Chaos can arise in dynamical systems due to sensitive dependence on initial conditions, also known as the butterfly effect. In chaotic systems, even small differences in the starting conditions can lead to drastically different outcomes over time. This sensitivity to initial conditions can cause the system's behavior to become unpredictable and seemingly random. Chaos theory, a branch of dynamical systems theory, studies and characterizes these complex and chaotic behaviors.
158 docs
Download as PDF
Explore Courses for Physics exam
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

UGC - NET

,

CSIR NET

,

Exam

,

mock tests for examination

,

Important questions

,

ppt

,

past year papers

,

Free

,

Extra Questions

,

video lectures

,

Dynamical Systems - 1 | Physics for IIT JAM

,

pdf

,

UGC - NET

,

Semester Notes

,

UGC - NET

,

Previous Year Questions with Solutions

,

Dynamical Systems - 1 | Physics for IIT JAM

,

Objective type Questions

,

CSIR NET

,

MCQs

,

practice quizzes

,

shortcuts and tricks

,

Summary

,

Viva Questions

,

Dynamical Systems - 1 | Physics for IIT JAM

,

study material

,

CSIR NET

,

Sample Paper

;