+ All Categories
Home > Documents > Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… ·...

Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… ·...

Date post: 03-Apr-2018
Category:
Upload: dinhnguyet
View: 216 times
Download: 1 times
Share this document with a friend
78
Markov chains: examples Markov chains: theory Google’s PageRank algorithm Math 312 Markov chains, Google’s PageRank algorithm Jeff Jauregui October 25, 2012 Math 312
Transcript
Page 1: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Math 312Markov chains, Google’s PageRank algorithm

Jeff Jauregui

October 25, 2012

Math 312

Page 2: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Random processes

Goal: model a random process in which a systemtransitions from one state to another at discrete time steps.

At each time, say there are n states the system could be in.

At time k , we model the system as a vector ~xk ∈ Rn (whoseentries represent the probability of being in each of the nstates).

Here, k = 0, 1, 2, . . ., and “initial state” is ~x0.

Definition

A probability vector is a vector in Rn whose entries arenonnegative and sum to 1.

Math 312

Page 3: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Random processes

Goal: model a random process in which a systemtransitions from one state to another at discrete time steps.

At each time, say there are n states the system could be in.

At time k , we model the system as a vector ~xk ∈ Rn (whoseentries represent the probability of being in each of the nstates).

Here, k = 0, 1, 2, . . ., and “initial state” is ~x0.

Definition

A probability vector is a vector in Rn whose entries arenonnegative and sum to 1.

Math 312

Page 4: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Random processes

Goal: model a random process in which a systemtransitions from one state to another at discrete time steps.

At each time, say there are n states the system could be in.

At time k , we model the system as a vector ~xk ∈ Rn (whoseentries represent the probability of being in each of the nstates).

Here, k = 0, 1, 2, . . ., and “initial state” is ~x0.

Definition

A probability vector is a vector in Rn whose entries arenonnegative and sum to 1.

Math 312

Page 5: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Random processes

Goal: model a random process in which a systemtransitions from one state to another at discrete time steps.

At each time, say there are n states the system could be in.

At time k , we model the system as a vector ~xk ∈ Rn (whoseentries represent the probability of being in each of the nstates).

Here, k = 0, 1, 2, . . ., and “initial state” is ~x0.

Definition

A probability vector is a vector in Rn whose entries arenonnegative and sum to 1.

Math 312

Page 6: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Random processes

Goal: model a random process in which a systemtransitions from one state to another at discrete time steps.

At each time, say there are n states the system could be in.

At time k , we model the system as a vector ~xk ∈ Rn (whoseentries represent the probability of being in each of the nstates).

Here, k = 0, 1, 2, . . ., and “initial state” is ~x0.

Definition

A probability vector is a vector in Rn whose entries arenonnegative and sum to 1.

Math 312

Page 7: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Cities/suburbs

Model a population in the city vs. suburbs. Say~x0 = (0.60, 0.40)

(meaning 60% live in city, 40% live insuburbs).

Given: each year, 5% of city dwellers move to suburbs (therest stay), and

3% of suburbanites move to city (the rest stay)

Let ~xk = (ck , sk). We’re told:

ck+1 = 0.95ck + 0.03sk

sk+1 = 0.05ck + 0.97sk

i.e.~xk+1 = M~xk .

~x1 = (0.58, 0.42), ~x2 = (0.56, 0.44), ~x10 = (0.47, 0.53), etc.

For k large, ~xk limits to (0.375, 0.625).

Math 312

Page 8: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Cities/suburbs

Model a population in the city vs. suburbs. Say~x0 = (0.60, 0.40) (meaning 60% live in city, 40% live insuburbs).

Given: each year, 5% of city dwellers move to suburbs (therest stay), and

3% of suburbanites move to city (the rest stay)

Let ~xk = (ck , sk). We’re told:

ck+1 = 0.95ck + 0.03sk

sk+1 = 0.05ck + 0.97sk

