تبليغاتX
تبلیغات با درآمد بالا در سیستم كسب درآمد از فروتل
پیج رنک page rank
بهینه سازی وب و بالا بردن رنکینگ در موتور جستجو

PageRank

 

Jump to: navigation, search
Mathematical PageRanks (out of 100) for a simple network (PageRanks reported by Google are rescaled logarithmically). Page C has a higher PageRank than Page E, even though it has fewer links to it: the link it has is much higher valued.  A web surfer who chooses a random link on every page (but with 15% likelihood jumps to a random page on the whole web) is going to be on Page E for 8.1% of the time. (The 15% likelihood of jumping to an arbitrary page corresponds to a damping factor of 85%.) Without damping, all web surfers would eventually end up on Pages A, B, or C, and all other pages would have PageRank zero. Page A is assumed to link to all pages in the web, because it has no outgoing links. 
Mathematical PageRanks (out of 100) for a simple network (PageRanks reported by Google are rescaled logarithmically). Page C has a higher PageRank than Page E, even though it has fewer links to it: the link it has is much higher valued. A web surfer who chooses a random link on every page (but with 15% likelihood jumps to a random page on the whole web) is going to be on Page E for 8.1% of the time. (The 15% likelihood of jumping to an arbitrary page corresponds to a damping factor of 85%.) Without damping, all web surfers would eventually end up on Pages A, B, or C, and all other pages would have PageRank zero. Page A is assumed to link to all pages in the web, because it has no outgoing links.

PageRank is a link analysis algorithm that assigns a numerical weighting to each element of a hyperlinked set of documents, such as the World Wide Web, with the purpose of "measuring" its relative importance within the set. The algorithm may be applied to any collection of entities with reciprocal quotations and references. The numerical weight that it assigns to any given element E is also called the PageRank of E and denoted by PR(E).

The name PageRank is a trademark of Google. The PageRank process has been patented (U.S. Patent 6,285,999 ). The patent is not assigned to Google but to Stanford University.

Contents

[hide]

[edit] Description

Google describes PageRank:[1]

PageRank relies on the uniquely democratic nature of the web by using its vast link structure as an indicator of an individual page's value. In essence, Google interprets a link from page A to page B as a vote, by page A, for page B. But, Google looks at more than the sheer volume of votes, or links a page receives; it also analyzes the page that casts the vote. Votes cast by pages that are themselves "important" weigh more heavily and help to make other pages "important".

In other words, a PageRank results from a "ballot" among all the other pages on the World Wide Web about how important a page is. A hyperlink to a page counts as a vote of support. The PageRank of a page is defined recursively and depends on the number and PageRank metric of all pages that link to it ("incoming links"). A page that is linked to by many pages with high PageRank receives a high rank itself. If there are no links to a web page there is no support for that page.

Google assigns a numeric weighting from 0-10 for each webpage on the Internet; this PageRank denotes a site’s importance in the eyes of Google. The scale for PageRank is logarithmic like the Richter Scale and roughly based upon quantity of inbound links as well as importance of the page providing the link.

Numerous academic papers concerning PageRank have been published since Page and Brin's original paper.[2] In practice, the PageRank concept has proven to be vulnerable to manipulation, and extensive research has been devoted to identifying falsely inflated PageRank and ways to ignore links from documents with falsely inflated PageRank.

Alternatives to the PageRank algorithm include the HITS algorithm proposed by Jon Kleinberg, the IBM CLEVER project and the TrustRank algorithm.

[edit] History

PageRank was developed at Stanford University by Larry Page (hence the name Page-Rank[3]) and later Sergey Brin as part of a research project about a new kind of search engine. The project started in 1995 and led to a functional prototype, named Google, in 1998. Shortly after, Page and Brin founded Google Inc., the company behind the Google search engine. While just one of many factors which determine the ranking of Google search results, PageRank continues to provide the basis for all of Google's web search tools.[1]

PageRank is based on citation analysis that was developed in the 1950s by Eugene Garfield at the University of Pennsylvania. Google's founders cite Garfield's work in their original paper. In this way virtual communities of webpages are found. Teoma's search technology uses a communities approach in its ranking algorithm. NEC Research Institute has worked on similar technology. Web link analysis was first developed by Jon Kleinberg and his team while working on the CLEVER project at IBM's Almaden Research Center.

