Nqueen,
This written before your recent exchange with Zathras. He is right, taking the logarithms of the equations is the way to go.
If you are still interested in the Solver, read on. Otherwise, please ignore.
Solver can solve systems with multiple unknowns. We can have multiple unkowns and equations, but we need to make a single "error" cell, a formula that gets smaller as we get closer to the solution. Are you game to try it?
It starts from an initial guess, and gives an approximate solution. Two cautions 1.) The approximation is usually very good, but with some problems it has trouble converging. 2.) If there are multiple solutions, it will only give one, and which one depends on the initial guess.
Step 1 Set-up unknown cells (By Changing Cells) and initial guess
Choose a range of 3 cells to hold your three unkowns, say,
A1 for a
B1 for b
C1 for c.
Put an initial guess for each cell, say, 1,1,1.
Step 2 Set-up an error cell (Target cell)
For each equation, set up a cell that contains the right hand side (RHS) minus the left hand side (LHS).
In your example, the formulae will be
= X^a * Y^b * Z^c * R - T
= M^a * N^b * U^c * R - I
= E^a * F^b * G^c * R - H
(But it may work better after taking the logs, as Zathra wrote.)
Let's say we put them in cells A3, A4, and A5.
Where the capital letter's are constants, and in place of a, b, and c, you put the cell references A1, B1, and C1, respectively.
If your guess in cells A1, B1, and C1 were a solution, all of these would be 0, right?
Now put the formula
= A3^2 + A4^2 + A5^2
in cell A6. The value of this cell will be zero when we get the solution.
Step 3 Run the Solver
Tools -> Solver
Fill in the list boxes.
Target Cell: $A$6 (error cell)
By Changing Cells: $A$1:$C$1 (unknown cells A, B, C)
Check the Equal To: Min radio button.
Push the solve button. Solver will replace your guess in $A$1:$C$1 by its approximation to the solution.
Walter