I am trying to solve a non-linear least squares problem with newton's and gauss-newton method.
$\min \left\Vert \pmb F( \pmb x) \right\Vert_2^2$ with $F: \mathbb{R}^m \rightarrow \mathbb{R}^n$.
Furthermore, I want to analytically calculate the local rate of convergence for my problem. Because the Hessian and Jacobian of $\pmb F$ may both be indefinite and rank-deficient its most probably not quadratic for Newton's method. What are the criteria for these methods to show (super)-linear or quadratic local convergence?
I know that $\pmb F$ has to Lipschitz continuous, which is the case. But what are the other criteria?
thank you!