[edit] Algorithm

PageRank is a probability distribution used to represent the likelihood that a person randomly clicking on links will arrive at any particular page. PageRank can be calculated for any-size collection of documents. It is assumed in several research papers that the distribution is evenly divided between all documents in the collection at the beginning of the computational process. The PageRank computations require several passes, called "iterations", through the collection to adjust approximate PageRank values to more closely reflect the theoretical true value.

A probability is expressed as a numeric value between 0 and 1. A 0.5 probability is commonly expressed as a "50% chance" of something happening. Hence, a PageRank of 0.5 means there is a 50% chance that a person clicking on a random link will be directed to the document with the 0.5 PageRank.

[edit] Simplified algorithm

How PageRank Works 
How PageRank Works

Assume a small universe of four web pages: A, B, C and D. The initial approximation of PageRank would be evenly divided between these four documents. Hence, each document would begin with an estimated PageRank of 0.25.

In the original form of PageRank initial values were simply 1. This meant that the sum of all pages was the total number of pages on the web. Later versions of PageRank (see the below formulas) would assume a probability distribution between 0 and 1. Here we're going to simply use a probability distribution hence the initial value of 0.25.

If pages B, C, and D each only link to A, they would each confer 0.25 PageRank to A. All PageRank PR( ) in this simplistic system would thus gather to A because all links would be pointing to A.

PR(A)= PR(B) + PR(C) + PR(D).\, 

But then suppose page B also has a link to page C, and page D has links to all three pages. The value of the link-votes is divided among all the outbound links on a page. Thus, page B gives a vote worth 0.125 to page A and a vote worth 0.125 to page C. Only one third of D's PageRank is counted for A's PageRank (approximately 0.083).

PR(A)= \frac{PR(B)}{2}+ \frac{PR(C)}{1}+ \frac{PR(D)}{3}.\, 

In other words, the PageRank conferred by an outbound link L( ) is equal to the document's own PageRank score divided by the normalized number of outbound links (it is assumed that links to specific URLs only count once per document).

PR(A)= \frac{PR(B)}{L(B)}+ \frac{PR(C)}{L(C)}+ \frac{PR(D)}{L(D)}. \, 

In the general case, the PageRank value for any page u can be expressed as:

PR(u) = \sum_{v \in B_u} \frac{PR(v)}{L(v)},

i.e. the PageRank value for a page u is dependent on the PageRank values for each page v out of the set Bu (this set contains all pages linking to page u), divided by the number L(v) of links from page v.

[edit] Damping factor

The PageRank theory holds that even an imaginary surfer who is randomly clicking on links will eventually stop clicking. The probability, at any step, that the person will continue is a damping factor d. Various studies have tested different damping factors, but it is generally assumed that the damping factor will be set around 0.85.[4]

The damping factor is subtracted from 1 (and in some variations of the algorithm, the result is divided by the number of documents in the collection) and this term is then added to the product of the damping factor and the sum of the incoming PageRank scores.

That is,

PR(A)= 1 - d + d \left( \frac{PR(B)}{L(B)}+ \frac{PR(C)}{L(C)}+ \frac{PR(D)}{L(D)}+\,\cdots \right) 

or (N = the number of documents in collection)

PR(A)= {1 - d \over N} + d \left( \frac{PR(B)}{L(B)}+ \frac{PR(C)}{L(C)}+ \frac{PR(D)}{L(D)}+\,\cdots \right) . 

So any page's PageRank is derived in large part from the PageRanks of other pages. The damping factor adjusts the derived value downward. The second formula above supports the original statement in Page and Brin's paper that "the sum of all PageRanks is one".[2] Unfortunately, however, Page and Brin gave the first formula, which has led to some confusion.

Google recalculates PageRank scores each time it crawls the Web and rebuilds its index. As Google increases the number of documents in its collection, the initial approximation of PageRank decreases for all documents.

The formula uses a model of a random surfer who gets bored after several clicks and switches to a random page. The PageRank value of a page reflects the chance that the random surfer will land on that page by clicking on a link. It can be understood as a Markov chain in which the states are pages, and the transitions are all equally probable and are the links between pages.

