The first round of oral exams will take place on the 18th, 19th and 20th of July.
The re-exams will be on 26th of September.
Please schedule the time of your exam with Christiane Andrade in room 2.056.
Date | Contents |
---|---|
April 12 | 1 Discrete Event Spaces and Probabilities 1.1 Discrete Probability Spaces 1.2 Independent Events & Conditional Probability |
April 17 | 1.2 (continued) Conditional Probability 1.3 Applications 1.3.1 Minimum Cut, Karger's Contract Algorithm |
April 19 | 1.3.1 (continued) Karger's Contract algorithm 1.3.1 FastCut |
April 24 | 1.3.1 (continued) FastCut 1.3.1 Reservoir Sampling |
April 26 | 2.1 Random Variables and Expected Values 2.1.1 Integer Random Variables |
May 1 | no lecture |
May 3 | 2.1.2 Conditional Expectation 2.2 Binomial and Geometric Distribution 2.3 Applications 2.3.1 Randomized QuickSort |
May 8 | 2.3.2 Randomized Approximation Algorithms |
May 10 | no lecture |
May 15 | 3 Concentration Bounds: Markov's Inequality 3.1 Variances and Chebyshev's Inequality 3.3 Applications: Introduction to sublinear algorithms |
May 17 | 3.3.1 A sublinear algorithm |
May 22 | no lecture |
May 24 | no lecture |
May 29 | 3.2 Chernoff/Rubin bounds 4.1 Useful math 4.2 Applications 4.2.1 An Algorithm for 2-SAT |
May 31 | no lecture |
June 5 | 4.2.2 Algorithms for 3-SAT |
June 7 | 6 Knapsack Problem and Multiobjective Optimization 6.1 Nemhauser-Ullmann Algorithm |
June 12 | 6.2 Number of Pareto-optimal Solutions |
June 14 | 6.2 (continued) Number of Pareto-optimal Solutions |
June 19 | 6.3 Multiobjective Optimization 6.4 Core Algorithms |
June 21 | 7 Smoothed Complexity of Binary Optimization Problems |
June 26 | 7 (continued) Smoothed Complexity of Binary Optimization Problems |
June 28 | 8 Successive Shortest Path Algorithm Slides |
July 3 | 9 The 2-Opt Algorithm for the TSP 9.1 Overview of Results 9.2 Polynomial Bound for phi-Perturbed Graphs |
July 5 | 9.3 Improved Analysis |
July 10 | no lecture |
July 12 | 10 The k-Means Method Slides |
The Lecture Notes cover the lecture. Part I is largely based on the following two books:
The lecture has two parts. First, we consider the design and analysis of randomized algorithms. Many algorithmic problems can be solved more efficiently when allowing randomized decisions. Additionally, randomized algorithms are often easier to design and analyze than their (known) deterministic counterparts. For example, we will see an elegant algorithm for the minimum cut problem. Randomized algorithms can also be more robust on average, like randomized Quicksort.
The analysis of randomized algorithms builds on a set of powerful tools. We will get to know basic tools from probabily theory, very useful tail inequalities and techniques to analyze random walks and Markov chains. We apply these techniques to develop and analyze algorithms for important algorithmic problems like sorting and k-SAT.
Statements on randomized algorithms are either proven to hold on expectation or with high probability over the random choices. This deviates from the classical algorithm analysis but is still a worst-case analysis in its core. In the second part of the lecture, we learn about probabilistic analysis of algorithms. There are a number of important problems and algorithms for which worst-case analysis does not provide useful or empirically accurate results. One prominent example is the simplex method for linear programming whose worst-case running time is exponential while in fact it runs in near-linear time on almost all inputs of interest. Another example is the knapsack problem. While this problem is NP-hard, it is a very easy optimization problem in practice and even very large instances with millions of items can be solved efficiently. The reason for this discrepancy between worst-case analysis and empirical observations is that for many algorithms worst-case instances have an artificial structure and hardly ever occur in practical applications.
In smoothed analysis, one does not study the worst-case behavior of an algorithm but its (expected) behavior on random or randomly perturbed inputs. We will prove, for example, that there are algorithms for the knapsack problem whose expected running time is polynomial if the profits or weights are slightly perturbed at random. This shows that instances on which these algorithms require exponential running time are fragile with respect to random perturbations and even a small amount of randomness suffices to rule out such instances with high probability. Hence, it can be seen as an explanation for why these algorithms work well in practice. We will also apply smoothed analysis to the simplex method, clustering problems, the traveling salesman problem, etc.