Hi David,
Since you are dealing with simultaneous equation, the same can be done with some basic algebra and excel functions.
So your first eqution if solved further can be written as
0.18X -Y = 0
And you next eqution is X+Y = 2
So, in general if you have two equation with two unknown i.e. X&Y you form two matrix
X1 Y1
X2 Y2
and second matrix of like
C1
C2
so in this situation your first matrix will look like
0.18 -1
1 1
and second matrix will look like
0
2
So, mathematically you can solve the unknown with below equation:
X1 Y1 X C1
* =
X2 Y2 Y C2
So,
Solving this can be easy now with Excel function like MINVERSE() & MMULT.
So, first use =MINVERSE(array) and in array pass the matris of X1,Y1;X2,Y2.
This will give you a 2x2 matrix , let say this is matrix 1 and matrix 2 is 0;2 the earlier one.
Now use MMULT(array 1, array 2) to get your result.
I am uploading a workbook to illustrate this. If you had any problem than please write back.
Regards,