i.e.~xk+1 = M~xk .

~x1 = (0.58, 0.42), ~x2 = (0.56, 0.44), ~x10 = (0.47, 0.53), etc.

For k large, ~xk limits to (0.375, 0.625).

Math 312

Page 9: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Cities/suburbs

Model a population in the city vs. suburbs. Say~x0 = (0.60, 0.40) (meaning 60% live in city, 40% live insuburbs).

Given: each year, 5% of city dwellers move to suburbs (therest stay), and

3% of suburbanites move to city (the rest stay)

Let ~xk = (ck , sk). We’re told:

ck+1 = 0.95ck + 0.03sk

sk+1 = 0.05ck + 0.97sk

i.e.~xk+1 = M~xk .

~x1 = (0.58, 0.42), ~x2 = (0.56, 0.44), ~x10 = (0.47, 0.53), etc.

For k large, ~xk limits to (0.375, 0.625).

Math 312

Page 10: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Cities/suburbs

Model a population in the city vs. suburbs. Say~x0 = (0.60, 0.40) (meaning 60% live in city, 40% live insuburbs).

Given: each year, 5% of city dwellers move to suburbs (therest stay), and

3% of suburbanites move to city (the rest stay)

Let ~xk = (ck , sk). We’re told:

ck+1 = 0.95ck + 0.03sk

sk+1 = 0.05ck + 0.97sk

i.e.~xk+1 = M~xk .

~x1 = (0.58, 0.42), ~x2 = (0.56, 0.44), ~x10 = (0.47, 0.53), etc.

For k large, ~xk limits to (0.375, 0.625).

Math 312

Page 11: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Cities/suburbs

Model a population in the city vs. suburbs. Say~x0 = (0.60, 0.40) (meaning 60% live in city, 40% live insuburbs).

Given: each year, 5% of city dwellers move to suburbs (therest stay), and

3% of suburbanites move to city (the rest stay)

Let ~xk = (ck , sk). We’re told:

ck+1 = 0.95ck + 0.03sk

sk+1 = 0.05ck + 0.97sk

i.e.~xk+1 = M~xk .

~x1 = (0.58, 0.42), ~x2 = (0.56, 0.44), ~x10 = (0.47, 0.53), etc.

For k large, ~xk limits to (0.375, 0.625).

Math 312

Page 12: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Cities/suburbs

Model a population in the city vs. suburbs. Say~x0 = (0.60, 0.40) (meaning 60% live in city, 40% live insuburbs).

Given: each year, 5% of city dwellers move to suburbs (therest stay), and

3% of suburbanites move to city (the rest stay)

Let ~xk = (ck , sk). We’re told:

ck+1 = 0.95ck + 0.03sk

sk+1 = 0.05ck + 0.97sk

i.e.~xk+1 = M~xk .

~x1 = (0.58, 0.42), ~x2 = (0.56, 0.44), ~x10 = (0.47, 0.53), etc.

For k large, ~xk limits to (0.375, 0.625).

Math 312

Page 13: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Cities/suburbs

Model a population in the city vs. suburbs. Say~x0 = (0.60, 0.40) (meaning 60% live in city, 40% live insuburbs).

Given: each year, 5% of city dwellers move to suburbs (therest stay), and

3% of suburbanites move to city (the rest stay)

Let ~xk = (ck , sk). We’re told:

ck+1 = 0.95ck + 0.03sk

sk+1 = 0.05ck + 0.97sk

i.e.~xk+1 = M~xk .

~x1 = (0.58, 0.42), ~x2 = (0.56, 0.44), ~x10 = (0.47, 0.53), etc.

For k large, ~xk limits to (0.375, 0.625).

Math 312

Page 14: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Cities/suburbs

Model a population in the city vs. suburbs. Say~x0 = (0.60, 0.40) (meaning 60% live in city, 40% live insuburbs).

Given: each year, 5% of city dwellers move to suburbs (therest stay), and

