Smoothed analysis

Smoothed analysis is a way of measuring the complexity of an algorithm. It gives a more realistic analysis of the practical performance of the algorithm, such as its running time, than using worst-case or average-case scenarios.

Introduction

Average-case analysis was first introduced to overcome the limitations of worst-case analysis, however the difficulty is saying what an average case is. The actual inputs and distribution of inputs may be different in practice from the assumptions made during the analysis: a random input may be very unlike a typical input.

Smoothed analysis is a hybrid of worst-case and average-case analyses that inherits advantages of both, by measuring the expected performance of algorithms under slight random perturbations of worst-case inputs. If the smoothed complexity of an algorithm is low, then it is unlikely that the algorithm will take long time to solve practical instances whose data are subject to slight noises and imprecisions.

Use

Since its introduction in 2001, smoothed analysis has been used as a basis for considerable research, for problems ranging from mathematical programming, numerical analysis, machine learning, and data mining.[1]

Example

The simplex algorithm is a very efficient algorithm in practice, and it is one of the dominant algorithms for linear programming in practice. Yet in the theoretical worst case it runs in exponential-time for most successfully analyzed pivot rules. This was one of the main motivations for developing smoothed analysis.

In smoothed analysis of linear programming, the typical input model has mean data that satisfies for all rows of the matrix . The noise data has its entries independently distributed entries sampled from a Gaussian distribution with mean and standard deviation . The smoothed input data consists of . The smoothed complexity of an algorithm is the maximum over admissible of the expectation over of the time it takes to solve the linear program

maximize
subject to
.

An algorithm has polynomial smoothed complexity if its expected running time is bounded by a polynomial in .

History

ACM and the European Association for Theoretical Computer Science awarded the 2008 Gödel Prize to Daniel Spielman and Shanghua Teng for developing smoothed analysis. In 2010 Spielman received the Nevanlinna Prize for developing smoothed analysis. Spielman and Teng's JACM paper "Smoothed analysis of algorithms: Why the simplex algorithm usually takes polynomial time" was also one of the three winners of the 2009 Fulkerson Prize sponsored jointly by the Mathematical Programming Society (MPS) and the American Mathematical Society (AMS).

See also

References

  1. D. A. Spielman, S. H. Teng. Smoothed analysis: an attempt to explain the behavior of algorithms in practice, Communications of the ACM, 52(10):76–84, 2009.

Spielman, Daniel; Teng, Shang-Hua (2001), "Smoothed analysis of algorithms: why the simplex algorithm usually takes polynomial time", Proceedings of the Thirty-Third Annual ACM Symposium on Theory of Computing, ACM, pp. 296–305, arXiv:cs/0111050, doi:10.1145/380752.380813, ISBN 978-1-58113-349-3 .

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.