Samiksha Jaiswal (Editor)

Dykstra's projection algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Dykstra's projection algorithm

Dykstra's algorithm is a method that computes a point in the intersection of convex sets, and is a variant of the alternating projection method (also called the projections onto convex sets method). In its simplest form, the method finds a point in the intersection of two convex sets by iteratively projecting onto each of the convex set; it differs from the alternating projection method in that there are intermediate steps. A parallel version of the algorithm was developed by Gaffke and Mathar.

The method is named after R. L. Dykstra who proposed it in the 1980s.

A key difference between Dykstra's algorithm and the standard alternating projection method occurs when there is more than one point in the intersection of the two sets. In this case, the alternating projection method gives some arbitrary point in this intersection, whereas Dykstra's algorithm gives a specific point: the projection of r onto the intersection, where r is the initial point used in the algorithm,

Algorithm

Dykstra's algorithm finds for each r the only x ¯ C D such that:

x ¯ r 2 x r 2 , for all  x C D ,

where C , D are convex sets. This problem is equivalent to finding the projection of r onto the set C D , which we denote by P C D .

To use Dykstra's algorithm, one must know how to project onto the sets C and D separately.

First, consider the basic alternating projection (aka POCS) method (first studied, in the case when the sets C , D were linear subspaces, by John von Neumann), which initializes x 0 = r and then generates the sequence

x k + 1 = P C ( P D ( x k ) ) .

Dykstra's algorithm is of a similar form, but uses additional auxiliary variables. Start with x 0 = r , p 0 = q 0 = 0 and update by

y k = P D ( x k + p k ) p k + 1 = x k + p k y k x k + 1 = P C ( y k + q k ) q k + 1 = y k + q k x k + 1 .

Then the sequence ( x k ) converges to the solution of the original problem. For convergence results and a modern perspective on the literature, see

References

Dykstra's projection algorithm Wikipedia