Skip to content
Prev 82115 / 398506 Next

Understanding nonlinear optimization and Rosenbrock's banana valley function?

Hi, Gabor:

	  Thanks for the reply and the reference to Wolkowicz.

	  Your comments seem to be contradicted by 'demo(nlm)', which shows 
'nlm' getting lost when the hessian is provided;  without the hessian, 
nlm did fine.  As noted below, "nlminb" exhibits essentially the same 
pathology.

	  One aspect of the problem in this case seems to be that the hessian 
is often indefinite, with one eigenvalue positive and the other 
negative.  The negative eigenvalue pushes the increment towards 
increasing rather than decreasing the function.  When I used the 
absolute values of the eigenvalues, it helped but not enough.  I did 
limited tests of damping, but perhaps not enough.  I wonder if nlm and 
optim might benefit from some modification of their damping algorithms 
when the hessian is provided -- and if yes, what that modification 
should be?

	  Best Wishes,
	  spencer graves
Gabor Grothendieck wrote: