There is a lot of confusion in this thread.
(1) First of all, several people have confused the b in (a,b,c,d) with the b in the matrix equation a.x = b. That is why I used capital letters for the matrix equation in Post #2. So let's agree to write the matrix equation as A.X = B. Then there is no confusion.
(2) Second, in general, only square matrices have inverses. You can talk about left and right inverses of non-square matrices, but since it sounds like you are just learning linear algebra, that's probably more complexity that you want at this point.
(3) Third, while I agree that the problem is easily solved with elimination and there is no need to use matrices, you can get a solution using matrices if you want. But to do this, you have to eliminate one of the equations so that you have a square matrix. You can eliminate one equation by simply ignoring it. Then you find a solution to the remaining four equations, and then plug that into the equation you ignored. If the equation is satisfied, you have found a solution to all five equations. If it isn't, then there is no solution. You can try it several ways by changing which equation you eliminate. For example, if you eliminate the last equation, you will find that the matrix is singular and has no inverse. If you eliminate the fourth equation, then the matrix equation (A.X = B) becomes:
<br />
\begin{bmatrix}<br />
1&-1/2&0&0\\-1/3&1&0&-1\\-1/3&-1/2&1&0\\1&1&1&1<br />
\end{bmatrix}<br />
\cdot<br />
\begin{bmatrix}<br />
a\\b\\c\\d<br />
\end{bmatrix}<br />
=<br />
\begin{bmatrix}<br />
0&0&0&1<br />
\end{bmatrix}
This can be solved using X = A^-1 . B, and this solution also solves equation 4 that you eliminated. The solution is also the same one you arrive it by simple elimination. Does this make sense?