Berndt–Hall–Hall–Hausman algorithm

From HandWiki
Revision as of 04:49, 21 July 2022 by imported>AIposter (link)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Berndt–Hall–Hall–Hausman (BHHH) algorithm is a numerical optimization algorithm similar to the Newton–Raphson algorithm, but it replaces the observed negative Hessian matrix with the outer product of the gradient. This approximation is based on the information matrix equality and therefore only valid while maximizing a likelihood function.[1] The BHHH algorithm is named after the four originators: Ernst R. Berndt, Bronwyn Hall, Robert Hall, and Jerry Hausman.[2]

Usage

If a nonlinear model is fitted to the data one often needs to estimate coefficients through optimization. A number of optimisation algorithms have the following general structure. Suppose that the function to be optimized is Q(β). Then the algorithms are iterative, defining a sequence of approximations, βk given by

[math]\displaystyle{ \beta_{k+1}=\beta_{k}-\lambda_{k}A_{k}\frac{\partial Q}{\partial \beta}(\beta_{k}), }[/math],

where [math]\displaystyle{ \beta_{k} }[/math] is the parameter estimate at step k, and [math]\displaystyle{ \lambda_{k} }[/math] is a parameter (called step size) which partly determines the particular algorithm. For the BHHH algorithm λk is determined by calculations within a given iterative step, involving a line-search until a point βk+1 is found satisfying certain criteria. In addition, for the BHHH algorithm, Q has the form

[math]\displaystyle{ Q = \sum_{i=1}^{N} Q_i }[/math]

and A is calculated using

[math]\displaystyle{ A_{k}=\left[\sum_{i=1}^{N}\frac{\partial \ln Q_i}{\partial \beta}(\beta_{k})\frac{\partial \ln Q_i}{\partial \beta}(\beta_{k})'\right]^{-1} . }[/math]

In other cases, e.g. Newton–Raphson, [math]\displaystyle{ A_{k} }[/math] can have other forms. The BHHH algorithm has the advantage that, if certain conditions apply, convergence of the iterative procedure is guaranteed.[citation needed]

See also

References

  1. Henningsen, A.; Toomet, O. (2011). "maxLik: A package for maximum likelihood estimation in R". Computational Statistics 26 (3): 443–458 [p. 450]. doi:10.1007/s00180-010-0217-1. 
  2. Berndt, E.; Hall, B.; Hall, R.; Hausman, J. (1974). "Estimation and Inference in Nonlinear Structural Models". Annals of Economic and Social Measurement 3 (4): 653–665. https://www.nber.org/chapters/c10206.pdf. 

Further reading