Professor Abdul-Quader
Intro to Graphs
Questions?
Complications:
Do you need to handle all of these? No. But some of these could explain strange results.
sort:
A website earns advertising money (per viewer) based on the number of minutes a viewer spends visiting their website. The website only tracks when a browsing session starts and ends.
A user may have multiple browsing sessions open at the same time (multiple facebook tabs open), and the browsing sessions might not be ordered in any way. How can we tally up the minutes a user spends?
The format for the data is a list of intervals: (start1, end1), (start2, end2), \(\ldots\), (start100, end100). This list can be given in any order.
Ideas?
A graph is a set of vertices and edges: \(G = (V, E)\). An edge is a pair of vertices. Graphs can be either undirected or directed. If a graph is directed, edges have a start vertex and end vertex (usually represented by arrows).
Graphs are incredibly useful mathematical abstractions. There are many questions one can think about:
Weights can come into play when dealing with “shortest path” questions.
Let \(G = (V, E)\) be a graph. Suppose \(V = \{ v_1, v_2, \ldots, v_n \}\) (so it has \(n\) vertices).
Adjacency List:
\[ \begin{array}{c|c|c|c|c} & v_1 & v_2 & v_3 & v_4 \\ \hline v_1 & 0 & 1 & 0 & 0 \\ v_2 & 1 & 0 & 1 & 1 \\ v_3 & 0 & 1 & 0 & 0 \\ v_4 & 0 & 1 & 0 & 0 \end{array} \]
Simple graph theory result:
Theorem: Every finite, undirected graph has an even number of vertices with odd degree.
Proof?
Corollary: in every group of people, there is an even number of people who have an odd number of friends.
A \(k\)-clique is a group of \(k\) vertices that all are mutually interconnected. A \(k\)-anti-clique is a group of \(k\) vertices such that none of them are connected to each other.
Theorem: Every graph with at least 6 vertices has either a 3-clique or a 3-anti-clique.
Proof? Corollary (in terms of friendship)?
Application: Google’s PageRank algorithm.
Simplified internet with just 4 websites.
Represent with the following matrix:
\[ \begin{pmatrix} 0 & 0 & .5 & .5 \\ 1/3 & 0 & 0 & 0 \\ 1/3 & 0 & 0 & .5 \\ 1/3 & 1 & .5 & 0 \end{pmatrix} \]
Look for the “steady-state” vectors here. How?