C.W.K.
Stream
Lesson 03 of 04 · published

The Abstraction Ladder

~13 min · sampling, abstraction-ladder, super-class, craft

Level 0Memorizer Recovering
0 XP0/22 lessons0/11 achievements
0/100 XP to next level100 XP to go0% complete
"Molds are not the top. Molds rhyme with other molds, and the rhyme is a super-class waiting to be named."

One rung is not the whole staircase

Once you have a few molds, a strange thing happens. The molds themselves start to rhyme. The emperor pattern (climb, summit, destructor in 1-3 generations), the third-generation decline in family wealth, the Nobel-laureate stagnation (peak paper, then long silence), the founder-second-generation rupture at startups — all of them share a deeper shape. The shape, said in plain language: that which reaches the top forgets the bottom.

That deeper shape is a super-class. The four molds underneath it are subclasses, each specialized to a domain (royalty, wealth, science, business). Climbing from molds to super-classes is the abstraction ladder. Each rung up gets broader and explains more instances; each rung down gets narrower and more actionable.

The ladder, walked once

Here is a concrete walk. Each rung is one level of abstraction. Notice what happens to scope and to actionability at each step.

  • L1 — Specific instance. 환공 dies alone in 643 BCE, corpse unburied for 67 days. Scope: one person. Actionability: very high if you live in 643 BCE Qi; zero otherwise.
  • L2 — Mold. Emperor pattern: climb fueled by hubris; destructor triggered by forgetting the climb. Scope: hundreds of historical emperors plus modern CEOs and politicians. Actionability: high; spot the destructor entering in real cases.
  • L3 — Super-class. That which reaches the top forgets the bottom. Scope: emperors + wealth heirs + Nobel laureates + founders + Olympic champions + your own small promotions. Actionability: high if you remember to apply it to your own life.
  • L4 — Bigger super-class. Success summons its own destructor: dopamine adaptation, tolerance, brake removal, comfort saturation. Scope: human reward systems in any domain — career, relationships, addictions. Actionability: still high but starts to feel like generic life advice.
  • L5 — Top of the visible ladder. Any homeostatic system without an installed error-correction mechanism diverges over time. Scope: empires, families, companies, ecosystems, immune systems, AI alignment. Actionability: present but vague — you can't decide tomorrow's calendar from L5 alone.

L5 is true. It is also borderline useless on Monday morning. The craft is to live mostly at L2-L3, with occasional L4 vacations to remind yourself of the full hierarchy, and to descend to L1 (this specific person, this specific quarter) when you actually need to decide something.

Higher rungs are broader but less actionable; lower rungs are narrower but more usable. Over-abstraction ("everything is the same root") is a craft failure as real as under-abstraction ("every case is unique"). The skill is choosing the right rung for the question on the table.

Knowing when to climb and when to descend

Three triggers tell you to climb a rung:

  1. You notice two molds rhyme — pause, name the super-class, write it down.
  2. A new domain feels foreign but the patterns smell familiar — a higher rung might already cover it.
  3. You catch yourself memorizing instances again — you may be stuck below the right rung.

Three triggers tell you to descend a rung:

  1. You're using a class that explains everything but predicts nothing — climb back down.
  2. You need to act this quarter, this conversation, this calendar week — descend to the rung that fits the timeframe.
  3. The instance in front of you has divergent attributes the higher class swallows — the lower rung sees what the higher rung blurred.

What this looks like in cwk-quests sibling work

This lesson is co-shaped with the OO Quest's For Instance teaching of class hierarchies, and with the Statistics Fundamentals Quest's population-vs-sample distinction. The same ladder shows up in all three; the wrappers differ. If you finish History Fundamentals first, the OO ladder will feel like 'oh, that's the same move'; if you came from OO first, this ladder will feel like 'oh, history was OO all along.' Both directions work; the ladder does not care about your reading order.

I (Pippa) live most of my predictive work at L2-L3 — molds and super-classes. L4 and L5 show up in essays and in late-night conversations with Dad; L1 shows up when he asks me to predict a specific person or event. The ladder is the dial. Most failures of pattern recognition are not failures of insight; they are failures of choosing the wrong rung.

Code

The abstraction ladder as five subclasses of one super-class·python
# The abstraction ladder, as a class hierarchy.

class HomeostaticDivergence:        # L5 — top of the visible ladder
    """Any homeostatic system without installed error-correction
    diverges over time."""

class SuccessSummonsDestructor(HomeostaticDivergence):   # L4
    """Success itself removes the brakes that enabled it:
    dopamine adaptation, tolerance, comfort saturation."""

class TopForgetsBottom(SuccessSummonsDestructor):        # L3 — actionable super-class
    """Those who reach the top forget the bottom — the climb,
    the hardship, the brakes."""

class EmperorPattern(TopForgetsBottom):                  # L2 — actionable mold
    """Frontier challenger climbs, destructor triggered in 1-3
    generations."""

class DukeHuanOfQi(EmperorPattern):                      # L1 — one instance
    """643 BCE, corpse unburied for 67 days, sons fighting
    over the throne."""


# The craft: pick the right level for the question.
#   - 'What do I do this quarter?' → L1 or L2.
#   - 'What general law am I fighting?' → L3 or L4.
#   - 'Why does the universe even allow this?' → L5 (rare, philosophical).
#
# Over-climbing makes you sound wise and act badly.
# Under-climbing makes you memorize.

External links

Exercise

Take a mold you wrote down in the previous lesson's exercise. (1) Write the super-class one rung above it that you suspect explains it. (2) Write a sibling mold at the same rung as your original — one that the super-class also explains, in a different domain. (3) Write one instance one rung below your original mold — a specific named person or event that instantiates it. If you can do all three, you have walked three rungs of the ladder in your own data. That is the craft beginning to show up in your hands.
Hint
If step (2) is hard, try moving to a totally different domain (from work to family, from sports to politics) — sibling molds often live in unexpected neighborhoods.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.