3% of suburbanites move to city (the rest stay)

Let ~xk = (ck , sk). We’re told:

ck+1 = 0.95ck + 0.03sk

sk+1 = 0.05ck + 0.97sk

i.e.~xk+1 = M~xk .

~x1 = (0.58, 0.42), ~x2 = (0.56, 0.44), ~x10 = (0.47, 0.53), etc.

For k large, ~xk limits to (0.375, 0.625).

Math 312

Page 15: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Markov chains

Definition

A Markov matrix (or stochastic matrix) is a square matrix Mwhose columns are probability vectors.

Definition

A Markov chain is a sequence of probability vectors ~x0,~x1,~x2, . . .such that ~xk+1 = M~xk for some Markov matrix M.

Note: a Markov chain is determined by two pieces of information.

Math 312

Page 16: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Markov chains

Definition

A Markov matrix (or stochastic matrix) is a square matrix Mwhose columns are probability vectors.

Definition

A Markov chain is a sequence of probability vectors ~x0,~x1,~x2, . . .such that ~xk+1 = M~xk for some Markov matrix M.

Note: a Markov chain is determined by two pieces of information.

Math 312

Page 17: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Markov chains

Definition

A Markov matrix (or stochastic matrix) is a square matrix Mwhose columns are probability vectors.

Definition

A Markov chain is a sequence of probability vectors ~x0,~x1,~x2, . . .such that ~xk+1 = M~xk for some Markov matrix M.

Note: a Markov chain is determined by two pieces of information.

Math 312

Page 18: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Steady-state vectors

Given a Markov matrix M, does there exist a steady-statevector?

This would be a probability vector ~x such that M~x = ~x .

Solve for steady-state in city-suburb example.

Math 312

Page 19: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Steady-state vectors

Given a Markov matrix M, does there exist a steady-statevector?

This would be a probability vector ~x such that M~x = ~x .

Solve for steady-state in city-suburb example.

Math 312

Page 20: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Steady-state vectors

Given a Markov matrix M, does there exist a steady-statevector?

This would be a probability vector ~x such that M~x = ~x .

Solve for steady-state in city-suburb example.

Math 312

Page 21: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Voter preferences

Suppose voter preferences (for parties “D”, “R” and “L”)shift around randomly via the Markov matrix

A =

0.70 0.10 0.300.20 0.80 0.300.10 0.10 0.40

.

e.g. 20% of supporters of “D” transition to “R” each electioncycle.

Find steady-state.

Math 312

Page 22: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Voter preferences

Suppose voter preferences (for parties “D”, “R” and “L”)shift around randomly via the Markov matrix

A =

0.70 0.10 0.300.20 0.80 0.300.10 0.10 0.40

.

e.g. 20% of supporters of “D” transition to “R” each electioncycle.

Find steady-state.

Math 312

Page 23: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Voter preferences

Suppose voter preferences (for parties “D”, “R” and “L”)shift around randomly via the Markov matrix

A =

0.70 0.10 0.300.20 0.80 0.300.10 0.10 0.40

.

e.g. 20% of supporters of “D” transition to “R” each electioncycle.

Find steady-state.

Math 312

Page 24: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Questions

Questions:

How do we know a steady-state vector exists?

Does a steady-state vector always have nonnegative entries?

Is a steady-state vector unique? Can you ever guarantee it?

Does the Markov chain always settle down to a steady-statevector?

Math 312

Page 25: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Questions

Questions:

How do we know a steady-state vector exists?

Does a steady-state vector always have nonnegative entries?

Is a steady-state vector unique? Can you ever guarantee it?

Does the Markov chain always settle down to a steady-statevector?

Math 312

Page 26: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Questions

Questions:

How do we know a steady-state vector exists?

Does a steady-state vector always have nonnegative entries?

Is a steady-state vector unique? Can you ever guarantee it?

Does the Markov chain always settle down to a steady-statevector?

