Unbounded Solutions for Coupled First Order ODEs

dirk_mec1
Messages
755
Reaction score
13

Homework Statement



<br /> \dot{x}= \cos(t) x_1 +\sin(t) x_2 <br />

<br /> \dot{y}= \sin(t) x_1 - \cos(t) x_2 <br />

Show that the solutions are unbounded.


The Attempt at a Solution


I tried to find the explicit solution (by hand) but I failed numerous times. What is the right course of action I should take in solving this question?
 
Physics news on Phys.org
Your system of equations can be represented in matrix form as
\dot{X} = AX
The usual technique involves finding a diagonal matrix D, such that D = P^(-1)AP, and where the columns of P are the eigenvectors of A, and the entries on the diagonal of D are the eigenvalues of A. The process of diagonalization to solve a system of linear DEs is too involved for me to describe it all right here, but presumably you have seen it discussed in your class.

One thing to note about the matrix that comes out of your system of equations: the matrix A of coefficients of x_1 and x_2 causes a rotation by an angle -t. An eigenvector of a matrix A is a vector x such that Ax = \lambdax. In other words, multiplying an eigenvector x produces another vector that is merely a scalar multiple of x. Due to the fact that your matrix A is a rotation matrix, I don't see how Ax can produce a vector that is a scalar multiple of x, for arbitrary rotation angles t.
 
I think you can solve it using MATLAB...

you have a built in function ode45 in which we can give the functions and boundary conditions

another way is using Runge kutta method ...
 
madhavhmk said:
I think you can solve it using MATLAB...

you have a built in function ode45 in which we can give the functions and boundary conditions

another way is using Runge kutta method ...

No, I have to do it via hand calculations.
 
dirk_mec1 said:

Homework Statement



<br /> \dot{x}= \cos(t) x_1 +\sin(t) x_2 <br />

<br /> \dot{y}= \sin(t) x_1 - \cos(t) x_2 <br />

Notice that the responders are assuming you mean
<br /> \dot{x_1}= \cos(t) x_1 +\sin(t) x_2 <br />

<br /> \dot{x_2}= \sin(t) x_1 - \cos(t) x_2 <br />
 
Mark44 has told you how to do this. It's easy to show that the eigenvalues of the coefficient matrix are negative for all t.
 
Yes, you're right, the y must be an x2. Moreover if the eigenvalues are negative then the solutions are bounded.
 
Back
Top