written 6.1 years ago by |
The Steepest Descent method, also called the Cauchy Method ,was put forward by Cauchy in 1857. In this method, we choose an initial point X1 and iteratively move along the steepest descent direction to find the optimum point. Minimization occurs in the negative direction of the gradient vector . The steps in this method are as follows:-
Step 1: Start with an arbitrary point X1 . Consider the iteration number be represented by i. Then set i=1.
Step 2: Find the search direction. Si as given Si=−∇fi=−∇f(Xi).
Step 3: Find the optimal step length λ* in the direction Xi as given in eq. Xi+1=Xi+λ∗iSi=Xi−λ∗i∇fi.
Step 4: Test the new point, Xi+1, for optimality condition whose derivative equals to 0 .In other words, check if the new point is lesser than the previous one. If it is lesser, then the direction of movement is ideal and Xi+1 becomes the optimum point. If Xi+1 is the optimum point, then stop the process , otherwise goto step 5.
Step 5: See the new iteration number i=i+1 and goto step 2.
Q:- Minimize f(x1,x2)=4x1−2x2+2x21+2x1x2+x22 starting from point X1={00}
solution:- We have, f(x1,x2)=4x1−2x2+2x21+2x1x2+x22
The gradient f is given by ∇f={∂f∂x1∂f∂x2={4+4x1+2x2−2+2x1+2x2
∇f1=∇f(X1)={4−2}
Step 2:- Si=−∇fi=−∇f(Xi)
Hence S1=−∇f1={−42}
Step 3:- Determine the optimal step length λi* in the direction Si.To find X2 we need to find the optimal step length λ1.
For this we minimize f(X1+λ1S1) with respect to λ1. f(X1+λ1S1)=f(−λ1,λ1)=λ21−2λ1=X11+λ1S1=[00]+λ1[−42]
We have f(x1,x2)=4x1−2x2+2x21+2x1x2+x22
Hence,
f(λ1,λ2)=−4λ1−2λ1+2λ21−2λ1λ1+λ21=λ21−6λ1.......................(1)
Substituting ∂f∂λ1=0 in equation(1) , we get ∂(λ21−6λ1)∂λ1=2λ1−6=0
λ1=3
X2=X1+λ∗1S1={00}+3{−42}={−126}
As ∇f2=∇f(X2)≠{00},X2 is not optimum