Math 312

Page 27: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Questions

Questions:

How do we know a steady-state vector exists?

Does a steady-state vector always have nonnegative entries?

Is a steady-state vector unique? Can you ever guarantee it?

Does the Markov chain always settle down to a steady-statevector?

Math 312

Page 28: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Existence

Theorem

If M is a Markov matrix, there exists a vector ~x 6= ~0 such thatM~x = ~x .

Proof:

We’re done if M − I has a nontrivial kernel (i.e., M − I is notinvertible).

so we’re done if (M − I )T has a nontrivial kernel (but(M − I )T = MT − I ).

But I can find a vector in kernel of MT − I .

Math 312

Page 29: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Existence

Theorem

If M is a Markov matrix, there exists a vector ~x 6= ~0 such thatM~x = ~x .

Proof:

We’re done if M − I has a nontrivial kernel

(i.e., M − I is notinvertible).

so we’re done if (M − I )T has a nontrivial kernel (but(M − I )T = MT − I ).

But I can find a vector in kernel of MT − I .

Math 312

Page 30: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Existence

Theorem

If M is a Markov matrix, there exists a vector ~x 6= ~0 such thatM~x = ~x .

Proof:

We’re done if M − I has a nontrivial kernel

(i.e., M − I is notinvertible).

so we’re done if (M − I )T has a nontrivial kernel (but(M − I )T = MT − I ).

But I can find a vector in kernel of MT − I .

Math 312

Page 31: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Existence

Theorem

If M is a Markov matrix, there exists a vector ~x 6= ~0 such thatM~x = ~x .

Proof:

We’re done if M − I has a nontrivial kernel (i.e., M − I is notinvertible).

so we’re done if (M − I )T has a nontrivial kernel

(but(M − I )T = MT − I ).

But I can find a vector in kernel of MT − I .

Math 312

Page 32: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Existence

Theorem

If M is a Markov matrix, there exists a vector ~x 6= ~0 such thatM~x = ~x .

Proof:

We’re done if M − I has a nontrivial kernel (i.e., M − I is notinvertible).

so we’re done if (M − I )T has a nontrivial kernel

(but(M − I )T = MT − I ).

But I can find a vector in kernel of MT − I .

Math 312

Page 33: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Existence

Theorem

If M is a Markov matrix, there exists a vector ~x 6= ~0 such thatM~x = ~x .

Proof:

We’re done if M − I has a nontrivial kernel (i.e., M − I is notinvertible).

so we’re done if (M − I )T has a nontrivial kernel (but(M − I )T = MT − I ).

But I can find a vector in kernel of MT − I .

Math 312

Page 34: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Existence

Theorem

If M is a Markov matrix, there exists a vector ~x 6= ~0 such thatM~x = ~x .

Proof:

We’re done if M − I has a nontrivial kernel (i.e., M − I is notinvertible).

so we’re done if (M − I )T has a nontrivial kernel (but(M − I )T = MT − I ).

But I can find a vector in kernel of MT − I .

Math 312

Page 35: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Uniqueness

Can there be more than one steady-state vector?

How about M = In?

Math 312

Page 36: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Uniqueness

Can there be more than one steady-state vector?

How about M = In?

Math 312

Page 37: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Long-term behavior

Must the system “settle down” to a steady-state?

How about M =

[0 11 0

]?

Math 312

Page 38: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Long-term behavior

Must the system “settle down” to a steady-state?

How about M =

[0 11 0

]?

Math 312

Page 39: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Main theorem

Perron–Frobenius Theorem (circa 1910)

If M is a Markov matrix with all positive entries, then M has aunique steady-state vector, ~x .

If ~x0 is any initial state, then~xk = Mk~x0 converges to ~x as k →∞.

Math 312

Page 40: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Main theorem

Perron–Frobenius Theorem (circa 1910)

