← All mental models

Reusable cognitive primitives

Recursion & self-similarity

A thing defined in terms of smaller copies of itself — solve the small case and the same rule builds the whole, often looking similar at every scale.

Where it appears

Dependencies & synergies

Derived from the graph’s real structure — 6 concepts across 8 disciplines carry this pattern. Every figure is a count, not a score.

Reach across disciplines

How many concepts carrying this pattern are seen through each discipline.

Patterns that travel with it

Other thinking patterns that recur on the same concepts — the more shared concepts, the more often they co-occur.

The shape of its reasoning

What kinds of relationships the carrying concepts form — the relational signature of the pattern.

  • Kind & structure3 edges
  • Teaching link3 edges
  • Cause & effect1 edges
  • Dependency1 edges
  • Analogy & transfer1 edges
Furthest-reaching carriers

Concepts where this pattern does the most cross-disciplinary work — each reaches disciplines beyond its own.

Foundation of the pattern

Carrying concepts that others in the same pattern build on (they depend on or follow from these).

  1. Recursion 1 other concept build on it

Examples across disciplines

Computer Science

A function that calls itself on a smaller input.

Mathematics

The Fibonacci sequence: each term from the two before it.

Earth & Space Sciences

A coastline looks equally jagged from space or up close.

How this pattern travels

Interpreted from where the pattern recurs in the atlas — structural transfer and coverage, not a claim it is universally the "best" model.

  • Recurs across 8 disciplines over 6 carrier concepts — concentrated (67% of carriers in one field).

    structural · Structural recurrence in the atlas — a pattern is a reasoning lens, not a law.

  • Explicit "where it breaks" notes exist for 4 of 6 annotated assignments.

    curated · Curated boundary annotations — absence is a representation gap, not evidence the model has no limits.

  • Currently dark in the atlas: no origin recorded · no assignment cites a source.

    atlas representation · Describes the current Thinking OS representation, not the model itself.

Coverage matrix

How these concepts distribute across domains and concept families — real counts, not a score.

SystemsInformationMatterChangePatternsEnergyLifeScaleStructureDecisionNetworksWavesCausalityComputationEarthSpaceOptimizationNumberProbabilitySecurityThresholdsConstraintsNatural sciencesFormal sciencesEngineeringMedicine & healthSocial sciencesHumanitiesProfessionalArtsInterdisciplinary312

Knowledge timeline

Real, sourced key dates of these concepts.

2 events
05001000c. 300 BCE · Golden ratio1202 · Fibonacci sequence

The statistical fingerprint

How the 6 concepts that exercise this pattern distribute — from the graph, not a ranking.

Disciplinary fingerprint

Carrier concepts under each illuminating lens.

How settled its carriers are

Epistemic status of the concepts that exercise this pattern.

  • Established6 · 100%

Where the model breaks

This pattern is a reasoning lens, not a law. Here is where it stops helping:

  • Dynamic programming: DP pays off only when subproblems OVERLAP and have optimal substructure; without overlap it is just recursion with memo overhead.
  • Fibonacci sequence: The naive recursive definition is exponential; the pattern is recursive but the efficient computation is iterative or closed-form.
  • Golden ratio: The self-similar recurrence is a mathematical idealisation — biological "golden" patterns are approximate and driven by growth constraints, not a rule.
  • Recursion: Recursion resolves only with a reachable base case; without one it never terminates, and deep non-tail recursion exhausts the stack.
Common misconception

Recursion is circular and never ends. A correct recursion always shrinks toward a base case that stops it.

Try a transfer challenge

You have seen this model in one place. Where else could it apply — and where would the analogy break?

Fibonacci sequence
The intuition

Ask: can I reduce this to a smaller version of the same problem, plus a base case to stop? Zoom into a fractal and you see the whole again.

The reach of this pattern
  • Recurs across 8 disciplines.
  • 13 concepts exercise this thinking pattern.
  • 4 of them explicitly note where the model breaks down.

Derived from the graph — a pattern is a reasoning lens, not a law.

How to recognise it

Can you reduce this to a smaller version of the same problem plus a stopping case — and does it look similar as you zoom in?

Keep this question handy when you meet something new — it helps you notice the pattern, not just name it.