2

I'm stuck with the following problem:

$$ RC \frac{\mathrm{d} \mathbf{Q} }{\mathrm{d}t} + M \mathbf{Q} = C, \quad t >0, $$ with: $$\quad \mathbf{Q} = (Q_a(t),Q_b(t), Q_c(t))^T, \quad M = \left( \begin{array}{ccc} -4 & 1 & 1 \\ 2 & -2 & 1 \\ -6 & 3 & 0 \end{array} \right), \quad C = \left( \begin{array}{c} 0 \\ VC \\ -VC \end{array}\right). $$

Find, $Q_a$, $Q_b$, $Q_c$, when $Q_a(0)=0, \ Q_b(0)=0, \ Q_c(0)=0$.

Thank alot.

Dmoreno
  • 7,517
liran
  • 21

1 Answers1

2

Maybe you want to have a look to how to solve a system of linear differential equations of the form:

$$Y'(t) = A Y(t) + C(t), $$ with $Y, \ C \in \mathbb{R}^n$ and $A$ is a $n\times n$ matrix. Here I give you some thoughts. The solution is then given by:

$$ Y(t) = Y_0 \Phi(t) + \Phi(t) \int^t_0 \Phi^{-1}(s) C(s) \, \mathrm{d}s, $$

where $\Phi(t) = \exp{At}$ is the fundamental matrix of the system and $Y_0$ is the vector of initial conditions. If I'm not mistaken, the derivation of the above formula is pretty simple. Consider the system of equations:

$$ Y'(t) - A Y(t) = C(t), $$ and assume that there exists some (matrix) function $I(t)$ such that:

$$ \frac{\mathrm{d} }{ \mathrm{d} t} ( I(t) \, Y(t) ) = I(t) \, C(t), $$ so expanding this becomes:

$$ I(t) Y'(t) + I'(t) Y(t) = I(t) C(t). $$ Assuming now that $I(t)$ is an inversible matrix, we have that $Y'(t) + I^{-1}(t) I'(t) Y(t) = C(t)$, so comparing term by term with the original ODE we would have:

$$ I^{-1} (t) I'(t) = -A(t), $$ and then integrating we have: $I(t) = \exp(-At)$ and hence the solution is given by:

$$ I (t) Y(t) = D + \int^t_0 I(s) C(s) \, \mathrm{d}s , $$ for $D$ some constant vector. This yields to the formula I wrote before identifying $I(t)$ as $\Phi^{-1} (t)$ and applying the initial condition. Indeed $\exp(At)^{-1} = \exp(-At)$.

I would be greatly appreciated if somebody points me out any mistake or give some piece of advice.

I hope this helps.

Cheers!

Dmoreno
  • 7,517