How can I do a system of equations?

  • Thread starter Thread starter Guest
  • Start date Start date
Here's one way. Assume your 2 equations are:

2x + 2y = 8
x + 4y = 7

Place the coefficients of x in A1 and A2, coefficients of
y in B1 and B2, and the constants in C1 and C2. It should
look like this:

A B C
1 2 2 8
2 1 4 7

Select D1:D2, enter the formula below:

=MMULT(MINVERSE(A1:B2),C1:C2)

and press ctrl + shift + enter.

HTH
Jason
Atlanta, GA
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top