I am doing problems that involve partial decomposition. I can't for the life of me remember how to solve some of the systems of equations that I end up with after multiplying out the partial fractions. For example...
$$A+B+C=0$$ $$A+C+D=0$$ $$A+B+D=2$$ $$A=-4$$
As far as I can see, elimination doesn't work. Maybe it does, and I'm just not seeing it. I've just been punching them into the solve function of my graphing calculator which works great, but I would like to solve them with pencil and paper.
Substitute the 4th equation in all the others, you get: $$B+C=4$$ $$C+D=4$$ $$B+D=6$$
The third equation is: $B=6-D$ and substitute this in the first equation, you get: $$6-D+C=4$$ $$\implies D-C=2$$ So now you have: $$D-C=2$$ $$D+C=4$$
Again, the second equation is: $D=4-C$ and substitute in the first one: $$4-C-C=2$$ $$\implies2C=2\implies C=1$$Since: $$D=4-C=4-1=3$$ and $$B=4-C=4-1=3$$ So: $$A=-4, B=3,C=1,D=3$$
In general (for simple linear system of equations such as this) put one equation in terms of a variable, and substitute this in another one, each time "reducing" a variable. Repeat this until only one variable is left.
For larger system of linear equations, matrices are the way to go.