Often in my work I work with an equation that comes in the following form:
y = a1*x^b1+a2*x^b2+...+an*x^bn
Note that neither a nor b are not necessarily integers.
So in my application I am having to solve for x. The only way I can figure it out is through iteration (i.e. repeated guesses of x, insert into the equation, checking against my known value for y, repeat until convergence). Thsi is a pain to have to do over and over again.
I've tried solving the equation for x, but my maths skills have come up short since I left uni 10 years ago. I know there are a number of math savvy people here, I'm wondering if there is any way to solve this equation for x?
y = a1*x^b1+a2*x^b2+...+an*x^bn
Note that neither a nor b are not necessarily integers.
So in my application I am having to solve for x. The only way I can figure it out is through iteration (i.e. repeated guesses of x, insert into the equation, checking against my known value for y, repeat until convergence). Thsi is a pain to have to do over and over again.
I've tried solving the equation for x, but my maths skills have come up short since I left uni 10 years ago. I know there are a number of math savvy people here, I'm wondering if there is any way to solve this equation for x?