The Davidon–Fletcher–Powell formula (or DFP; named after William C. Davidon, Roger Fletcher, and Michael J. D. Powell) finds the solution to the secant equation that is closest to the current estimate and satisfies the curvature condition. It was the first quasi-Newton method to generalize the secant method to a multidimensional problem. This update maintains the symmetry and positive definiteness of the Hessian matrix.
Given a function
f(x)
\nablaf
B
f(xk+sk)=f(xk)+\nabla
T | |
f(x | |
k) |
sk+
1 | |
2 |
T | |
s | |
k |
{B}sk+...,
and the Taylor series of the gradient itself (secant equation)
\nablaf(xk+sk)=\nablaf(xk)+Bsk+...
is used to update
B
The DFP formula finds a solution that is symmetric, positive-definite and closest to the current approximate value of
Bk
Bk+1= (I-\gammakyk
T) | |
s | |
k |
Bk(I-\gammaksk
T) | |
y | |
k |
+\gammakyk
T, | |
y | |
k |
where
yk=\nablaf(xk+sk)-\nablaf(xk),
\gammak=
1 | |||||||||
|
,
and
Bk
The corresponding update to the inverse Hessian approximation
Hk=
-1 | |
B | |
k |
Hk+1=Hk-
| |||||||||||||
|
+
| |||||||||||||
|
.
B
T | |
s | |
k |
y
T | |
s | |
k |
yk=
T | |
s | |
k |
Bsk>0.
The DFP formula is quite effective, but it was soon superseded by the Broyden–Fletcher–Goldfarb–Shanno formula, which is its dual (interchanging the roles of y and s).[1]