I am dealing with a non linear system of equations in matrix form in python, namely:
F=Af+b(F)
Where F is my uknown vector 9x1, A is a known 9x9 matrix, f is a known 9x1 vector and b(F) is a 9x1 vector which is non linear function of the components of F.
How can i put this whole thing in a non linear equation solver?