1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Define PageRank

Discussion in 'Google' started by Bart Simpson, Jun 2, 2011.

  1. #1
    I want to hear from you guys of how YOU define pagerank and what PR1, 2, 3, 4 is and which one is the best.
     
    Bart Simpson, Jun 2, 2011 IP
  2. subhamoy

    subhamoy Active Member

    Messages:
    193
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    58
    #2
    The PageRank Algorithm

    The original PageRank algorithm was described by Lawrence Page and Sergey Brin in several publications. It is given by

    PR(A) = (1-d) + d (PR(T1)/C(T1) + ... + PR(Tn)/C(Tn))

    where
    PR(A) is the PageRank of page A,
    PR(Ti) is the PageRank of pages Ti which link to page A,
    C(Ti) is the number of outbound links on page Ti and
    d is a damping factor which can be set between 0 and 1.

    So, first of all, we see that PageRank does not rank web sites as a whole, but is determined for each page individually. Further, the PageRank of page A is recursively defined by the PageRanks of those pages which link to page A.

    The PageRank of pages Ti which link to page A does not influence the PageRank of page A uniformly. Within the PageRank algorithm, the PageRank of a page T is always weighted by the number of outbound links C(T) on page T. This means that the more outbound links a page T has, the less will page A benefit from a link to it on page T.

    The weighted PageRank of pages Ti is then added up. The outcome of this is that an additional inbound link for page A will always increase page A's PageRank.

    Finally, the sum of the weighted PageRanks of all pages Ti is multiplied with a damping factor d which can be set between 0 and 1. Thereby, the extend of PageRank benefit for a page by another page linking to it is reduced.

    The Random Surfer Model

    In their publications, Lawrence Page and Sergey Brin give a very simple intuitive justification for the PageRank algorithm. They consider PageRank as a model of user behaviour, where a surfer clicks on links at random with no regard towards content.

    The random surfer visits a web page with a certain probability which derives from the page's PageRank. The probability that the random surfer clicks on one link is solely given by the number of links on that page. This is why one page's PageRank is not completely passed on to a page it links to, but is devided by the number of links on the page.

    So, the probability for the random surfer reaching one page is the sum of probabilities for the random surfer following links to this page. Now, this probability is reduced by the damping factor d. The justification within the Random Surfer Model, therefore, is that the surfer does not click on an infinite number of links, but gets bored sometimes and jumps to another page at random.

    The probability for the random surfer not stopping to click on links is given by the damping factor d, which is, depending on the degree of probability therefore, set between 0 and 1. The higher d is, the more likely will the random surfer keep clicking links. Since the surfer jumps to another page at random after he stopped clicking links, the probability therefore is implemented as a constant (1-d) into the algorithm. Regardless of inbound links, the probability for the random surfer jumping to a page is always (1-d), so a page has always a minimum PageRank.

    A Different Notation of the PageRank Algorithm

    Lawrence Page and Sergey Brin have published two different versions of their PageRank algorithm in different papers. In the second version of the algorithm, the PageRank of page A is given as

    PR(A) = (1-d) / N + d (PR(T1)/C(T1) + ... + PR(Tn)/C(Tn))

    where N is the total number of all pages on the web. The second version of the algorithm, indeed, does not differ fundamentally from the first one. Regarding the Random Surfer Model, the second version's PageRank of a page is the actual probability for a surfer reaching that page after clicking on many links. The PageRanks then form a probability distribution over web pages, so the sum of all pages' PageRanks will be one.

    Contrary, in the first version of the algorithm the probability for the random surfer reaching a page is weighted by the total number of web pages. So, in this version PageRank is an expected value for the random surfer visiting a page, when he restarts this procedure as often as the web has pages. If the web had 100 pages and a page had a PageRank value of 2, the random surfer would reach that page in an average twice if he restarts 100 times.

    As mentioned above, the two versions of the algorithm do not differ fundamentally from each other. A PageRank which has been calculated by using the second version of the algorithm has to be multiplied by the total number of web pages to get the according PageRank that would have been caculated by using the first version. Even Page and Brin mixed up the two algorithm versions in their most popular paper "The Anatomy of a Large-Scale Hypertextual Web Search Engine", where they claim the first version of the algorithm to form a probability distribution over web pages with the sum of all pages' PageRanks being one.

    In the following, we will use the first version of the algorithm. The reason is that PageRank calculations by means of this algorithm are easier to compute, because we can disregard the total number of web pages.

    The Characteristics of PageRank

    The characteristics of PageRank shall be illustrated by a small example.

    We regard a small web consisting of three pages A, B and C, whereby page A links to the pages B and C, page B links to page C and page C links to page A. According to Page and Brin, the damping factor d is usually set to 0.85, but to keep the calculation simple we set it to 0.5. The exact value of the damping factor d admittedly has effects on PageRank, but it does not influence the fundamental principles of PageRank. So, we get the following equations for the PageRank calculation:


    PR(A) = 0.5 + 0.5 PR(C)
    PR(B) = 0.5 + 0.5 (PR(A) / 2)
    PR(C) = 0.5 + 0.5 (PR(A) / 2 + PR(B))

    These equations can easily be solved. We get the following PageRank values for the single pages:

    PR(A) = 14/13 = 1.07692308
    PR(B) = 10/13 = 0.76923077
    PR(C) = 15/13 = 1.15384615

    It is obvious that the sum of all pages' PageRanks is 3 and thus equals the total number of web pages. As shown above this is not a specific result for our simple example.

    For our simple three-page example it is easy to solve the according equation system to determine PageRank values. In practice, the web consists of billions of documents and it is not possible to find a solution by inspection.

    The Iterative Computation of PageRank

    Because of the size of the actual web, the Google search engine uses an approximative, iterative computation of PageRank values. This means that each page is assigned an initial starting value and the PageRanks of all pages are then calculated in several computation circles based on the equations determined by the PageRank algorithm. The iterative calculation shall again be illustrated by our three-page example, whereby each page is assigned a starting PageRank value of 1.
    Iteration PR(A) PR(B) PR(C)
    0 1 1 1
    1 1 0.75 1.125
    2 1.0625 0.765625 1.1484375
    3 1.07421875 0.76855469 1.15283203
    4 1.07641602 0.76910400 1.15365601
    5 1.07682800 0.76920700 1.15381050
    6 1.07690525 0.76922631 1.15383947
    7 1.07691973 0.76922993 1.15384490
    8 1.07692245 0.76923061 1.15384592
    9 1.07692296 0.76923074 1.15384611
    10 1.07692305 0.76923076 1.15384615
    11 1.07692307 0.76923077 1.15384615
    12 1.07692308 0.76923077 1.15384615

    We see that we get a good approximation of the real PageRank values after only a few iterations. According to publications of Lawrence Page and Sergey Brin, about 100 iterations are necessary to get a good approximation of the PageRank values of the whole web.

    Also, by means of the iterative calculation, the sum of all pages' PageRanks still converges to the total number of web pages. So the average PageRank of a web page is 1. The minimum PageRank of a page is given by (1-d). Therefore, there is a maximum PageRank for a page which is given by dN+(1-d), where N is total number of web pages. This maximum can theoretically occur, if all web pages solely link to one page, and this page also solely links to itself.

    But Now a Days thru introduce Google Panda , google webmaster blog say that, Pagerank depends on Good Quality of Content or Resource!

    Thx !
     
    Last edited: Jun 2, 2011
    subhamoy, Jun 2, 2011 IP
  3. Moses8595

    Moses8595 Peon

    Messages:
    4,145
    Likes Received:
    153
    Best Answers:
    1
    Trophy Points:
    0
    #3
    PageRank is Google’s system for ranking web pages.The higher the better!
     
    Moses8595, Jun 2, 2011 IP
  4. nanvymaben

    nanvymaben Member

    Messages:
    192
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #4
    PageRank is a numeric value which is assigned by google and that measures the web importance of a web page, so its always good to have a high PR of the site. The higher page rank is much better for the site.
     
    nanvymaben, Jun 2, 2011 IP
  5. simple007

    simple007 Well-Known Member

    Messages:
    1,356
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    130
    #5
    Pagerank is of null value now :)
     
    simple007, Jun 2, 2011 IP
  6. bogs

    bogs Active Member

    Messages:
    2,142
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    80
    #6
    bogs, Jun 2, 2011 IP
  7. couponsidea

    couponsidea Peon

    Messages:
    61
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    PR 0 To PR 3 New sites or sites with very minimal links
    PR 4 To PR5: Popular sites with a fair amount of inbound links
    PR 6 Very popular sites that have hundreds of quality links
    PR 7 PR 10: Top brands , big companies like google facebook
     
    couponsidea, Jun 2, 2011 IP
  8. seoaccount

    seoaccount Peon

    Messages:
    499
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Page rank is a value which is given by Google to every website/webpage. It exists between 0 to 10. Highest value means a high quality website you have.
     
    seoaccount, Jun 3, 2011 IP
  9. massjo

    massjo Active Member

    Messages:
    1,567
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    78
    #9
    Giving values to the websites
     
    massjo, Jun 3, 2011 IP
  10. veedabiometrics

    veedabiometrics Peon

    Messages:
    64
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Hello friend,

    page rank is a numeric value assigned by search engine that determine how important a web page on the web.A web page ranking is assigned between 0 and 10 according to your page quality.higher rank is better.
     
    veedabiometrics, Jun 3, 2011 IP
  11. katelinfct

    katelinfct Peon

    Messages:
    41
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Hello,

    Page Rank is the quality of your web page. Always remember that high PR is best. High PR shows the quality of content, keyword density, keyword proximity and keyword frequency as well. I hope this information would help you in future as well.

    Thanks!! :)
     
    katelinfct, Jun 3, 2011 IP
  12. ronboyd

    ronboyd Peon

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    There are some great definitions of pagerank here and none of them are incorrect really.
    However I see PR as a status symbol more than anything and tbh I would rather have a page with PR 0 and getting 1000+ targeted visitors per day than a PR9 with rubbish traffic and no conversions.

    Forgive me for assuming that the ultimate aim of a webpage is to convert visitors into buyers.

    Regards Ron
     
    ronboyd, Jun 3, 2011 IP
  13. wiseman.wiseman05

    wiseman.wiseman05 Peon

    Messages:
    792
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #13
    Simply if you've PR 0 means having actually no definite PR. If you've PR 1 means lowest rank and gradually to the upwards it's much reputed. That means PR 10 is the best and there is no more rank above 10.
     
    wiseman.wiseman05, Jun 3, 2011 IP
  14. GuidoB

    GuidoB Member

    Messages:
    327
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    38
    #14
    What he said ;)
     
    GuidoB, Jun 5, 2011 IP
  15. lifeplayer

    lifeplayer Notable Member

    Messages:
    15,609
    Likes Received:
    475
    Best Answers:
    0
    Trophy Points:
    265
    #15
    lifeplayer, Jun 5, 2011 IP
  16. GuidoB

    GuidoB Member

    Messages:
    327
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    38
    #16
    GuidoB, Jun 5, 2011 IP
  17. albertfox985

    albertfox985 Peon

    Messages:
    38
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #17
    It's the ranking set by Google. But I don't rely on it that much since it has also something to do with the age of the website. So I prefer checking Alexa ranking.
     
    albertfox985, Jun 5, 2011 IP
  18. golfpro1

    golfpro1 Peon

    Messages:
    3,058
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #18
    PR is Google's own internal ranking system although Bing has just started its own raning system, it's Google's view on the authority of the site, so sites like Facebook have a PR of 10 and a newly created site will have something like PR N/A or PR 0
     
    golfpro1, Jun 6, 2011 IP
  19. Atco-maart

    Atco-maart Peon

    Messages:
    435
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #19
    In short Page Rank is vote by all the other pages on the web....
     
    Atco-maart, Jun 6, 2011 IP
  20. PromoDirect

    PromoDirect Member

    Messages:
    267
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    28
    #20
    Thanks everyone. I discovered some really good answers about Google's Page Rank. Since there is a variation of answers... there is so much that we learn about different topics.
     
    PromoDirect, Jun 7, 2011 IP