How to solve linear first order variable coefficient systems?

robijnix
Messages
3
Reaction score
0
1. how do i solve
X'(t)=A(t)X(t)

Homework Equations


I know of this equation:
x(t) = x_0 \exp\left( \int_{t_0}^t f(\xi) \, d\xi \right)

but i think that I'm using it wrong.

The Attempt at a Solution


i have the following mathematica code:
A=
fIVwe.png

x = MatrixExp[Integrate[A, {t, 0, s}]].{1, 0,0,0};
Plot[x[[2]] + x[[4]], {s, 0, 500}]

the problem is, that the result i get it not the same as when i numerically plot it with matlab, which leads me to believe that I'm doing something wrong.

any kind of help would be greatly appreciated,

Thanks
 
Last edited:
Physics news on Phys.org
Never mind i found out the problem.

my matrix A doesn't statisfy A(t1)A(t2)=A(t2)A(t1), in which case the above formula is not valid
 
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