In article <
virgil-82E74C....@BIGNEWS.USENETMONSTER.COM>,
> > .... There is only one variable, W,
> > all the others are constants (C,D,E,F,G)
> >
> > E = F*exp(CW) + G*exp(DW)
> >
> > I'm seeking W=?
> > ....
>
> If you have numerical values for all of C,D,E,F and G, you might be able
> to find an approximate numeric solution for W, but unless C = D or both
> C and D are both very small integers like 1 and 2, an exact general
> solution seems unlikely.
If either C/D or D/C is a small natural number, then you have a
polynomial equation which may not be too bad to solve. For example, if
C/D = 2, then let x = exp(DW) to get the quadratic equation
F(x^2) + Gx = E.
But if C/D is nastier, then you will need a numerical approach as Virgil
mentioned. I would let x = exp(DW) and then try Newton-Raphson, but
there may be better ways.
Ken Pledger.