Table of Contents

Chapter 1

Section 1: Stable Matching

In this section, our goal is to find an algorithm that generates a perfect, stable matching between n men and n women. The Gale-Shapley algorithm accomplishes this.

Algorithm outline (p 6): Pick a random man and have him propose to his top choice who he has not yet proposed to. This woman will accept if single or if this man is preferred to her current mate. Otherwise he remains single. Repeat this until every man is engaged or has proposed to every woman.

We found the maximum number of iterations for this algorithm is n^2 and that each execution produces the same set of pairs. Since the men propose, they end up with their best possible match.

Readability: 8

Section 2: Five Representative Problems

Now that we've solved the Stable Matching Problem, we have an idea of how the process of algorithm design works. In general, we will usually: formulate a mathematically precise question, design an algorithm, prove it is correct, and give a bound on its running time.

Here are some problems representing the different types we will encounter later.

Readability: 7