Possible Duplicate:
How to get rid of warnings when using Solve on an equation with inexact coefficients?
I've been trying to calculate the following in Mathematica:
Solve[205.73/(1 + cet)^5 + 205.73/(1 + cet)^4 + 205.73/(1 + cet)^3 +
205.73/(1 + cet)^2 + 205.73/(1 + cet) == x, cet]
but it keeps returning
"Solve was unable to solve the system with inexact coefficient"
How can I calculate the above? I just want to isolate cet so I can create an algorithm to solve it.
expr = Rationalize[ 205.73/(1 + cet)^5 + 205.73/(1 + cet)^4 + 205.73/(1 + cet)^3 + 205.73/(1 + cet)^2 + 205.73/(1 + cet) == x];Solve[expr, cet]– halirutan Jan 06 '13 at 06:32