PageRank Explained For Modern SEO

Pagerank is a link analysis algorithm that scores how likely a random web surfer is to land on a particular page, and while it is not the only ranking system Google uses today, its link-based principles still shape how search engine results are discovered, understood, and ordered.

Created: February 15, 2026 | Updated: 15/02/2026 | Reading Time: 9 Mintes

Ben Tippett

SEO Strategist

On this page
    Search engine optimisation visualisation with page ranking

    Pagerank is a link analysis algorithm that scores how likely a random web surfer is to land on a particular page, and while it is not the only ranking system Google uses today, its link-based principles still shape how search engine results are discovered, understood, and ordered.

    Google Search is powered by multiple systems working together: language understanding, freshness, deduplication, and more. Pagerank sits in that landscape as the classic way to model relative importance through links, not keywords alone. Treat it as a foundation for how link value flows across your website pages and the wider web graph.

    What Pagerank Is And Why It Still Matters

    Pagerank assigns each page a probability between 0 and 1 representing the chance a random surfer arrives there by following links, which makes it a principled way to rank web pages in a directed graph of links.

    The underlying assumption is simple. Pages linking to a target cast a kind of vote, and the more important those pages already are, the more useful that vote becomes. Larry Page and Googleโ€™s founders introduced Pagerank to move Google Search beyond counting terms to interpreting link popularity between web pages. The old Google Toolbar score is gone, but link evaluation remains a signal within a modern ranking system.

    The Pagerank Algorithm In Plain English

    Pagerank works by counting the number and quality of incoming links and dividing a linking pageโ€™s score equally across its outbound links, so pages linked by many important sources tend to become important themselves.

    Formally, for a page A:

    PR(A)=1โˆ’dN+dโˆ‘BโˆˆInlinks(A)PR(B)L(B)PR(A)=\frac{1-d}{N} + d\sum_{B\in \text{Inlinks}(A)}\frac{PR(B)}{L(B)}PR(A)=N1โˆ’dโ€‹+dBโˆˆInlinks(A)โˆ‘โ€‹L(B)PR(B)โ€‹

    • ddd is the damping factor, typically 0.85, the probability a surfer keeps clicking rather than jumping to a random page.
    • NNN is the number of pages in the set.
    • L(B)L(B)L(B) is the number of outbound links on page B.

    This probability form makes all Pagerank values sum to 1, which is helpful for teaching and for interpreting approximate Pagerank values. In practice, the algorithm runs unweighted in the simplified version and the Pagerank algorithm outputs a probability for each page.

    How Pagerank Works: The Random Surfer And Damping Factor

    The damping factor models reality. People do not click links forever, so on each step they continue with probability ddd or jump to a random page with probability 1โˆ’d1-d1โˆ’d.

    That small adjustment prevents sinks from trapping the surfer and keeps the maths stable across the whole web graph. Think of 1โˆ’d1-d1โˆ’d as the ever-present chance of starting a new Google Search or typing a new URL. The formula then gives every page a small base share (1โˆ’d)/N(1-d)/N(1โˆ’d)/N while the rest of the Pagerank is transferred along links.

    Pagerank Computation: From Initial Value To Convergence

    Pagerank computations require several passes through the set of pages. You start with the same value for every page and adjust approximate Pagerank values until they stabilise.

    A typical process looks like this:

    1. Initial Probability Distribution. Set every page to the same value 1/N1/N1/N. This is the default value and hence the initial value in the simplified algorithm.
    2. Iterate. Update every pageโ€™s score using the formula. This is where you adjust approximate Pagerank values toward the true result.
    3. Check Convergence. Stop when the total change across all pages falls below a small threshold.

    This is the power method from linear algebra. The final vector is often called the Pagerank vector, and it is the dominant eigenvector of a column-stochastic matrix derived from links.

    Pagerank Syntax And Notation

    It helps to standardise notation so writers and engineers speak the same language about the original Pagerank algorithm.

    • Pages And Node IDs. Treat pages as nodes with IDs. Use lower-case indices when needed, for example page i or page u to denote a particular page in the set.
    • Inlinks And Outlinks. Let BuB_uBuโ€‹ be the set of pages linking to page u, and let L(v)L(v)L(v) be the number of outbound links on page v.
    • Vectors And Matrices. Collect scores into a column vector PR\mathbf{PR}PR. Multiplying by a transition matrix updates the Pagerank vector in one step.
    • Graph Types. The web is a directed graph. Some libraries will allow an undirected graph and convert each edge to two directions, but the core model is directional.
    • Simplified Algorithm Assume. In the simplified algorithm assume equal weight for every outgoing link, so the Pagerank score is divided evenly across only links that exist on the current page.

    A Worked Four-Page Example You Can Follow

    Consider four web pages A, B, C, and D with d=0.85d=0.85d=0.85. Value flows from linkers to linkees in proportion to the linking pagesโ€™ current scores divided by their outbound links.

    Set-up:

    • B links to A and C. That is two outbound links.
    • C links to A. That is one outbound link.
    • D links to A, B, C. That is three outbound links.
    • A links to nobody. It is the only page without outlinks, so during computation it is treated as linking to all pages equally.

    Iteration 0. Same value for all: PR(A)=PR(B)=PR(C)=PR(D)=0.25PR(A)=PR(B)=PR(C)=PR(D)=0.25PR(A)=PR(B)=PR(C)=PR(D)=0.25.
    Iteration 1 (intuitive flow before damping).

    • A receives 0.25/20.25/20.25/2 from B, 0.25/10.25/10.25/1 from C, and 0.25/30.25/30.25/3 from D, which totals about 0.458 before the damping mix.
    • Apply (1โˆ’d)/N(1-d)/N(1โˆ’d)/N to every page and multiply link contributions by ddd to maintain a clean probability distribution.

    A few more iterations stabilise the Pagerank results. A ends up highest because multiple pages linking to it transfer their existing value, and one of them funnels all of its value to the same destination.

    Internet links visualisation

    How Links Pass Value: Placement, Context, And Attributes

    Not all links are equal in practice. A visible, in-content link that readers click carries more practical weight than a boilerplate link in a footer, and links on relevant pages are more helpful than links on barely related pages.

    Placement and context influence how much value a link can realistically pass. Build links for real clicks, place them inside the main body where they help readers, and prefer relevant pages over generic mentions.

    Internal Links And Link Value

    Internal links are the easiest way to distribute Pagerank through your own site so that important pages are not stranded.

    Use internal links to:

    • Surface Your Best Pages From Hubs. Link guides and money pages from category hubs and from evergreen content.
    • Reduce Crawl Depth. Keep important pages within three clicks of the homepage.
    • Match Anchor To Destination. Use concise, descriptive anchors.
    • Fix Orphans. Add contextual links to pages that have zero internal inlinks.

    Anchor Text: How The Clickable Words Help Relevance

    Anchor text gives a relevance clue about the page you are linking to, so write anchors that say what the target page actually is.

    Short, descriptive anchors are better than generic instructions. Avoid over optimised anchors. Natural phrasing that mirrors the target H1 is usually the best option.

    Canonicals, Redirects, And Consolidating Link Signals

    Canonical tags and 301 redirects consolidate signals so that Pagerank and other link-related signals are not split across duplicates or old URLs.

    • Map old URLs to the closest new equivalent with 301 redirects.
    • Point duplicates at the preferred page with rel=”canonical”.
    • Keep HTTPS and migration chains short so value is not lost in multiple hops.

    Nofollow Links, Sponsored, And UGC

    rel=”nofollow”, rel=”sponsored”, and rel=”ugc” are hints about link nature. Use them to label paid or untrusted links, not to manipulate Pagerank.

    • Sponsored for ads and paid placements.
    • UGC for links in comments and forums you do not fully vouch for.
    • Nofollow when you cannot or do not want to signal endorsement.

    Avoid Pagerank sculpting with internal nofollow. Let architecture and clear navigation distribute value instead.

    Personalized Pagerank: Topic And User Biased Variants

    Personalized Pagerank biases the random jump toward chosen nodes such as a topic hub or a userโ€™s interests, which yields rankings tailored to that focus.

    In practice:

    • On Site Search can bias toward top categories or recent content.
    • Recommendation Systems can bias toward authors or products a user has interacted with.
    • Enterprise Graphs can bias toward authoritative resources.

    Mechanically, you change the personalisation vector so more mass is assigned to the chosen nodes, and the Pagerank vector reflects that bias after a few rounds.

    How Pagerank Interacts With Modern Ranking Systems

    Pagerank works alongside content understanding, deduplication, freshness, and page experience. Link importance is necessary, not sufficient.

    • Content Quality. Pagerank will not rescue thin content.
    • Deduplication. Canonicalise near duplicates so one URL receives the signals.
    • Freshness. Update when the topic is time sensitive.
    • Experience. Improve responsiveness and stability on templates that host your most linkable assets.
     The 3 pillars of SEO authority relevance and experience

    Building Authority And Avoiding Manipulation

    High Pagerank links in the historical sense came from reputable, topic relevant sites. The same principle applies today, but do not try to manipulate Pagerank with schemes.

    A practical playbook:

    • Publish useful resources such as calculators, benchmarks, or buying guides.
    • Pitch relevant publications with unique data or expert perspectives.
    • Cascade value internally by adding 2 to 3 contextual internal links from a newly linked asset to related pages.
    • Do not buy links or rely on private link networks. Trying to manipulate Pagerank is risky and short lived.

    Internal Linking Patterns That Distribute Authority

    Use predictable patterns so value flows logically from your strongest pages to the ones that need it.

    • Hub And Spoke Clusters. Hubs link to spokes. Spokes link back and laterally where useful.
    • Series Navigation. Previous and next links plus an index page.
    • Contextual Read Next. At the end of articles, link 2 to 3 topic adjacent pages.
    • Template Links For Discoverability. From products to buying guides and back to categories.

    Measurement: Practical Proxies For Pagerank Today

    There is no public Pagerank score, so track a basket of proxies that reflect authority and discoverability across search rankings and search results.

    • Unique referring domains to each cornerstone page and cluster.
    • Topical relevance of linking sites rather than generic metrics.
    • Internal inbound links into each important page.
    • Crawl depth, orphan rate, and index coverage.
    • Core Web Vitals on templates that host your link earning content.
    • Periodic exports of Pagerank results if you compute an internal model for your own site.

    A Short History Of Pagerank

    Pagerank was introduced at Stanford in the mid 1990s by Larry Page and colleagues, published publicly in 1998, and it kick started modern web search.

    Highlights:

    • Origins In Citation Analysis. The idea that citations convey authority was adapted to hyperlinks across the web graph.
    • Public Visibility Ended In 2016. The Google Toolbar score was retired, but the concept of link based importance persisted internally.
    • Not The Only Algorithm. Pagerank is not the only algorithm in Google Search. It is one rank algorithm among many signals in a broader ranking system.

    Implementation Notes If You Want To Experiment

    You can compute Pagerank with a graph library or write a small matrix routine. The key is to use a column stochastic transition matrix, apply ddd, and iterate to convergence.

    • Handle dangling nodes by distributing their mass evenly across all nodes.
    • Choose an epsilon tolerance for convergence and stop when the change is small.
    • Start with a uniform initial probability distribution unless you are demonstrating personalisation.
    • For demonstrations, show page a, page b, page c, and page d as node IDs, then extend to numbered node ids.
    • You can run a variant on an undirected graph by turning each edge into two directions, but the intended model is a directed graph.

    Conclusion: The Pragmatic Takeaway

    Pagerank is the best mental model for how link equity flows across a site. Focus on earning reputable, topic relevant links and on building an internal structure that moves that equity to pages that satisfy intent.

    Keep your architecture simple, your internal links clear, and your content genuinely helpful. Use canonical tags and redirects to consolidate signals, label untrusted links correctly, and improve page experience on the templates that host your most linkable assets. That is how Pagerank thinking turns into durable gains in search engine results on the Google Search engine.


    Category: Guides, SEO Tips

    On this page

      Get our newsletter

      We send 1 or 2 emails per month โ€”a company update as well as shared learnings from our own entrepreneurial journey.

      Please enter a valid email address.
      Something went wrong. Please check your entries and try again.

      Ben Tippett

      SEO Strategist

      Ben brings over a decade of experience in digital marketing, specialising in SEO strategy and link acquisition. With a background in helping Australian businesses grow their online presence, Ben understands the power of authoritative, locally relevant backlinks.

      With a passion for building scalable digital systems, Ben has spent the past decade refining processes that balance transparency, trust, and long-term performance. His commitment to ethical link practices and platform integrity has helped position AU Backlinks as a trusted partner to SEO professionals and digital marketers across Australia.

      At AU Backlinks, he focuses on building sustainable link networks that drive long-term results, while maintaining full transparency and quality standards across all partnerships.

      FAQ

      Frequently Asked Questions

      Find answers to common questions about our backlink services.

      Does Google Still Use Pagerank?

      Yes, links are still evaluated, but Pagerank is only one piece among many systems that collectively determine results. Treat it as a conceptual model rather than a visible score to optimise directly.

      What Damping Factor Should I Use in Examples?
      Do Nofollow Links Pass Pagerank?
      How Do Internal Links Change Pagerank Value?
      What Is Personalised Pagerank?
      Can Sites Manipulate Pagerank Today?

      Ready to Work With Us? Get in Touch

      Join hundreds of Australian businesses that have improved their search rankings with our premium backlink solutions.

      This field is for validation purposes and should be left unchanged.

      Related Resources

      Explore our knowledge base to learn more about link building and SEO strategies.

      Ready to Work With Us?

      Join hundreds of Australian businesses that have improved their search rankings with our premium backlink solutions.