A very easy way is to use matracies to solve those, especially since that is overdetermined (3 equations, 2 variables).
Sorry no links for it though

When a system is overdetermined there are 2 options,
1) it has a solution (as in teh one above)
In that case you set up teh matrix
Code:
A = | 1 -2 0|
| 1 0 1|
| 1 1 0|
and
b = |7|
|1|
|4|
and just solve for Ax=b where x is a vector belonging to R3
The second option is that there is no real solution so a Least squares solution must be found.
This can be found by the formula. (use the same A and b from above)
(At)A*x = (At)b where (At) is A transposed
This will leave you with a projected vector onto your space closest to a "real solution".
Both of these can be solved use Guassian reduction.
Hope I helped and didn't just confuse!
Jkrohn