A well known method of easily solving multi-dimensional non-linear root finding problems, is to bring the equations into the form: $\bf x = g(x)$ And then iterating. The problem is, one has to find a suitable $\bf{g(x)}$, since if the spectral radius of the jacobian is larger than $1$, the iteration will not converge. Calculating the spectral radius involves finding the eigenvalues (or is there an easier way?), which is quite an annoying problem if the functions involved are non trivial.
So:
Are there any suggested methods of properly choosing the function $\bf{g(x)}$, assuming I know the root exists and is isolated? additionally, are there other root finding methods that do not involve calculating the matrix inverse (unlike e.g. Newton's Method)?