Question: Problem 2 : PageRank ( 1 0 % ) In this problem you will do some PageRank computations for the following graph: You can implement

Problem 2: PageRank (10%)
In this problem you will do some PageRank computations for the following graph:
You can implement this in Python or do the computations by hand. In order to receive
full credit show your computations or add the (relevant) code and output to your written
answer.
2.1 Compute the PageRank of each page (a,b,c) assuming no teleportation/taxation (aka
set =0 in the original/recursive pagerank equation) with =0.85.
2.2 Compute the PageRank of each page (a,b,c) again assuming =0.85. Note that we
have two PageRank versions, the vanilla ( is a free parameter) and the probabilistic
version (=1-n). Let's use the probabilistic version here (so we don't have to worry
about how to set ).
2.3 Provide the data representation for the edge list, adjacency list, and adjacency matrix
for the example graph above.
2.4 Which data representation (edge list, adjacency list, or adjacency matrix) would you
use for the actual webgraph ?2?
Consider both storage and runtime efficiency for computing PageRank.
State the storage requirement for a general webgraph in terms of the number of pages
n and the number of links m for your selected data structure.
Problem 2 : PageRank ( 1 0 % ) In this problem

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!