Page Rank Flashcards

1
Q

What is pagerank:

A

Algorithm that ranks pages according to the number of links directing to the page.

Pages with more links pointing to it have higher authority.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Hyperlink model inbounds

A

Suppose P(a) P(b) P(me)
My page rank = P(me) + BP(b) + YP(a)

B and Y weighted factor

P(me) inherits the page link portion of the pages directed to me )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Hyperlink model

A

Suppose P(a) P(b) P(me)
My page rank =

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Outbounds

A

If a page has n outbound links the weight is split evenly by those N links

B = ½ if P(a) has 2 outbounds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Sinkpage problem

A

When a page has links referencing it but does not reference any other links

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Sink page solution

A

The sinking page is weighted against the whole internet 1/N ( rank distributed over the internet)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Cycle problem

A

Pages may be linked to a closed cycle causing and infinite increase of authority score.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Cycle problem solution

A

Random surfer problem :
We have a damping factor d ( probability the surfer wills start a random session)

Pn + 1 = dH + (1 - d)

We iterate until the current probability of Pn is sufficiently close to the previous Pn

Pn = G^nP°

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Complexity

A

O(MN²)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Example make the transition matrix of

C–>Bpage –> refences –> A page

A

A will have a transition matrix of [1(b) 0(c)]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

If transition matrix is all Zeros than that page is a sink page

A

So the zeros for that pages matrix are transformed to
1/N ( ex 1/3 )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Calculate Google matrix with dampening factor 4/5

A

G = 4/5 * A + ( 1-4/5) *B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly