Multiple powers

39 Views Asked by At

I was doing some calculations and realized I have no idea how to solve anything more complicated than a quadratic when it comes to multiple terms with different powers. Problem that sparked this was

$x^{1.4} + ax = b$.

Am I just an idiot and there's a simple solution I can't find, or is this more complicated than I think? How do I generalize this sort of equation?

1

There are 1 best solutions below

2
On BEST ANSWER

Except for very few cases, you could not get analytical solutions for $$x^\alpha+ax=b$$ and you will need to use some numerical method such as Newton starting from a "reasonable" guess $x_0$. The method will update it according to $$x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)}$$ So, for your case $$f(x)=x^\alpha+ax-b$$ $$f'(x)=\alpha x^{\alpha-1}+a$$