[Math] Proving the linear combination of two solutions of a system of differential equations is also a solution

ordinary differential equations

I'm given a homogeneous set of differential equations: $$x^\prime = ax + by$$ $$y^\prime = cx + dy$$ I already know that two solutions of this system are $x_1, y_1$ and $x_2, y_2$, and I am asked to prove that $x_h = c_1 x_1 + c_2 x_2, y_h = c_1 y_1 + c_2 y_2$ is also a solution. Obviously we can prove this in a general case, but I was curious if we could solve this by direct substitution. I've already tried a few approaches but I'm just left with a jumbled mess of equations and a few relations that don't prove very useful. Could someone give me a hint as to how to approach this (this is in the first section of the chapter, so the solution to this problem does not use elimination, any matrix approach, etc.)?

Best Answer

$$x^{'}_h=ax_h+by_h \rightarrow (c_1x_1+c_2x_2)'=a(c_1x_1+c_2x_2)+b(c_1y_1+c_2y_2)$$ $$y^{'}_h=cx_h+dy_h \rightarrow (c_1y_1+c_2y_2)'=c(c_1x_1+c_2x_2)+d(c_1y_1+c_2y_2)$$ $$c_1x_1^{'}+c_2x_2^{'}=c_1(ax_1+by_1)+c_2(ax_2+by_2)$$ $$c_1y_1^{'}+c_2y_2^{'}=c_1(cx_1+dy_1)+c_2(cx_2+dy_2)$$ Subtracting the two equations we have: $$c_1(x_1^{'}-y_1^{'})+c_2(x_2^{'}-y_2^{'})=c_1(ax_1+by_1-cx_1-dy_1)+c_2(ax_2+by_2-cx_2-dy_2)$$ $$c_1(x_1^{'}-y_1^{'}-(ax_1+by_1-cx_1+dy_1))=c_2(ax_2+by_2-cx_2-dy_2-(x_2^{'}-y_2^{'}))$$ Both the LHS and RHS in parenthesis are equal to zero therefore 0=0. And this is true for arbitrary values of $c_1$ & $c_2$.

Related Question