Homogeneous ODE system, how to solve using WOLFRAM

kougou
Messages
80
Reaction score
0
Hi.

If I have a homogeneous ODE with constant coefficient system in the form of 2x2 matrix:

X'=A X, A is a 2x2 matrix.

How do I solve this using wolfram or matlab?
 
Physics news on Phys.org
kougou said:
Hi.

If I have a homogeneous ODE with constant coefficient system in the form of 2x2 matrix:

X'=A X, A is a 2x2 matrix.

How do I solve this using wolfram or matlab?

What is the system explicitly?
 
Dustinsfl said:
What is the system explicitly?

Say

X'= [2, 4] X.
[1, 1]

A with with 2,4 in the top rows, and 1,1 in the bottom rows.

How do I use wolfram or MATLAB to solve this system?
 
kougou said:
Say

X'= [2, 4] X.
[1, 1]

A with with 2,4 in the top rows, and 1,1 in the bottom rows.

How do I use wolfram or MATLAB to solve this system?

We can re-write the system as
\begin{alignat*}{5}
x' & = & 2x+4y & = & 0\\
y' & = & x + y & = & 0
\end{alignat*}

DSolve[{x'[t]==2x[t]+4y[t],y'[t]==x[t]+y[t], Initial Conditions here},{x[t],y[t]},t]
 
kougou said:
Hi.

If I have a homogeneous ODE with constant coefficient system in the form of 2x2 matrix:

X'=A X, A is a 2x2 matrix.

How do I solve this using wolfram or matlab?

I do not have access to Matlab, so I don't know the answer to the following: does Matlab have a exp(A) function for a matrix A? If so, we have X(t) = X(0) exp(A*t).
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top