Hi everybody,
I have a non linear system of 9 equations:
F=A(F)F+B(F)g(F)
F is a 9x1 vector of the unknowns, A(F) and B(F) are 9x9 matrixes which depend on F ang g(F) is a 9x1 vector which depends on F.
My problem is that i can't give an explicit expression to A and B in terms of F because they require the inversion of symbolic matrices which depend on F, and it is computationally unfeasible.
So I was looking for an iterative solution, basically evaluating A and B in a known status F0, solving F=A(F0)F+B(F0)g(F) and the updating iteratively until two consecutive solutions converge.
Is this approach well-founded? will it converge to the solution?