The finding that 44.2% of AI citations come from the first 30% of a page is not editorial preference. It is not a curating habit. It is a structural consequence of how transformer attention works, documented in peer-reviewed research since 2023 and formally explained in Wu et al.'s 2025 ICML paper using a graph-theoretic model of transformer computation.
Understanding why BLUF works mechanistically changes how you apply it. Most AEO guides present BLUF as a content guideline: "put the answer first." The underlying mechanism tells you something more precise: the attention accumulation effect means the closer your key claim is to the beginning of a retrieved chunk, the more likely it is to influence the model's generation — because early tokens in a sequence accumulate computational weight across every subsequent layer. This has specific implications for where you place your most citable claim in every section, not just on the overall page.
What Is the Attention Mechanism and Why Does It Create Position Bias?
Transformer attention is the core computation in every major language model. For each token the model processes, the attention mechanism computes a relevance score between that token and every other token in the sequence. Tokens that score high receive more influence over the current token's representation. The scores are normalised with softmax and weighted, producing a contextualised representation of each token that the model uses to generate the next output token.
The mechanism creates position bias through two interacting effects.
Primacy bias from causal masking. Transformer-based language models use causal masking: each token can attend to tokens before it but not after it. This is what allows the model to generate text left-to-right. A formal consequence of causal masking, proved by Wu et al. at ICML 2025, is that early tokens lie on exponentially more computational paths than late tokens. Each layer of the transformer passes information forward. Early tokens accumulate influence across every layer they pass through. A token at position 10 has been through more attention passes by the time the model reaches position 100 than a token that first appeared at position 90. The result is a primacy bias that grows with model depth — the deeper the model, the stronger the advantage for early-sequence tokens.
Lost in the middle from attention sinks. Liu et al.'s 2023 paper first documented the "lost in the middle" phenomenon: when multiple documents are placed in an LLM's context window, performance on tasks requiring information from the middle documents is systematically worse than performance on tasks requiring information from the first or last document. MIT and Google Cloud AI researchers (Hsieh et al., 2024) traced this to a U-shaped positional attention bias: models consistently attend more strongly to tokens at the start and end of long input sequences, with a measurable attention trough across middle-sequence tokens. IntuitionLabs' June 2026 analysis of the ICML 2025 paper summarised the finding precisely: the earliest tokens in a sequence "accumulate influence over many layers, creating a strong primacy bias."
Neither effect is random or idiosyncratic. Both are structural consequences of the transformer architecture that no major production model has fully eliminated as of 2026.
What Does Position Bias Mean for How AI Engines Select Passages to Cite?
In RAG-based AI search systems, the retrieved passages are assembled into the model's context window in a specific order before the model generates a response. The order matters because of position bias: a passage placed first in the context receives stronger attention from the model than a passage placed fifth, even if both are relevant to the query.
This creates a compounding advantage for content that earns high reranker scores at Stage 3 of the RAG pipeline. The cross-encoder reranker determines which passages enter the context and in what order — typically ranked by confidence score, with the highest-scoring passage placed earliest in the assembled context. A passage that ranks first in the reranker enters the context in the position that the attention mechanism then weights most heavily. Two advantages compound: reranking advantage (the passage is highest-quality) and positional advantage (the passage receives strongest attention weight). Together they produce a disproportionate influence on the final generated answer.
For AEO, the practical implication is that competing for a top-three reranker position is not equivalent to competing for position one through ten. Position one in the retrieved context is substantially more influential than position three, which is substantially more influential than position five. This is why citation rate improvements tend to be non-linear: going from not-cited to cited is a step function, but going from occasionally-cited to consistently-cited and going from cited to leading the synthesis are further improvements driven by position in context assembly.
Why Does the First Sentence Under Every H2 Have Disproportionate AEO Value?
When a RAG system chunks your content, it splits at natural boundaries — paragraph breaks, heading boundaries, sentence ends. A heading followed by a dense paragraph creates a chunk that begins immediately after the heading tag. The first sentence of that paragraph is therefore the first token in the chunk's position-zero slot — the position with maximum accumulated attention weight across subsequent layers.
Growth Memo's February 2026 citation analysis measured this directly: 44.2% of all AI citations extract from the first 30% of page content. The mechanism is not that AI engines prefer the start of pages editorially. It is that the chunking boundary most frequently falls near headings, and the attention mechanism then weights the first tokens in each chunk most heavily. A chunk whose first sentence is a direct answer to the query receives that answer into the highest-attention position. A chunk whose first sentence is contextual framing delays the answer to a lower-attention position within the same chunk.
The BLUF principle is therefore not a readability rule. It is an attention-mechanism optimisation. The BLUF writing guide covers the exact structural implementation. The architectural reason it works: placing the key claim in sentence one gives it the maximum accumulated attention weight when the model processes the chunk during context assembly. Placing it in sentence three loses that positional advantage.
How Does Position Bias Interact With Schema?
Schema is processed during Stage 1 of the RAG pipeline (chunking and indexing) but does not directly affect the attention mechanism during Stage 4 (context assembly and generation). The schema-attention interaction is indirect but important.
FAQPage schema structures content into explicit question-answer pairs. When a chunking system processes a page with FAQPage schema, it has machine-readable signals about where each Q&A pair begins and ends. This allows the chunker to split at Q&A boundaries rather than at arbitrary token counts — meaning each FAQ answer enters the retrieval pool as a complete, self-contained chunk. When that chunk reaches context assembly, the direct answer begins at position zero of the chunk. Combined with the primacy bias from the attention mechanism, the result is that FAQ schema answers are disproportionately influential in context — the answer is both complete (because schema-guided chunking preserved it) and positionally favoured (because it starts the chunk).
HowTo schema operates similarly. Each HowToStep declares a named step with a specific action. Schema-aware chunkers split at step boundaries, producing chunks where step one begins at position zero. The HowTo schema guide covers the implementation. The attention-mechanism reason HowTo schema improves citations for process queries: each step is both independently citable and starts at the maximum-attention position within its chunk.
How Do You Write to Maximise Attention-Mechanism Advantages at the Section Level?
Every section of your content has its own position-zero token — the first word after the heading. The attention mechanism advantages apply at the section level, not just the page level. This means the primacy bias applies independently within each retrieved chunk, which corresponds roughly to each section of your article.
Four writing patterns that exploit position bias at the section level:
Open each section with the specific claim, not the context. "FAQPage schema improves AI citation rates" as the first clause in a section gives the key claim position-zero status in the chunk. "Before discussing schema types, it is worth understanding how AI engines process structured data" gives position-zero status to a framing sentence the model will down-weight relative to the actual claim.
Make the subject of sentence one the entity being claimed about. When the model attends to the opening token cluster, it builds the representation around those tokens first. Starting with the entity name ("FAQPage schema," "NotioncCue," "the RAG pipeline") anchors the model's representation around the correct entity before it processes the predicate. Starting with "In this section" or "It is important to note" anchors the model's representation around a meaningless frame word.
Concentrate your most specific, verifiable claim in the first 20 words. The first 20 words of a chunk receive more accumulated attention weight than the following 200 words combined in a deep model with many layers. "FAQPage schema pages earned 4.2x more AI Overview citations than pages without schema, per Semrush analysis of 325,000 prompts (March 2026)" in the first sentence is dramatically more influential than the same statistic placed at the end of the same paragraph.
Use the last sentence of each section as a secondary emphasis point. The recency bias (the second prong of the U-shaped attention pattern) means the final sentence of a chunk also receives above-average attention weight relative to the middle sentences. Use this for the actionable conclusion: "Submit the updated page via IndexNow within 60 minutes of publication to trigger re-crawl before the attention advantage decays." The instruction at the end is likely to influence model generation more than the same instruction in the middle of the section.
How NotioncCue Captures and Uses Attention-Influenced Citation Data
You cannot directly observe which passages the model attended to most strongly during generation. You can observe the output: which text appeared in the generated answer, which URL was cited, and what claims the model attributed to your content.
The NotioncCue Citation Tracker captures the full AI-generated answer text for your brand's tracked prompts weekly across all five engines. This is how you identify which specific passages from your content are being extracted and cited. When ChatGPT says "According to NotioncCue's analysis, pages with three or more schema types earn citations at 13% higher rates," you know exactly which passage was in the context window — and which section of your content produced that cited claim. Across weeks of tracking, patterns emerge: the same passages get cited repeatedly because they consistently win the reranking stage and then benefit from positional advantage in context assembly. Those passages are your AEO assets. The ones that never appear in citations are the candidates for structural rewriting — moving the claim to sentence one, adding a named source, and tightening the chunk boundary.
The NotioncCue AI Answer Gap Finder surfaces the queries where competitor passages are winning the citation slot you should be filling. When a competitor is consistently cited for a specific query, their passage is beating yours at Stage 3 (reranking) and Stage 4 (context assembly). The Gap Finder gives you the competitor URL — you can read their passage structure and identify whether they are winning through BLUF opening, higher information density, or schema-guided chunking. That diagnosis drives the specific content change needed, rather than generic "improve your content" guidance.
Start your free NotioncCue trial and use the Citation Tracker to identify which passages from your content are currently being extracted. Compare those passages against the sections that never earn citations. The structural difference between cited and uncited passages on your own site tells you more about attention mechanism optimisation than any general guide.
A practical attention-mechanism test costs nothing. Write two versions of the opening sentence for your most important AEO section. Version A opens with context: "Understanding how AI engines select sources requires examining the retrieval pipeline." Version B opens with the claim: "AI engines select sources through a two-stage pipeline: vector similarity retrieval followed by cross-encoder reranking." Paste each version into Perplexity with your target query: "How do AI engines select which sources to cite?" The version Perplexity quotes in its answer is the one whose opening sentence won the attention-weighted competition for the position-zero slot. Use that version.
Frequently Asked Questions About Attention Mechanisms, Position Bias, and AEO
Does the "lost in the middle" problem affect short content or only long documents?
The U-shaped attention bias exists across context lengths, but its practical effect grows with context length. For short passages — 200 to 500 tokens, which is the typical RAG chunk size — the primacy bias is the dominant effect rather than the middle-neglect effect, because the middle of a 300-token chunk is still relatively close to the start. The middle-neglect effect becomes a significant citation problem when AI engines are processing very long pages (3,000+ words) or when multiple long documents are assembled into a single context window. For typical AEO content, the most actionable implication is the primacy bias within each chunk: the first sentence always matters more than the middle sentences.
Do newer models with longer context windows reduce position bias?
Partially. Techniques like Rotary Position Encodings (RoPE) and attention calibration reduce position bias without full elimination. As the DEV Community's March 2026 analysis noted: "as of 2026, no production model has fully eliminated position bias. It is structural to how transformers work." Longer context windows may reduce the severity of middle-neglect by spreading the attention trough across more content, but they do not eliminate primacy bias. Writing with the claim in sentence one remains the correct strategy for every major production model currently deployed.
Can you test whether a specific passage is benefiting from primacy bias?
Yes, indirectly. Place the same claim in the opening sentence of one version of a section and in the third sentence of another version, keeping all other content identical. Run both versions through Perplexity on the target query over a two-week sequential test period. If citation rate improves on the version with the claim in sentence one, you have confirmed the primacy bias effect for that specific passage and query combination. This is the AEO A/B test protocol from the AEO testing guide, applied to a specific hypothesis about position bias.