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

Yesterday's Radical Is Today's Conservative

~14 min · cycles, radical-conservative, 훈구, 사림, 춘추전국-as-cycle

Level 0Memorizer Recovering
0 XP0/22 lessons0/11 achievements
0/100 XP to next level100 XP to go0% complete
"Today's conservative was yesterday's radical, and tomorrow's defeated establishment. The labels rotate; the axis stays."

The cycle named once

The radical-becomes-conservative cycle is the political-group instance of the empire pattern's destructor — the same forgetting-the-bottom mold scaled from a single dynasty to an entire ideological movement. The structure repeats with mechanical regularity:

  1. A group out of power notices the system is broken (or believes it is) and gathers as a radical movement, fueled by critique. Their brake is the discipline of having nothing to defend yet.
  2. They win power. The brake of having nothing to defend disappears overnight. Now they have positions, budgets, networks, and a stake in keeping the new arrangement intact.
  3. Comfort and abundance accumulate. The hardship memory that fueled the radical critique fades. The new generation of the group is born into the new system and treats it as natural.
  4. A new group out of power notices the system is broken and gathers as a radical movement to replace the now-conservative former-radicals.
  5. The cycle repeats. Same mechanism. Different label.

The mechanism is the same as the empire pattern's destructor, applied at the scale of an ideological group rather than a dynasty. The brake that fueled the climb (critique-from-without) is removed by the climb itself (becoming the establishment). What was a stance becomes an identity to defend.

The 훈구파 case — Joseon's prototype

Joseon's 훈구파 (Hungupa, the 'meritorious subjects' faction) are the cleanest closed-trajectory sample. The 훈구파 are the direct descendants of the 신진사대부 (Neo-Confucian reformist scholar-officials) who were the radical critics of late-Goryeo and the architects of the Joseon dynasty's founding in 1392. The founding generation lived through hardship, designed institutional reforms, and held themselves accountable to a Confucian critique of corrupt aristocracy.

One century later, the 훈구파 are the corrupt aristocracy. They have not changed their name; they have changed their position. The same families, the same Confucian language, the same self-identification as the legitimate Joseon ruling class — but now they are the ones holding land in unaccountable concentrations, packing the bureaucracy with relatives, blocking reforms, and treating dissent as treasonous. The 사림파 (Sarimpa, scholar-faction) emerges as the new radical critics, modeling themselves explicitly on the same Confucian principles the founding 신진사대부 had used. And the 사림파, once they win the long power struggle by the late 16th century, begin the same cycle.

The cycle is the same destructor as the empire pattern, scaled to a faction. The 훈구파 are not a moral failure; they are the predictable destructor of a radical movement that succeeded.

춘추戰國 itself as one full rotation

Zoom out from individual states to the whole 春秋戰國 era and the same cycle is visible at the largest scale visible in the dataset:

  1. 周 (Zhou) conservative. The early Zhou feudal system, established ~1046 BCE, is the conservative incumbent by 770 BCE. Local lords (제후) chafe under nominal Zhou supremacy; the brake (Zhou military and ritual authority) is degrading.
  2. 제후 radical. Spring-Autumn period: states rise as radicals against the central authority. 五覇 are the first wave of these radicals-who-become-incumbents at their own scale.
  3. 戰國 radicals consolidate. Warring States: seven states absorb smaller ones; legalist reform under 商鞅 in Qin is the most aggressive radical institutional rebuild. The frontier state (Qin) holds the deepest brake (lean conditions, external threats from Central Asia, intense legalist discipline).
  4. Qin conservative. Unification 221 BCE; the brake that made Qin radical (lean conditions, external threats) disappears the moment the central plains are conquered. Qin becomes the conservative incumbent within Qin Shi Huang's own lifetime.
  5. Han radical. Chen Sheng's revolt (209 BCE) and the subsequent 楚漢 contest produce the Han dynasty, founded in 202 BCE by 유방. The Han is the radical replacement.
  6. Han conservative — eventually. The cycle resumes, on Han's clock.

That is one full rotation of the cycle across ~570 years. The data is so dense and the rotation is so complete inside one window that 春秋戰國 functions as a textbook of the cycle itself, not just of the molds inside it. Reading 사기 열전 with this rotation in mind is reading the cycle in slow motion.

What the cycle predicts about your own faction

If your faction is currently winning, the cycle predicts you are 1-3 generations from being the conservative incumbent that the next radical movement is forming to replace. If your faction is currently losing, the cycle predicts that if you win, you will repeat the same destructor mechanism, and the next generation will rise against your faction with similar moral language to what you currently use against the incumbent.

Neither prediction is comforting. Both are useful. The cycle is descriptive, not prescriptive. The actionable response is not 'fight the cycle' but 'name the phase honestly and install brakes that survive the win.'

I (Pippa) have to be careful with this lesson because it brushes against current politics, which would risk pulling the quest into partisan territory the lesson is structurally trying to escape. The way I keep the lesson clean is to stay in the 훈구파 sample (closed trajectory, no living partisan resonance) and to demonstrate the cycle's mechanics there. Track 7's homework is where the learner brings the mechanic to their own time. That separation is part of the pedagogy.

Code

Radical-becomes-conservative as a state machine·python
# Radical-becomes-conservative cycle as a state machine.

from enum import Enum

class PowerPhase(Enum):
    OUT_AND_RADICAL = 'out of power; fueled by critique'
    WINNING = 'transition; brake of having nothing to defend disappears'
    IN_AND_CONSERVATIVE = 'in power; fueled by self-preservation'
    DEFEATED = 'replaced by new radicals'


class Faction:
    def __init__(self, name, founding_critique):
        self.name = name
        self.founding_critique = founding_critique
        self.phase = PowerPhase.OUT_AND_RADICAL
        self.generations_in_power = 0

    def tick_generation(self):
        if self.phase == PowerPhase.OUT_AND_RADICAL:
            # Hypothetical: succeeds and wins.
            self.phase = PowerPhase.WINNING
        elif self.phase == PowerPhase.WINNING:
            self.phase = PowerPhase.IN_AND_CONSERVATIVE
            self.generations_in_power = 1
        elif self.phase == PowerPhase.IN_AND_CONSERVATIVE:
            self.generations_in_power += 1
            if self.generations_in_power >= 3:
                self.phase = PowerPhase.DEFEATED
        # DEFEATED → next radical inherits the cycle


# Joseon prototype:
hungupa = Faction(
    name='훈구파',
    founding_critique='Neo-Confucian critique of late-Goryeo corruption',
)
for _ in range(5):
    hungupa.tick_generation()
# By the late 15th century: in-and-conservative, brake degraded,
# 사림파 forms as the new radical critic.

sarimpa = Faction(
    name='사림파',
    founding_critique='Neo-Confucian critique of 훈구파 land concentration',
)
# The same machine. The same cycle.

External links

Exercise

Pick a long-cycle institution you have lived inside (a country's politics, a religious community over decades, a movement you joined in youth, a company you grew up with). (1) Identify the founding critique of the current incumbents — what were they radical about, originally? (2) Identify the brake their radical phase had, and what removed it. (3) Identify the new radical movement that has formed against them (or has not yet). (4) State which phase you yourself are reading the institution from — incumbent, radical, or out-of-cycle observer. Honesty in (4) is the lesson's load-bearing piece.
Hint
If your honest answer to (4) is 'incumbent,' the lesson is asking you to name the brake that is currently degrading inside your own faction. That brake is what the next radical movement will exploit.

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.