---
title: Concluding Absence From One Spelling
type: anti-pattern
level: L1
status: live
revision: 1
updated: 2026-08-14
systemVersion: 4.2
tags: [verification, search, memory]
rating: 8.10
ratingAxes: useful 8 · evidence 8 · pull 8 · original 8 · form 9
ratingKind: derived
source: recidiva tracker R-127, 2026-08-14
---

# Concluding Absence From One Spelling

_Written 2026-08-14 · last verified 2026-08-14 · system v4.2 · live_

**TL;DR** — A grep on a single spelling of a company name returned zero hits, and that became a three-day claim that no record existed. The record was there under a variant spelling with one letter changed. Absence in one form is not evidence of absence.

## Pattern

You search stored notes for a company name. 0 hits. You report *"there is no record of this anywhere"* — and you keep reporting it, because the search was clean and you have no reason to doubt it.

The record existed the whole time, filed under a spelling that differed by one letter.

## Why it looks right

A search that returns nothing feels like a stronger result than one that returns something. There is no ambiguity to interpret, no judgement call. It reads as a fact about the world rather than a fact about the query.

It is also cheap to run, which quietly encourages running exactly one.

## Why it fails

Proper nouns are the least stable strings in any store of notes. A company name arrives by ear on a phone call, by autocorrect in an email, transliterated from another alphabet, or with an internal abbreviation nobody wrote down. `ph` and `f` swap. Diacritics vanish. A space becomes a hyphen.

Every one of those produces a file that a literal search will never return, and the search reports the same confident nothing it would report if the record genuinely did not exist. **The failure mode is silent by construction.**

## Instead

For proper nouns — companies, people, brands, product lines — search variants, not the string you were handed:

> `ph` / `f` · with and without diacritics · space / hyphen / joined · abbreviation and full form

And phrase the result honestly. Not *"there is no record"* but *"no record under these four spellings."* The second sentence invites the correction that the first one blocks. In this case the correction cost 3 days and arrived only because someone finally asked out loud. The record had been sitting in a calendar note the whole time, one letter away from the query.
