Do you know any method to solve the following system of nonlinear equations ?
$\begin{equation} 141,3829=A+\frac{B}{323}+5,78C+F323^{E}\\ 69,07645=A+\frac{B}{333}+5,81C+F333^{E}\\ 40,55085=A+\frac{B}{343}+5,84C+F343^{E}\\ 27,92544=A+\frac{B}{353}+5,87C+F353^{E}\\ 19,7697=A+\frac{B}{363}+5,89C+F363^{E} \end{equation}$
where $A,B,C,E,F$ are needs to be determined
One approach is to use Newton's method for solving $F(x) = 0$.
Given an approximate solution $x_i$, we would ideally like to find $\Delta x$ so that $F(x_i + \Delta x) = 0$. That's too difficult though, so instead, we use the approximation \begin{equation*} F(x_i + \Delta x) \approx F(x_i) + F'(x_i) \Delta x, \end{equation*} and we choose $\Delta x_i$ so that the right hand side is equal to $0$. Note that $F'(x_i)$ is a matrix.
We then set $x_{i+1} = x_i + \Delta x$. We then improve $x_{i+1}$, etc.