If a page has no links to other pages, it becomes a sink and therefore terminates the random surfing process. However, the solution is quite simple. If the random surfer arrives at a sink page, it picks another URL at random and continues surfing again.

When calculating PageRank, pages with no outbound links are assumed to link out to all other pages in the collection. Their PageRank scores are therefore divided evenly among all other pages. In other words, to be fair with pages that are not sinks, these random transitions are added to all nodes in the Web, with a residual probability of usually d = 0.85, estimated from the frequency that an average surfer uses his or her browser's bookmark feature.

So, the equation is as follows:

PR(p_i) = \frac{1-d}{N} + d \sum_{p_j \in M(p_i)} \frac{PR (p_j)}{L(p_j)} 

where p1,p2,...,pN are the pages under consideration, M(pi) is the set of pages that link to pi, L(pj) is the number of outbound links on page pj, and N is the total number of pages.

The PageRank values are the entries of the dominant eigenvector of the modified adjacency matrix. This makes PageRank a particularly elegant metric: the eigenvector is


\mathbf{R} =
\begin{bmatrix}
PR(p_1) \\
PR(p_2) \\
\vdots \\
PR(p_N)
\end{bmatrix}
 

where R is the solution of the equation


\mathbf{R} =

\begin{bmatrix}
{(1-d)/ N} \\
{(1-d) / N} \\
\vdots \\
{(1-d) / N}
\end{bmatrix}

+ d

\begin{bmatrix}
\ell(p_1,p_1) & \ell(p_1,p_2) & \cdots & \ell(p_1,p_N) \\
\ell(p_2,p_1) & \ddots &  & \vdots \\
\vdots & & \ell(p_i,p_j) & \\
\ell(p_N,p_1) & \cdots & & \ell(p_N,p_N)
\end{bmatrix}

\mathbf{R}

 

where the adjacency function \ell(p_i,p_j) is 0 if page pj does not link to pi, and normalised such that, for each j

\sum_{i = 1}^N \ell(p_i,p_j) = 1, 

i.e. the elements of each column sum up to 1.

This is a variant of the eigenvector centrality measure used commonly in network analysis.

The values of the PageRank eigenvector are fast to approximate (only a few iterations are needed) and in practice it gives good results.

As a result of Markov theory, it can be shown that the PageRank of a page is the probability of being at that page after lots of clicks. This happens to equal t − 1 where t is the expectation of the number of clicks (or random jumps) required to get from the page back to itself.

The main disadvantage is that it favors older pages, because a new page, even a very good one, will not have many links unless it is part of an existing site (a site being a densely connected set of pages, such as Wikipedia). The Google Directory (itself a derivative of the Open Directory Project) allows users to see results sorted by PageRank within categories. The Google Directory is the only service offered by Google where PageRank directly determines display order. In Google's other search services (such as its primary Web search) PageRank is used to weight the relevance scores of pages shown in search results.

Several strategies have been proposed to accelerate the computation of PageRank.[5]

Various strategies to manipulate PageRank have been employed in concerted efforts to improve search results rankings and monetize advertising links. These strategies have severely impacted the reliability of the PageRank concept, which seeks to determine which documents are actually highly valued by the Web community.

Google is known to actively penalize link farms and other schemes designed to artificially inflate PageRank. In December 2007 Google started actively penalizing sites selling paid text links. How Google identifies link farms and other PageRank manipulation tools are among Google's trade secrets.

[edit] Variations

[edit] Google Toolbar

An example of the PageRank indicator as found on the Google toolbar. 
An example of the PageRank indicator as found on the Google toolbar.

The Google Toolbar's PageRank feature displays a visited page's PageRank as a whole number between 0 and 10. The most popular websites have a PageRank of 10. The least have a PageRank of 0. Google has not disclosed the precise method for determining a Toolbar PageRank value. Google representative Matt Cutts has publicly indicated that the Toolbar PageRank values are republished about once every three months, indicating that the Toolbar PageRank values are historical rather than real-time values.[6]

[edit] Google directory PageRank

The Google Directory PageRank is an 8-unit measurement. These values can be viewed in the Google Directory. Unlike the Google Toolbar which shows the PageRank value by a mouseover of the green bar, the Google Directory does not show the PageRank as a numeric value but only as a green bar.

