Two-column product comparison page being parsed by an AI, with check and cross indicators.

AI · Blog

How to Write a Comparison Page That Wins AI Recommendations

A comparison page is the highest-intent page on most sites, and it is also the page type AI answer engines reach for most often. When someone asks an engine "what should I use for X," the retrieval layer does not go looking for your homepage — it goes looking for content that has already done the comparing. One study of citation sources by engine found that review and comparison sites account for roughly 47% of Perplexity's citations, 32% of Gemini's, and 27% of Google AI Overviews', while brand-owned sites sit at about 6% on Perplexity (AI Search Sources by Engine, Sept 2026). That is the opportunity and the problem in one number. The comparison page is the most retrieved format in the category, and your version of it starts at a structural disadvantage because you own it. Winning means writing a page that survives extraction on its own terms — as a judgment a machine can quote, not a pitch it has to discount.


Why your comparison page starts behind

Answer engines lean on third-party comparison content because that content is already structured as adjudication. G2, Capterra, and editorial "best-of" roundups present criteria, per-option verdicts, and trade-offs in a layout that chunks cleanly. A vendor comparison page usually presents one option winning every row.

The retrieval consequence is mechanical, not moral. A passage that reads "Tool A wins on speed, price, and support" answers only the question "what does Tool A's marketing say." A passage that reads "Tool A is faster under 10k records; Tool B holds up better past 100k" answers the user's actual question and can be lifted into an answer without the engine having to caveat it. The second passage is more extractable because it is more useful when detached from its source. That is the whole test.

So the goal is not to be neutral for its own sake. It is to write passages that still carry information after they lose your byline.


Give every criterion its own answerable section

Answer engines chunk pages into passages and retrieve the passage, not the page. That means your comparison needs one section per decision criterion, each with a heading phrased as the thing a buyer would ask, and each resolved inside the section.

Research on structural features supports treating this as a real lever: the GEO-SFE framework held semantic content constant — same claims, same sources — and varied only document architecture, chunking, and emphasis, then measured citation rates across six generative engines (arXiv 2603.29979). Structure moved the outcome on its own.

Practically:

One criterion per <h2>. "Pricing at scale," "Migration effort," "API coverage." Not "Feature comparison" as a single mega-section.

Verdict in the first sentence. Lead the section with the answer, then support it. Extraction grabs the opening of a chunk far more reliably than the conclusion buried four paragraphs down.

Keep sections substantial but bounded. Vendor analysis of large citation corpora reports that sections of roughly 120–180 words between headings outperform very short ones (SE Ranking analysis, via 2026 B2B citation benchmarks). Treat the range as directional rather than a target to hit exactly — the underlying point is that a chunk needs enough context to stand alone.

Name the losing case explicitly. Every criterion should have a sentence beginning "choose the other one if…" That sentence is the single most quotable line on the page, and it is the one your competitors will not write.


The markup that makes it machine-readable

A comparison page has two machine-readable layers: semantic HTML that marks what each part is, and structured data that states the comparison as facts. The GEO-16 audit of 1,702 citations across three engines found semantic HTML and structured data among the pillars most strongly associated with being cited (arXiv 2509.10762).

html

<main>
  <article>
    <header>
      <h1>Tool A vs Tool B: Which Fits Your Stack?</h1>
      <time datetime="2026-09-17">17 September 2026</time>
    </header>

    <!-- Verdict block: the extractable summary, placed first -->
    <section>
      <h2>The short answer</h2>
      <p>Tool A if you need X. Tool B if you need Y.</p>
    </section>

    <!-- Comparison table: real <table>, real <th> -->
    <table>
      <thead>
        <tr><th scope="col">Criterion</th><th scope="col">Tool A</th><th scope="col">Tool B</th></tr>
      </thead>
      <tbody>
        <tr><th scope="row">Pricing model</th><td>Per seat</td><td>Usage-based</td></tr>
      </tbody>
    </table>

    <section><h2>Pricing at scale</h2><p>Verdict first, then evidence...</p></section>
    <section><h2>Migration effort</h2><p>Verdict first, then evidence...</p></section>
    <section><h2>When to choose Tool B instead</h2><p>...</p></section>
  </article>
</main>

Three things matter here. The table must be a real <table> with <th scope> — a CSS grid of <div>s renders identically and parses as nothing. The verdict section sits before the table, so the first substantial chunk on the page is the answer. And the "when to choose the other one" section is a named <section>, which makes it a retrievable unit rather than a buried hedge.

For structured data, mark each option as a Product or SoftwareApplication inside an ItemList, and mark your FAQ block as FAQPage. If you make claims about specific versions, pricing tiers, or limits, date them — freshness signals were among the strongest citation correlates in the GEO-16 corpus.


Frequently asked questions

Should I write a comparison page about a competitor that beats us on some things? Yes, and say where they win. A page that awards you every criterion is easy to identify as promotional and gives an engine nothing safe to quote. The page that concedes two criteria and wins four is the one that gets extracted, because the concessions make the wins credible.

Do "X vs Y" pages beat "best tools for Z" pages? They answer different prompts. Head-to-head pages capture users who have narrowed to two options; category roundups capture earlier-stage prompts. Head-to-head pages are easier to win because the query is narrower and fewer sites bother to write them well — but they also cap out at the volume of people comparing exactly those two things.

Is there a measured citation lift for comparison pages specifically? No study isolates "comparison page" as a variable. What exists is adjacent: engine-level source-mix data showing comparison and review content is heavily cited, and structural research showing architecture affects citation independent of wording. The inference is reasonable and the mechanism is clear, but nobody has run the controlled test. Treat any specific percentage you see attached to this tactic with suspicion.


Sources & further reading