If M is a Markov matrix with all positive entries, then M has aunique steady-state vector, ~x . If ~x0 is any initial state, then~xk = Mk~x0 converges to ~x as k →∞.

Math 312

Page 41: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

Problem: Given n interlinked webpages, rank them in order of“importance”.

Assign the pages importance scores x1, x2, . . . , xn ≥ 0.

Key insight: use the existing link structure of the web todetermine importance.

A link to a page is like a vote for itsimportance.

How does this help with web searches?

Working example: n = 4. Page 1 links to 2, 3, and 4. Page 2links to 3 and 4. Page 3 links to 1. Page 4 links to 1 and 3.

Math 312

Page 42: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

Problem: Given n interlinked webpages, rank them in order of“importance”.

Assign the pages importance scores x1, x2, . . . , xn ≥ 0.

Key insight: use the existing link structure of the web todetermine importance.

A link to a page is like a vote for itsimportance.

How does this help with web searches?

Working example: n = 4. Page 1 links to 2, 3, and 4. Page 2links to 3 and 4. Page 3 links to 1. Page 4 links to 1 and 3.

Math 312

Page 43: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

Problem: Given n interlinked webpages, rank them in order of“importance”.

Assign the pages importance scores x1, x2, . . . , xn ≥ 0.

Key insight: use the existing link structure of the web todetermine importance.

A link to a page is like a vote for itsimportance.

How does this help with web searches?

Working example: n = 4. Page 1 links to 2, 3, and 4. Page 2links to 3 and 4. Page 3 links to 1. Page 4 links to 1 and 3.

Math 312

Page 44: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

Problem: Given n interlinked webpages, rank them in order of“importance”.

Assign the pages importance scores x1, x2, . . . , xn ≥ 0.

Key insight: use the existing link structure of the web todetermine importance. A link to a page is like a vote for itsimportance.

How does this help with web searches?

Working example: n = 4. Page 1 links to 2, 3, and 4. Page 2links to 3 and 4. Page 3 links to 1. Page 4 links to 1 and 3.

Math 312

Page 45: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

Problem: Given n interlinked webpages, rank them in order of“importance”.

Assign the pages importance scores x1, x2, . . . , xn ≥ 0.

Key insight: use the existing link structure of the web todetermine importance. A link to a page is like a vote for itsimportance.

How does this help with web searches?

Working example: n = 4. Page 1 links to 2, 3, and 4. Page 2links to 3 and 4. Page 3 links to 1. Page 4 links to 1 and 3.

Math 312

Page 46: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

Problem: Given n interlinked webpages, rank them in order of“importance”.

Assign the pages importance scores x1, x2, . . . , xn ≥ 0.

Key insight: use the existing link structure of the web todetermine importance. A link to a page is like a vote for itsimportance.

How does this help with web searches?

Working example: n = 4. Page 1 links to 2, 3, and 4. Page 2links to 3 and 4. Page 3 links to 1. Page 4 links to 1 and 3.

Math 312

Page 47: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 1

First attempt: let xk equal the number of links to page k .

Do this in example.

Criticism: a link from an “important” page (like Yahoo)should carry more weight than a link from some random blog!

Math 312

Page 48: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 1

First attempt: let xk equal the number of links to page k .

Do this in example.

Criticism: a link from an “important” page (like Yahoo)should carry more weight than a link from some random blog!

Math 312

Page 49: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 1

First attempt: let xk equal the number of links to page k .

Do this in example.

Criticism: a link from an “important” page (like Yahoo)should carry more weight than a link from some random blog!

Math 312

Page 50: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 2

Second attempt: let xk equal the sum of the importancescores of all pages linking to page k .

Do this in example;

obtain a linear system.

Criticism 1: a webpage gets more “votes” (exerts moreinfluence) if it has many outgoing links.

Criticism 2: this system only has the trivial solution!

Math 312

Page 51: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 2

Second attempt: let xk equal the sum of the importancescores of all pages linking to page k .