[edit] False or spoofed PageRank

While the PageRank shown in the Toolbar is considered to be derived from an accurate PageRank value (at some time prior to the time of publication by Google) for most sites, it must be noted that this value is also easily manipulated. A current flaw is that any low PageRank page that is redirected, via a 302 server header or a "Refresh" meta tag, to a high PageRank page causes the lower PageRank page to acquire the PageRank of the destination page. In theory a new, PR0 page with no incoming links can be redirected to the Google home page - which is a PR 10 - and by the next PageRank update the PR of the new page will be upgraded to a PR10. This spoofing technique, also known as 302 Google Jacking, is a known failing or bug in the system. Any page's PageRank can be spoofed to a higher or lower number of the webmaster's choice and only Google has access to the real PageRank of the page. Spoofing is generally detected by running a Google search for a URL with questionable PageRank, as the results will display the URL of an entirely different site (the one redirected to) in its results.

[edit] Manipulating PageRank

For search-engine optimization purposes, some companies offer to sell high PageRank links to webmasters.[7] As links from higher-PR pages are believed to be more valuable, they tend to be more expensive. It can be an effective and viable marketing strategy to buy link advertisements on content pages of quality and relevant sites to drive traffic and increase a webmaster's link popularity. However, Google has publicly warned webmasters that if they are or were discovered to be selling links for the purpose of conferring PageRank and reputation, their links will be devalued (ignored in the calculation of other pages' PageRanks). The practice of buying and selling links is intensely debated across the Webmaster's community. Google advises webmasters to use the nofollow HTML attribute value on sponsored links. According to Matt Cutts, Google is concerned about webmasters who try to game the system, and thereby reduce the quality and relevancy of Google search results.[7]

[edit] Other uses

A version of PageRank has recently been proposed as a replacement for the traditional ISI impact factor,[8] and implemented at eigenfactor.org. Instead of merely counting total citation to a journal, the "importance" of each citation is determined in a PageRank fashion.

A similar new use of PageRank is to rank academic doctoral programs based on their records of placing their graduates in faculty positions. In PageRank terms, academic departments link to each other by hiring their faculty from each other (and from themselves).[9]

PageRank has also been used to automatically rank WordNet synsets according to how strongly they possess a given semantic property, such as positivity or negativity.[10]

A dynamic weighting method similar to PageRank has been used to generate customized reading lists based on the link structure of Wikipedia.[11]

A Web crawler may use PageRank as one of a number of importance metrics it uses to determine which URL to visit next during a crawl of the web. One of the early working papers[12] which were used in the creation of Google is Efficient crawling through URL ordering,[13] which discusses the use of a number of different importance metrics to determine how deeply, and how much of a site Google will crawl. PageRank is presented as one of a number of these importance metrics, though there are others listed such as the number of inbound and outbound links for a URL, and the distance from the root directory on a site to the URL.

The PageRank may also be used as a methodology to measure the apparent impact of a community like the Blogosphere on the overall Web itself. This approach uses therefore the PageRank to measure the distribution of attention in reflection of the Scale-free network paradigm.

[edit] Google's "rel='nofollow'" proposal

In early 2005, Google implemented a new value, "nofollow"[14], for the rel attribute of HTML link and anchor elements, so that website developers and bloggers can make links that Google will not consider for the purposes of PageRank — they are links that no longer constitute a "vote" in the PageRank system. The nofollow relationship was added in an attempt to help combat spamdexing.

As an example, people could create many message-board posts with links to their website to artificially inflate their PageRank. With the nofollow value message-board administrator can modify their code to automatically insert "rel='nofollow'" to all hyperlinks in posts, thus preventing PageRank from being affected by those particular posts.

