We have an equation of the form: $P(x)=(1-xv)(1-xw)(1-x)^{n-2}-u$
$n≥2$ and $n$ belongs to the set of positive integers.
$0<u<1$.
$0<v≤1$.
$0<w≤1$.
$0<x≤1$. ($x>1$, when $n=2$ and $v,w<<1)$ which is very rare.
For this equation it seems, a closed form expression for $x$ is not possible, so what would be the best, most efficient method of approximation, Newton's method requires a lot of iterations and often it doesn't converges, so we need a method that's more robust, requires fewer iterations and would most probably converge, it doesn't matter how rigourous the method is. PS: We can actually make a pretty good guess of value of $x$ but it'll always be smaller than the accurate value.
The equation $(1-xv)(1-xw)(1-x)^{n-2}-u = 0$ can be expressed as
$$x = 1 - \left( \frac{u}{(1-xv)(1-xw)} \right)^{\frac{1}{n-2}}$$
Now, that's not a closed-form solution for $x$, since it still occurs (twice) on the right side, but it might be viable as a fixed-point iteration. Let's try it.
A couple of examples:
Convergence after 10 iterations. Not bad. But maybe some tweaking to the algorithm would make it converge even faster.