This is an old revision of the document!


Week 1

Chapter 0: Preface

Algorithms are everywhere. By using algorithms, we can not only find solutions to difficult problems but also do so efficiently and prove that our findings are accurate. If we work hard, we can find solutions to problems as difficult as the Stable Matching problem, as culturally-welcome as the same-sex Stable Matching problem1), and as easy as the Traveling Salesman Problem2) Algorithms help us to take a problem, break it down to its essential components, solve that problem and prove it with advanced logic, and then apply that algorithm to real life problems.

Chapter 1: Introduction: Some Representative Problems

The Stable Matching Problem

Gale and Shapeley developed an algorithm to solve the Stable Matching Problem, typically referred to as the Stable Marriage Problem. The problem states that given n men and n women and a list for each man's and woman's preference list of preferred marriage partners, pair up all of the men and women together such that no unstable matchings occur. An unstable matching is any occasion when a man, m1 is paired with a woman w1 and a man m2 is paired with a woman w2 but m1 and w2 would prefer to be married to each other over their current paired partners. The algorithm consists of having each free man propose to the first woman on his preference list that he hasn't proposed to yet. If the woman is not engaged, they will become engaged. If the woman is engaged but prefers the new man to her current partner (based on her preference list), she will dramatically break off the engagement and run off to elope with the new dream man (at least, until a new Prince Charming comes along).

Five Representative Problems

As we continue to learn about Algorithms, we will come across five main problem themes:

  1. Interval Scheduling Problem
  2. Weighted Interval Scheduling Problem
  3. Bipartite Matching Problem
  4. Independent Set Problem
  5. Competitive Facility Location Problem

The Interval Scheduling Problem is about choosing which ones of potentially many schedule requests to confirm for a given set of time such that as many schedule requests are fulfilled as possible. The Weighted Interval Scheduling Problem is just like the Interval Scheduling Problem except that each schedule request has a “weight” or priority attributed to it and the goal is to find a schedule that contains the most weight possible. The Bipartite Matching Problem is a type of problem where a relationship needs to be established between some or all of the elements in two distinct sets, such as the Stable Marriage Problem. The Independent Set Problem is that given a graph of vertices and their respective edges, find the largest subset of vertices in which no two vertices are directly connected by an edge. The Competitive Facility Location Problem is a problem where two competing sets are trying to claim weighted nodes on a graph that are not adjacent to nodes already claimed by the other set.

Chapter 2: Basics of Algorithm Analysis

FIXME

1)
The footnote on page 3 of the textbook mentions that Gale and Shapely also considered a same-sex case of the Stable Marriage Problem that is very different from the heterosexual Stable Marriage Problem. This article from the “Pholosophy for Programmers” blog is a good read because it addresses the merit of such an algorithm while providing an interesting perspective on the subject.
2)
Note that the italicized words are sarcastically opposite of what they actually are. :-)
You could leave a comment if you were logged in.
courses/cs211/winter2012/journals/garrett/entries/week_1.1326860634.txt.gz · Last modified: 2012/01/18 04:23 by garrettheath4
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0