This method of avoidance, however, also has various drawbacks, such as reducing the link value of actual comments. (See: Spam in blogs#nofollow)

[edit] See also

 

 

+ نوشته شده در  یکشنبه یازدهم فروردین 1387ساعت 10:43  توسط مهندس  | 

Get very good traffic to your website with improved rankings in all major search engines using BRL's Link Exchange Service. Get valuable and quality traffic + link partners to your website INSTANTLY and DAILY MORE with BRL link exchange! Almost all major search engines rank your web pages based on the number and the quality of links that point to your web site (link popularity). Genuine & Quickest way to receive quality backlinks is to convience high quality website by offering them something helpful and free in exchange of credit link to your website. This is what we do to gain credit links for our DIRECTORY MEMBERS. We quickly find high quality web sites, offer them free tools or helpful resources for their website and convince them to link to our Directory Members. We offer valueable SEARCH ENGINE TOOLS, Free PAGERANKTM Tools, Link Exchange Software (which is helpful resource for them) in exchange of a credit link to our member websites. JOIN the Build-Reciprocal-Links.com link exchange Program to help each other to get more business and get valuable traffic to your website.

So, what is the cost for this?

Completely free. For website with GoogleTM Search Ranking ( PagerankTM ) 3 or 3+ this service is completely free. For those, just beginning their business or having GoogleTM Search Ranking ( PagerankTM ) less than 3, it is just $49.95/year only. Jump up your traffic and get more business, faster than your competitors, for as low as $49.95/year - One time fee !!!

Not only this...

All registered members of BRL will enjoy Free search engine submission to 400+ engines (including DMOZ & YAHOO Directories).

Jumpline.com will offer Free Virtual Dedicated Server to host upto 20 websites for all BRL members. 



Link Exchange Programme Designed for Beginner or Advanced Webmasters.

Don't worry if you're not a programmer or don't have time for exchanging links. If you don't know how to activate your link in directory, our team of experts will do this completely free for you. That's right, no coding / web master experience necessary. Your website will be active in less than 24 hours in our directory. See the following reasons to go with build-reciprocal-links.com:

Strong reasons to signup with Build-Reciprocal-Links.com
  • Our editors will review each and every website interested in joining BRL. We guarantee you for safe and high quality link popularity program.

  • We don't entertain spammy or no content website. We only include top quality content websites in our directory.

  • Our editors will frequently review your link exchange directories to make sure that you've selected relavant to your business link partners.

  • We don't encourage any website to join this program only for improvement in pagerank or search engine results. Although it helps to improve pagerank, this program is clearly for relevant websites to help each other to get more business and more traffic.

  • Beware!!! Using Manual link exchange, you're asking for reciprocal linking without any purpose for your website. This is InGenuine.

  • Beware!!! Using Manual link exchange software, email exchanges are required to build your link directories. Most of these emails are unsolicited emails. A single unsolicited email request may BAN your website & email address.

  • Using BRL Link Exchange, no email exchange required to build new link partners. We build your link partners without any email exchange.

  • Beware!!! Using Manual link exchange software, searching and building link partners will take months for you.

  • Using BRL's automated link exchange, more than 5000 similar interest and quality link partners are waiting for exchanging link with your website. You just have to approve/reject them. We continue adding them, forever, yes... even while YOU SLEEP.

  • Our softwares and program are automated for adding new link partners to your website. At the same time you've opportunity to select or reject them based on your business nature.

  • Using BRL's link exchange tools, just subscribe and leave all the burden on us !!! You don't think for link exchange for months, though, we will continue adding multiple quality relavant backlinks for you.

  • Using BRL's link exchange, we 100% guarantee for no cheating!!! or your link partner website will be gone!!!

  • BRL offers completely free link exchange service, if your website PagerankTM is higher than 2. If you don't have that, no problem.... our editors will review your website for $49.95 one time fee for inclusion in our directory.

CUSTOMER TESTIMONIALS

hi there i registerd on your link program some while ago recomended by www.your-bids.com. The guy at your-bids.com recomended you and told me his site link pop is geting beter and its all from your site. i would like to join it.

christopher hodgkiss


We just hit #1 in GoogleTM rankings for our site www.beatthecargame.com with your GoogleTM PagerankTM service. It's worked wonderfully for us. "In just two weeks time we went from obscure and unknown to highly visited and worthwhile thanks to Build-Reciprocal-Links.com.

Thank you,

What is Link Exchange?

Link Exchange ("Reciprocal Link Exchange") is the practice of exchanging links with other websites. There are many different ways to arrange a link exchange with webmasters. The simplest way of doing it is to email another website owner and ask to do a link exchange. Also visiting webmaster discussion boards which offer a dedicated link exchange forum where webmasters can request a link exchange be it of a certain category or open to anybody.

Link exchange has been a long time practice by website owners since the beginning of the web. In the last few years (after year 2000), this practice has gained more popularity as search engines such as Google started favoring sites that had more links in the rankings. This system was very accurate at gauging the importance of a website when it first started, leading to the popularity of Google.

However according to some experts, search engines no longer place a heavy emphasis on reciprocal links.

Read More... | Posted By Jason on Tuesday, September 12, 2006)


