Differential dynamic programming (DDP) is an optimal control algorithm of the trajectory optimization class. The algorithm was introduced in 1966 by Mayne and subsequently analysed in Jacobson and Mayne's eponymous book. The algorithm uses locally-quadratic models of the dynamics and cost functions, and displays quadratic convergence. It is closely related to Pantoja's step-wise Newton's method.
The dynamics
describe the evolution of the state x given the control u from time i to time i + 1 . The total cost J 0 is the sum of running costs ℓ and final cost ℓ f , incurred when starting from state x and applying the control sequence U ≡ { u 0 , u 1 … , u N − 1 } until the horizon is reached:
J 0 ( x , U ) = ∑ i = 0 N − 1 ℓ ( x i , u i ) + ℓ f ( x N ) , where x 0 ≡ x , and the x i for i > 0 are given by Eq. 1. The solution of the optimal control problem is the minimizing control sequence U ∗ ( x ) ≡ argmin U J 0 ( x , U ) . Trajectory optimization means finding U ∗ ( x ) for a particular x 0 , rather than for all possible initial states.
Let U i be the partial control sequence U i ≡ { u i , u i + 1 … , u N − 1 } and define the cost-to-go J i as the partial sum of costs from i to N :
J i ( x , U i ) = ∑ j = i N − 1 ℓ ( x j , u j ) + ℓ f ( x N ) . The optimal cost-to-go or value function at time i is the cost-to-go given the minimizing control sequence:
V ( x , i ) ≡ min U i J i ( x , U i ) . Setting V ( x , N ) ≡ ℓ f ( x N ) , the dynamic programming principle reduces the minimization over an entire sequence of controls to a sequence of minimizations over a single control, proceeding backwards in time:
This is the Bellman equation.
DDP proceeds by iteratively performing a backward pass on the nominal trajectory to generate a new control sequence, and then a forward-pass to compute and evaluate a new nominal trajectory. We begin with the backward pass. If
ℓ ( x , u ) + V ( f ( x , u ) , i + 1 ) is the argument of the min [ ] operator in Eq. 2, let Q be the variation of this quantity around the i -th ( x , u ) pair:
Q ( δ x , δ u ) ≡ ℓ ( x + δ x , u + δ u ) + V ( f ( x + δ x , u + δ u ) , i + 1 ) − ℓ ( x , u ) − V ( f ( x , u ) , i + 1 ) and expand to second order
The Q notation used here is a variant of the notation of Morimoto where subscripts denote differentiation in denominator layout. Dropping the index i for readability, primes denoting the next time-step V ′ ≡ V ( i + 1 ) , the expansion coefficients are
Q x = ℓ x + f x T V x ′ Q u = ℓ u + f u T V x ′ Q x x = ℓ x x + f x T V x x ′ f x + V x ′ ⋅ f x x Q u u = ℓ u u + f u T V x x ′ f u + V x ′ ⋅ f u u Q u x = ℓ u x + f u T V x x ′ f x + V x ′ ⋅ f u x . The last terms in the last three equations denote contraction of a vector with a tensor. Minimizing the quadratic approximation (3) with respect to δ u we have
giving an open-loop term k = − Q u u − 1 Q u and a feedback gain term K = − Q u u − 1 Q u x . Plugging the result back into (3), we now have a quadratic model of the value at time i :
Δ V ( i ) = − 1 2 Q u Q u u − 1 Q u V x ( i ) = Q x − Q u Q u u − 1 Q u x V x x ( i ) = Q x x − Q x u Q u u − 1 Q u x . Recursively computing the local quadratic models of V ( i ) and the control modifications { k ( i ) , K ( i ) } , from i = N − 1 down to i = 1 , constitutes the backward pass. As above, the Value is initialized with V ( x , N ) ≡ ℓ f ( x N ) . Once the backward pass is completed, a forward pass computes a new trajectory:
x ^ ( 1 ) = x ( 1 ) u ^ ( i ) = u ( i ) + k ( i ) + K ( i ) ( x ^ ( i ) − x ( i ) ) x ^ ( i + 1 ) = f ( x ^ ( i ) , u ^ ( i ) ) The backward passes and forward passes are iterated until convergence.
Regularization and line-search
Differential dynamic programming is a second-order algorithm like Newton's method. It therefore takes large steps toward the minimum and often requires regularization and/or line-search to achieve convergence . Regularization in the DDP context means ensuring that the Q u u matrix in Eq. 4 is positive definite. Line-search in DDP amounts to scaling the open-loop control modification k by some 0 < α < 1 .