 
 
 
 
 
   
 constrained Powell's method
 constrained Powell's method
In Powell's method, we repeat linear search toward conjugate directions and search the minimum value of 
 .  In linear search methods, we search the minimum value one-dimensionally along the direction vector
.  In linear search methods, we search the minimum value one-dimensionally along the direction vector 
 from a certain point
 from a certain point 
 .  In other words, we regard
.  In other words, we regard 
 as the function of
 as the function of  and search the minimum value of it.  Hereafter,
 and search the minimum value of it.  Hereafter,  represents the algorithm of
 represents the algorithm of  constrained Powell's method and Linear-search
 constrained Powell's method and Linear-search represents linear search method which compares search points by
 represents linear search method which compares search points by  level comparisons.
 level comparisons.    is described in C like language as follows:
 is described in C like language as follows:  
 
where 
 is accuracy of the search.
We may select the
 is accuracy of the search.
We may select the  unit vectors indicating the direction of each axis of
 unit vectors indicating the direction of each axis of  as
 as  initial direction vectors.
 initial direction vectors. 
We realize Linear-search by the combination of bracketing
 by the combination of bracketing and golden
 and golden .
Bracketing
.
Bracketing and golden
 and golden represent algorithms of bracketing method and golden cut method which use
 represent algorithms of bracketing method and golden cut method which use  level comparisons as order relations, respectively. The algorithms are described in C like language as follows:
 level comparisons as order relations, respectively. The algorithms are described in C like language as follows:  
![\begin{example}
Linear-Search$_\alpha$()
\{
By bracketing$_\alpha(0)$,
an int...
...ue $(f(a), \mu(a))$\ in the interval $[a_1, a_2]$
is obtained.
\}
\end{example}](img13.png) 
                        
![\begin{example}
bracketing$_\alpha(a_0)$
\{
Let $h$\ be step width.
$a_1=a_0+h...
...he interval $[a_0,a_2]$;
else return the interval $[a_2,a_0]$;
\}
\end{example}](img14.png) 
                        
 
where 
 ,
, 
 .
.
 is accuracy of the search.
 is accuracy of the search.
 
 
 
 
