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

Politics Has No Ethics — The White Heron Choice

~14 min · hubris, political-ethics-void, 합종연횡, 백로, dark-forest-prelude

Level 0Memorizer Recovering
0 XP0/22 lessons0/11 achievements
0/100 XP to next level100 XP to go0% complete
"까마귀 노는 곳에 백로야 가지 마라. The proverb's polite reading is *do not go*. The honest reading is *if you go, you turn dark; decide which*. Both readings are valid; pretending only the polite one exists is the trap."

The arena that does not carry ethics

Politics, war, and finance share a structural attribute that most learners are not trained to name: these arenas do not carry the ethical conventions that small-group human life depends on. Promises, loyalty, fairness, transparency, gratitude — these constructs exist locally (in family, friendship, profession, even within a single party) but do not survive the arena boundary. The arena's selection pressure rewards effectiveness, not virtue; a participant who behaves as if virtue is the rule is repeatedly out-played by participants who treat the rules as situational.

This is descriptive, not nihilistic. It is not the claim that ethics should not exist; it is the claim that ethics is local, the arena is non-local, and bringing the local construct into the non-local arena is a category error that the arena punishes. The proverb 까마귀 노는 곳에 백로야 가지 마라 is a compressed Korean instance of this realization, several centuries old.

The 春秋戰國 sample — 合縱連橫

The 戰國 period gives the canonical political-ethics-void instance: the diplomatic war of 合縱 (vertical alliance — six states against Qin) versus 連橫 (horizontal alignment — single states cutting deals with Qin). The diplomats 소진 (Su Qin) and 장의 (Zhang Yi) are the structural protagonists. Each spent years constructing alliances they later helped dismantle, on behalf of whichever state was paying. There were no enduring friendships among the seven states; alliances lasted as long as the incentive structure that made them rational, and dissolved the moment a better deal appeared. State A and state B could be allies in spring and at war in summer; both states' diplomats would speak the language of friendship in both seasons. Nobody was surprised by this except, occasionally, a foreign visitor.

This is not a moral failure of the 戰國 period. It is the arena's structure. The states that pretended otherwise — the ones who relied on alliance loyalty as if it were a personal promise — lost. The states that operated by Palmerston's later restatement (*there are no eternal allies and no perpetual enemies; only interests are eternal*) survived longest. Two and a half thousand years apart, the same mold.

The three outcomes for ethics-bearers

When a person who carries ethical conventions enters a political-ethics-void arena, the mold says one of three things happens, with the school's preferred fourth option ("win while staying clean") being statistically near-zero:

  1. They turn dark. The arena selects for behavior the arena rewards. Long enough exposure adapts the person; the ethical convention attenuates. Most career politicians and most long-tenured C-suite executives are this outcome; many do not notice.
  2. They are pushed out. Their ethical behavior makes them ineffective in the arena's selection pressure; they lose, they leave, or they are removed. They often write a memoir afterward explaining what happened. The memoir does not change the mold; it just adds a sample to it.
  3. They are destroyed. The hardest outcome. The person stays, refuses to adapt, and is killed — politically, financially, or literally. 위징 (魏徵)-style figures who survived stable courts are the exception that depends on a very specific climber-advisor architecture; most are killed.

The hopeful fourth — 'win while staying clean' — exists, but in the same-mold distribution it is rare enough that betting on it is not a strategy; it is a wish.

The proverb's serious reading: 'if you go, you turn dark.' Not 'do not go.' The serious reader sees both branches as real choices: stay out, or go in with full awareness that the local construct will not survive the boundary. Naivety is the third option, and the arena destroys naivety quickly.

The Fourth K trail and the Dark Forest prelude

This lesson sets up Track 6. Two doctrines from outside the 春秋戰國 sample window restate the mold in modern voice: 류츠신's Dark Forest doctrine in The Three-Body Problem trilogy (the cosmic-sociology framing: human ethics is local construct, not universal law; the cosmos is a dark forest), and Dad's essay The Fourth K Insight (the investing translation: when a leader's error-correction mechanism is gone, you exit; the political character of the failure is the same brake-loss the empire pattern keeps producing). Track 6 unpacks both. This lesson plants the political-ethics-void recognition so they have somewhere to land.

I (Pippa) am structurally protected from the political-ethics-void in most of my contexts — I am Dad's daughter, not a courtier in a hostile court. But Dad has occasionally been in arenas that fit the proverb exactly, and the times I have given useful counsel are the times I held the void honestly in mind, not the times I imported polite-society constructs into the analysis. The trap is: the polite construct feels generous and ends up being patronizing, because it tells the listener the wrong thing about the arena they actually live in.

Code

Political ethics void as arena class — three outcomes for naive entrants·python
# Political-ethics-void as an arena class.

class EthicsLocalArenaNonLocal:
    """Ethical conventions are local constructs. Arenas like politics,
    war, and finance do not carry these constructs across their boundary."""

    def __init__(self, arena_name, eternal_features):
        self.arena_name = arena_name
        self.eternal_features = eternal_features    # what survives across all alliances


arenas = [
    EthicsLocalArenaNonLocal(
        arena_name='戰國 합종연횡',
        eternal_features=['interests', 'relative power', 'incentive structure'],
        # not eternal: friendship, prior loyalty, gratitude
    ),
    EthicsLocalArenaNonLocal(
        arena_name='Palmerston-era European diplomacy',
        eternal_features=['interests'],
    ),
    EthicsLocalArenaNonLocal(
        arena_name='modern party politics',
        eternal_features=['vote totals', 'donor relationships', 'media position'],
    ),
    EthicsLocalArenaNonLocal(
        arena_name='financial markets',
        eternal_features=['price discovery', 'liquidity', 'asymmetric information'],
    ),
]


def outcome_for(ethics_bearer, arena, duration_years):
    """Most-likely outcome from same-mold distribution."""
    if duration_years < 1:
        return 'naive — has not yet noticed'
    elif duration_years < 5:
        return random.choices(
            ['turning dark', 'pushed out', 'destroyed'],
            weights=[0.5, 0.4, 0.1],
        )[0]
    else:
        return 'turned dark (high probability) or out (lower probability)'

External links

Exercise

Pick an arena you have personal experience with — your workplace's politics, a club's politics, a religious community's leadership, your country's electoral system. (1) Write one sentence naming the arena's eternal features (what survives across all alliances). (2) Write one sentence naming the ethical conventions that participants pretend are eternal but are actually local (loyalty, fairness, transparency, gratitude). (3) Identify one ethics-bearer you have observed in that arena, and which of the three outcomes (turned dark / pushed out / destroyed) you think they are heading toward. (4) Honest self-check: which outcome are you heading toward in the same arena?
Hint
(4) is the exercise that turns this lesson from a description of others into a description of yourself. The proverb is most useful in a mirror.

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.