3rd order homogeneous Linear ODE matrix transformation-how to write the answer

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 3K views
pat666
Messages
703
Reaction score
0
3rd order homogeneous Linear ODE matrix transformation---how to write the answer

Homework Statement



Transform this 3rd order homogeneous linear ODE with constant coefficients using matrix notation.
[tex] y'''+7y''+6y'+3y=0[/tex]

Homework Equations


The Attempt at a Solution


My answer is
[tex]x'=AX[/tex]
[tex]x=[x_1,x_2,x_3]^T[/tex]
[tex]A=Mat[[1,0,0][0,1,0][-7,-6,-3]][/tex]

x'=
(x_1)
(x_2)
(-7x_1-6x_2-3x_3)

My question is do I leave in this form and also is it correct?

Thanks
 
Physics news on Phys.org


i would strongly advise you to write out precisely what substitutions you are making. It will make it much easier for all, including yourself, to see what you are doing and whether or not it is correct (not to mention shock and amaze your teacher!).

You appear to be saying that
[tex]x= \begin{bmatrix}x_1 \\ x_2\\ x_3\end{bmatrix}[/tex]
where
[itex]x_1= y[/itex], [itex]x_2= y'[/itex], and [itex]x_3= y''[/itex].

Then the given equation becomes [itex]x_3'+ 7x_3+ 6x_2+ 3x_1= 0[/itex] which is the same as [itex]x_3'= -3x_1- 6x_2- 7x_3[/itex].
Of course, you also have [itex]x_1'= x_2[/itex] and [itex]x_2'= x_3[/itex] so your equation, in matrix form, is
[tex]x'= \begin{bmatrix}x_1' \\ x_2' \\ x_3'\end{bmatrix}[/tex][tex]= \begin{bmatrix}0 & 1 & 0 \\ 0 & 0 & 1 \\ -3 & -6 & -7\end{bmatrix}\begin{bmatrix}x_1 \\ x_2 \\ x_3 \end{bmatrix}[/tex]

which is, I believe, what you have.
 


Yes that's exactly what I meant. Sorry for the illegible post, I didn't know the LaTex for Matrices. How would you advice me to write the answer? I have posted what your final matrix equation comes out to: 3rd row: [tex]-7x_1-6x_2-3x_3[/tex]
which I think would go back to [tex]y=-7y-6y'-3y''[/tex]?Thanks
 


Hi again HallsofIvy, one simple question, Is my solution to this ODE [itex] x_3'= -3x_1- 6x_2- 7x_3[/itex]. if so why did I need matrices and what use is that?? I also forgot the final bit of the question.
Question:
Transform this 3rd order homogeneous linear ODE with constant coefficients using matrix notation.
ODE
into a system of first oder ODE's.

Have I done this?

Thanks
 


pat666 said:
Hi again HallsofIvy, one simple question, Is my solution to this ODE [itex] x_3'= -3x_1- 6x_2- 7x_3[/itex]. if so why did I need matrices and what use is that?? I also forgot the final bit of the question.
Question:
Transform this 3rd order homogeneous linear ODE with constant coefficients using matrix notation.
ODE
into a system of first oder ODE's.

Have I done this?

Thanks
First, that's not a solution to the differential equation though it is a (partial) solution to the question asked. However, just saying "[itex]x_3'= -3x_1- 6x_2- 7x_3[/itex]" is not the entire solution because it does not give the important equations for [itex]x_1[/itex] and [itex]x_2[/itex].

You "need" the matrix equations because that was what the problem told you to do!

Yes, converting to a system of first order equations would be: [itex]x_1'= x_2[/itex], [itex]x_2'= x_3[/itex], and [itex]x_3'= -3x_1- 6x_2-7x_3[/itex].
 


So I was not actually looking for a "solution" to this ODE?

Thanks HoI