Do this in example;

obtain a linear system.

Criticism 1: a webpage gets more “votes” (exerts moreinfluence) if it has many outgoing links.

Criticism 2: this system only has the trivial solution!

Math 312

Page 52: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 2

Second attempt: let xk equal the sum of the importancescores of all pages linking to page k .

Do this in example; obtain a linear system.

Criticism 1: a webpage gets more “votes” (exerts moreinfluence) if it has many outgoing links.

Criticism 2: this system only has the trivial solution!

Math 312

Page 53: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 2

Second attempt: let xk equal the sum of the importancescores of all pages linking to page k .

Do this in example; obtain a linear system.

Criticism 1: a webpage gets more “votes” (exerts moreinfluence) if it has many outgoing links.

Criticism 2: this system only has the trivial solution!

Math 312

Page 54: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 2

Second attempt: let xk equal the sum of the importancescores of all pages linking to page k .

Do this in example; obtain a linear system.

Criticism 1: a webpage gets more “votes” (exerts moreinfluence) if it has many outgoing links.

Criticism 2: this system only has the trivial solution!

Math 312

Page 55: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 3

Third attempt (Brin and Page, late 90s): let xk equal the sumof xj/nj , where

the sum is taken over all the pages j that link to page k , and

nj is the number of outoing links on page j .

That is, a page’s number of votes is its importance score, andit gets split evenly among the pages it links to.

Do example.

Write in matrix form.

Solve, and rank the pages by importance.

Math 312

Page 56: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 3

Third attempt (Brin and Page, late 90s): let xk equal the sumof xj/nj , where

the sum is taken over all the pages j that link to page k , and

nj is the number of outoing links on page j .

That is, a page’s number of votes is its importance score, andit gets split evenly among the pages it links to.

Do example.

Write in matrix form.

Solve, and rank the pages by importance.

Math 312

Page 57: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 3

Third attempt (Brin and Page, late 90s): let xk equal the sumof xj/nj , where

the sum is taken over all the pages j that link to page k , and

nj is the number of outoing links on page j .

That is, a page’s number of votes is its importance score, andit gets split evenly among the pages it links to.

Do example.

Write in matrix form.

Solve, and rank the pages by importance.

Math 312

Page 58: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 3

Third attempt (Brin and Page, late 90s): let xk equal the sumof xj/nj , where

the sum is taken over all the pages j that link to page k , and

nj is the number of outoing links on page j .

That is, a page’s number of votes is its importance score, andit gets split evenly among the pages it links to.

Do example.

Write in matrix form.

Solve, and rank the pages by importance.

Math 312

Page 59: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 3

Third attempt (Brin and Page, late 90s): let xk equal the sumof xj/nj , where

the sum is taken over all the pages j that link to page k , and

nj is the number of outoing links on page j .

That is, a page’s number of votes is its importance score, andit gets split evenly among the pages it links to.

Do example.

Write in matrix form.

Solve, and rank the pages by importance.

Math 312

Page 60: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 3

Third attempt (Brin and Page, late 90s): let xk equal the sumof xj/nj , where

the sum is taken over all the pages j that link to page k , and

nj is the number of outoing links on page j .

That is, a page’s number of votes is its importance score, andit gets split evenly among the pages it links to.

Do example.

Write in matrix form.

Solve, and rank the pages by importance.

Math 312

Page 61: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Idea 3

Third attempt (Brin and Page, late 90s): let xk equal the sumof xj/nj , where

the sum is taken over all the pages j that link to page k , and

nj is the number of outoing links on page j .

That is, a page’s number of votes is its importance score, andit gets split evenly among the pages it links to.

Do example.

Write in matrix form.

Solve, and rank the pages by importance.

Math 312

Page 62: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Summary

Summary: given a web with n pages, construct an n × nmatrix A as:

aij =

