How the scoring works

Separating connection from coincidence

Two stories can look alike for three different reasons: they descend from a common ancestor, one borrowed from the other, or they were invented independently and merely rhyme. Myth Tracker's similarity engine is built to tell these apart — and, above all, to avoid the classic trap of calling every resemblance a connection.

The Seven Sisters problem

The motivating case: Greek mythology has Orion chasing seven sisters who become the Pleiades; First Nations Australian traditions — isolated from Eurasia for roughly 50,000 years before 1788 — tell of seven sisters, pursued by a male figure identified with Orion, who rise into the sky as the same cluster. Both call them seven although most eyes see six stars, and both explain the discrepancy with a lost sister. If these stories are genuinely related, their common source predates the out-of-Africa dispersals: it would be close to 100,000 years old.

But the careful analysis (Berezkin's motif statistics) shows why the naive conclusion is unsafe:

The engine below is that reasoning, made mechanical and applied to every pair of stories in the database.

Step 1 — Decompose stories into motifs

Following Yuri Berezkin's analytical catalogue (and the older Thompson Motif Index / ATU tale-type tradition), each telling is described as a bundle of discrete motifs — "birds sent to find land", "the lost Pleiad", "serpent withholds the waters". Motifs are the unit of comparison because they survive transmission far better than whole plots: stories are re-cut at every retelling, but their components persist.

Each motif in a telling is tagged with a role: core (the story is unrecognisable without it), supporting, or peripheral (local colour).

Step 2 — Weight shared motifs by global rarity

Every motif carries an estimate of how many of the world's traditions attest it (out of ~1000, Berezkin-style). Sharing a near-universal motif is weak evidence; sharing a rare, arbitrary one is strong evidence — the same logic as inverse document frequency in text search, or shared derived characters in cladistics.

rarity(m) = 1 − ln(attestations) / ln(1000)
weight(m) = 0.15 + 0.85 × rarity(m)   // floor: plot overlap still counts a little

"Hunter pursues women" (~400/1000 traditions) gets weight ≈ 0.26; "birds released to scout for land" (~25/1000) gets ≈ 0.60. A pair of stories sharing three rare motifs will vastly outscore a pair sharing three universal ones.

Step 3 — Overlap, weighted by role

The raw similarity is a weighted overlap: shared motifs (counted at the average of their two roles — core-in-one but peripheral-in-the-other is intermediate evidence) divided by shared plus unshared material. Unshared motifs count against the score but are damped: in cladistic terms they are autapomorphies — a story accumulating its own elaborations over millennia is weaker counter-evidence of kinship than a missing shared core.

overlap = Σ shared [ w(m) × avg(roleA, roleB) ] / ( Σ shared [ w(m) × max(roleA, roleB) ] + 0.55 × Σ unshared [ w(m) × role ] )
role weights: core = 3, supporting = 2, peripheral = 1

Step 4 — The core-retention penalty (the coincidence filter)

This is the filter that weeds out stories that seem similar but miss too many essential elements. For each story in the pair, we ask: what fraction of its core motifs is entirely absent from the other? Under real descent or borrowing, core elements tend to survive in some recognisable form; wholesale absence is the signature of coincidence.

missRate = ½ × (coreA missing in B / coreA  +  coreB missing in A / coreB)
penalty = 1 − 0.65 × missRate   // full retention → ×1.0, total disjunction → ×0.35

score = overlap × penalty

This is exactly what demotes Greek–Australian Seven Sisters: healthy motif overlap, but each side's core includes elements (ritual/ice-water on one side, the shame-of-Merope aetiology pattern on the other) that the other side lacks entirely.

Step 5 — Verdict tiers, not fake probabilities

Mythological data is too soft for the score to be read as a probability, so it maps to tiers:

≥ 62%Likely common origin— dense overlap including rare motifs, cores mutually retained (Mesopotamian ↔ Hebrew flood).
38 – 62%Possible connection— real signal, but descent vs. contact vs. chance is not settled (the Mesopotamian ↔ Indian flood traditions, or the Greek ↔ Japanese underworld retrievals).
22 – 38%Superficial resemblance— the likeness rests on common motifs or collapses under the core-retention test.
< 22%Likely coincidence— stories that merely rhyme (the Gun-Yu engineering flood vs. the ark tradition).

What the score deliberately ignores

Geography and chronology are shown on the maps but kept out of the similarity number. That is intentional: transmission plausibility (could these peoples have shared an ancestor or a contact route recently enough?) is a separate question from textual resemblance, and collapsing the two lets each contaminate the other. A high score across an "impossible" gap — like the seven-count of the Pleiades across the Australian isolation barrier — is precisely the interesting kind of result, because it forces a choice: extreme antiquity, unrecorded contact, or a hole in the motif model.

Method lineage

← Back to the Myth Index