Any Inbound Links vs. Relevant theme Inbound Links

I have read topics on both sides of the coin - "a link is a link" and "relative links" in terms of SEO value. So, for those who advocate "a link is a link" then if I sell technology product, a link with a travel agency is as good as linking with another technology oriented site? Should PR enter into the decision? I'm leaning towards relevant links and at least a PR higher than "0".I guesss at the simplest level search is about matching a text query to "relevant" text on a website. Relevance is therefore at the core. A link from a relevant site should therefore carry more weight in the matching process than a link from a non-relevant site.

Relevancy is equally and sometime more important than PAGERANK for google. For example,
ABC is a web hosting company with pagerank 6. XYZ is a web hosting company with pagerank 8.
ABC has more Inbound Links from similar theme websites (e.g. web hosting websites)...


Read More... | Posted By Jason on Tuesday, June 27, 2006)


True Reciprocal Link Exchange?

True Reciprocal Link

By LND Marketing

You may be familiar with automatic link exchange services, however, being a member of several of them I can assure you there are some shady webmasters out there who do not reciprocate after they have agreed to exchange or they hide your reciprocal link "in the back" where the automated link exchange software can locate it as directed, but the search engines will never find it.

Manual link exchange does take more time, but it's worth 10 fold more than an automatic link exchange service can offer. Dead links on your site or exchanging links with webmasters who are not reciprocating properly is of no value to you.

True Reciprocal Link Exchange is of great value and these Link Partners are GOLDEN!

If you are going to exchange links... Make it count!

When you are looking to exchange links with someone, there are several important items to look for.


Read More... | Posted By Jason on Friday, February 03, 2006)


Benefits of link exchange


There is no other alternative than initiating a link exchange process in order to garner maximum mileage for your web site. There are plenty of benefits you can reap out of an effective link exchange process. Build-Reciprocal-Links.com is most accomplished link exchange services on the web to facilitate a productive link exchange process. Manua Link Exchange (sending email request for link exchange, waiting for approval, publishing link of your link partner and monitoring your link on their website) is tedious and time consuming process. It may take months to years in gathering thousands of similar theme link exchanges by manual link exchange procedure. Build-Reciprocal-Links.com completely automates link exchange task for you. You don't need to send email requests for link exchange...monitor your link partner website for link exchange... publish link pages... nothing to do. We daily add thousands of similar theme link exchange members to link directory and you approve or reject them for link exchange.

Link Popularity

Link popularity is the ultimate parameter in achieving supreme exposure on the web for your web site. Link popularity is measured by the number and quality of the inbound links of your site. Inbound links helps to attain high search engine ranking for your web site. But your goal will remain unrealized unless you subscribe a top-class link exchange service like build-reciprocal-links.com. As the inbound links to web site is the decisive factor for improved search engine ranking, you have to make sure that your incoming links are of similar theme. Irrelevant links won't fulfill your objective. We care for this!!! We offer opportunity to selectively reject/approve link partners / link exchange categories.

Increased and Targeted Traffic

Effective link exchange can attract larger, quality and targeted traffic for your web site. The link exchange process helps you establish innumerable fruitful links with other web sites. Thus, you can win more quality and targeted visitors from your link partners. The link exchange service from build-reciprocal-links.com, is capable of winning more traffic through your link exchange process. If you want to promote your web site on a limited budget, link exchange is the best option. Link exchange can save a lot of money that you otherwise would have spent on other means of Internet advertising. Link exchange is a very effective and inexpensive approach of gaining popularity and prosperity on the web. In build-reciprocal-links.com, we have combined all the above-mentioned advantages to make it the at proficient link exchange service on the web

 

+ نوشته شده در  یکشنبه یازدهم فروردین 1387ساعت 9:36  توسط مهندس  | 

 
× تبليغات