{1/nj , if page j links to page i

0, otherwise,

where nj is the number of outgoing links on page j .

Sum of jth column is nj/nj = 1, so A is a Markov matrix.

The ranking vector ~x solves A~x = ~x .

Possible issues:

Existence of solution with nonnegative entries?

Non-unique solutions?

Math 312

Page 63: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Summary

Summary: given a web with n pages, construct an n × nmatrix A as:

aij =

{1/nj , if page j links to page i

0, otherwise,

where nj is the number of outgoing links on page j .

Sum of jth column is nj/nj = 1, so A is a Markov matrix.

The ranking vector ~x solves A~x = ~x .

Possible issues:

Existence of solution with nonnegative entries?

Non-unique solutions?

Math 312

Page 64: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Summary

Summary: given a web with n pages, construct an n × nmatrix A as:

aij =

{1/nj , if page j links to page i

0, otherwise,

where nj is the number of outgoing links on page j .

Sum of jth column is nj/nj = 1, so A is a Markov matrix.

The ranking vector ~x solves A~x = ~x .

Possible issues:

Existence of solution with nonnegative entries?

Non-unique solutions?

Math 312

Page 65: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Summary

Summary: given a web with n pages, construct an n × nmatrix A as:

aij =

{1/nj , if page j links to page i

0, otherwise,

where nj is the number of outgoing links on page j .

Sum of jth column is nj/nj = 1, so A is a Markov matrix.

The ranking vector ~x solves A~x = ~x .

Possible issues:

Existence of solution with nonnegative entries?

Non-unique solutions?

Math 312

Page 66: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Summary

Summary: given a web with n pages, construct an n × nmatrix A as:

aij =

{1/nj , if page j links to page i

0, otherwise,

where nj is the number of outgoing links on page j .

Sum of jth column is nj/nj = 1, so A is a Markov matrix.

The ranking vector ~x solves A~x = ~x .

Possible issues:

Existence of solution with nonnegative entries?

Non-unique solutions?

Math 312

Page 67: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Summary

Summary: given a web with n pages, construct an n × nmatrix A as:

aij =

{1/nj , if page j links to page i

0, otherwise,

where nj is the number of outgoing links on page j .

Sum of jth column is nj/nj = 1, so A is a Markov matrix.

The ranking vector ~x solves A~x = ~x .

Possible issues:

Existence of solution with nonnegative entries?

Non-unique solutions?

Math 312

Page 68: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

PF Theorem guarantees a unique steady-state vector if theentries of A are strictly positive.

Brin–Page: replace A with

B = 0.85A + 0.15(matrix with every entry 1/n).

B is a Markov matrix.

PF Theorem says B has a unique steady-state vector, ~x .

So ~x can be used for rankings!

Math 312

Page 69: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

PF Theorem guarantees a unique steady-state vector if theentries of A are strictly positive.

Brin–Page: replace A with

B = 0.85A + 0.15(matrix with every entry 1/n).

B is a Markov matrix.

PF Theorem says B has a unique steady-state vector, ~x .

So ~x can be used for rankings!

Math 312

Page 70: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

PF Theorem guarantees a unique steady-state vector if theentries of A are strictly positive.

Brin–Page: replace A with

B = 0.85A + 0.15(matrix with every entry 1/n).

B is a Markov matrix.

PF Theorem says B has a unique steady-state vector, ~x .

So ~x can be used for rankings!

Math 312

Page 71: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

PF Theorem guarantees a unique steady-state vector if theentries of A are strictly positive.

Brin–Page: replace A with

B = 0.85A + 0.15(matrix with every entry 1/n).

B is a Markov matrix.

PF Theorem says B has a unique steady-state vector, ~x .

So ~x can be used for rankings!

Math 312

Page 72: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Google’s PageRank

PF Theorem guarantees a unique steady-state vector if theentries of A are strictly positive.

Brin–Page: replace A with

B = 0.85A + 0.15(matrix with every entry 1/n).

B is a Markov matrix.

PF Theorem says B has a unique steady-state vector, ~x .

So ~x can be used for rankings!

Math 312

Page 73: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Stochastic interpretation of PageRank

What does this have to do with Markov chains?

Brin and Page considered web surfing as a stochastic process:

Quote

PageRank can be thought of as a model of user behavior. Weassume there is a “random surfer” who is given a web page atrandom and keeps clicking on links, never hitting “back” buteventually gets bored and starts on another random page.

i.e., surfer clicks on a link on the current page with probability0.85; opens up a random page with probability 0.15.

A page’s rank is the probability the random user will end upon that page, OR, equivalently

the fraction of time the random user spends on that page inthe long run.

Math 312

Page 74: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Stochastic interpretation of PageRank

What does this have to do with Markov chains?

Brin and Page considered web surfing as a stochastic process:

Quote

PageRank can be thought of as a model of user behavior. Weassume there is a “random surfer” who is given a web page atrandom and keeps clicking on links, never hitting “back” buteventually gets bored and starts on another random page.

i.e., surfer clicks on a link on the current page with probability0.85; opens up a random page with probability 0.15.

A page’s rank is the probability the random user will end upon that page, OR, equivalently

the fraction of time the random user spends on that page inthe long run.

Math 312

Page 75: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Stochastic interpretation of PageRank

What does this have to do with Markov chains?

Brin and Page considered web surfing as a stochastic process:

Quote

PageRank can be thought of as a model of user behavior. Weassume there is a “random surfer” who is given a web page atrandom and keeps clicking on links, never hitting “back” buteventually gets bored and starts on another random page.

i.e., surfer clicks on a link on the current page with probability0.85; opens up a random page with probability 0.15.

A page’s rank is the probability the random user will end upon that page, OR, equivalently

the fraction of time the random user spends on that page inthe long run.

Math 312

Page 76: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Stochastic interpretation of PageRank

What does this have to do with Markov chains?

Brin and Page considered web surfing as a stochastic process:

Quote

PageRank can be thought of as a model of user behavior. Weassume there is a “random surfer” who is given a web page atrandom and keeps clicking on links, never hitting “back” buteventually gets bored and starts on another random page.

i.e., surfer clicks on a link on the current page with probability0.85; opens up a random page with probability 0.15.

A page’s rank is the probability the random user will end upon that page, OR, equivalently

the fraction of time the random user spends on that page inthe long run.

Math 312

Page 77: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Stochastic interpretation of PageRank

What does this have to do with Markov chains?

Brin and Page considered web surfing as a stochastic process:

Quote

PageRank can be thought of as a model of user behavior. Weassume there is a “random surfer” who is given a web page atrandom and keeps clicking on links, never hitting “back” buteventually gets bored and starts on another random page.

i.e., surfer clicks on a link on the current page with probability0.85; opens up a random page with probability 0.15.

A page’s rank is the probability the random user will end upon that page, OR, equivalently

the fraction of time the random user spends on that page inthe long run.

Math 312

Page 78: Math 312 - Markov chains, Google's PageRank algorithmkazdan/312F12/JJ/MarkovChains/markov_goo… · Markov chains: examples Markov chains: theory Google’s PageRank algorithm Random

Markov chains: examplesMarkov chains: theory

Google’s PageRank algorithm

Stochastic interpretation of PageRank

What does this have to do with Markov chains?

Brin and Page considered web surfing as a stochastic process:

Quote

PageRank can be thought of as a model of user behavior. Weassume there is a “random surfer” who is given a web page atrandom and keeps clicking on links, never hitting “back” buteventually gets bored and starts on another random page.

i.e., surfer clicks on a link on the current page with probability0.85; opens up a random page with probability 0.15.

A page’s rank is the probability the random user will end upon that page, OR, equivalently

the fraction of time the random user spends on that page inthe long run.

Math 312


Recommended