I need to solve a $25\times 25$ very non-linear system of equations, I have very superficial knowledge of numerical methods, and I've been struggling in finding a real solution to my system.
For what I know, in order to find a solution first initial guess values are crucial, but I don't really know how to get good initial guesses for my system since the "most" non-linear equations avoid closed form expressions for some variables, then I'd be very grateful if you may refer me to some literature/content (anything) that may help me understand how to get good initial guess values for my problem.
What I've done so far (before posting the question) is writing the system $F(\boldsymbol{x})$ in a function in Matlab (the system is $25\times 25$), and then try to solve for $F(\boldsymbol{x})=0$ using fsolve() and using 1 as initial guess for all the variables. The result is a very long time of computation, and after reducing (by augmenting considerably the tolerance) the computation time, in order to at least check where the solver is going, I get as a (inaccurate) solution a non-real valued vector (non-zero imaginary part).
I can reduce $n$ to a problem of around $20\times 20$ (very cumbersome) equations by substituting variables with closed form expressions. Uniqueness of solution I would not be very sure, but I'd dare to say that aside from possible trivial solutions, there's an unique solution, or at least a real-valued solution that satisfies some restrictions (like being positive for some variables or similar) would work fine.
Besides, most non-linearities arise from negative and fractional exponents, sums raised to such exponents. Not sure if it helps but there's a sample of three equations:
$$ a\left( \frac{bx_{4}}{c\left(x_{5}^{1-\phi}x_{3}+x_{6}^{1-\phi}x_{3}\right)^{1/(2-\phi)}} \right)^{\frac{\phi}{1-\phi}} = x_{7}x_{8}-dx_{9}$$
$$ dx_{4} = x_{9}\left(x_{2}\left(1-gx_{10}^{1+\theta}\right)\right)^{-1}\left(x_{9}\left[1-hx_{10}^{1+\theta}\right]-kx_{2}x_{10}^{\theta}\right) $$
$$ x_1 = x_{3}\left(1+l\left[ \frac{x_{3}}{x_{11}}\right]^2+m\left[ \frac{x_{11}}{x_{3}}\right]^2-2\sqrt{x_{15}x_{16}}\right) + x_{12}\left(1+l\left[ \frac{x_{12}}{x_{11}}\right]^2+m\left[ \frac{x_{11}}{x_{12}}\right]^2-2\sqrt{x_{15}x_{16}}\right) + qx_{13} + rx_{14} $$
Where $x_i$ are variables (most with restrictions of being strictly positive, aside of course from the other equations), latin alphabet letters are positive constants, and greek letters are also given constant between ranges: $0<\phi<1$, $\theta>1$ (of course when I'm solving the system I know the values of all those constants).
Another possibly relevant detail is that I emailed the author of a paper that solves a system with similar non-linearities (since what this problem is about is finding a steady state), he didn't give me much detail but mentioned that he was using "homotopy algorithms".
Thanks in advance!
PS: In addition, maybe if this question is too "engineery" I'd be grateful for a recommendation of a forum where it would fit best. Thanks.