Skip to content

Split View: 의지력은 정말 고갈되는가 — 무 실험에서 재현성 위기까지, 그리고 코드로 보는 출판 편향

✨ Learn with Quiz
|

의지력은 정말 고갈되는가 — 무 실험에서 재현성 위기까지, 그리고 코드로 보는 출판 편향

들어가며 — 심리학에서 가장 유명했던 근육

"의지력은 근육과 같아서 쓰면 소모된다. 그러니 아침에 중요한 결정을 하고, 유혹을 참은 날에는 다이어트가 무너져도 자책하지 마라."

자아 고갈(ego depletion) 이론은 한때 심리학이 대중에게 준 가장 인기 있는 선물이었습니다. 수백 편의 지지 논문이 있었고, 베스트셀러가 됐고, 대통령이 "결정 피로를 줄이려 같은 정장만 입는다"고 말할 정도로 상식이 됐습니다.

그리고 2016년, 이 이론은 심리학 재현성 위기의 상징이 됐습니다. 논문으로 읽는 심리학 네 번째 편은 이 극적인 궤적을 따라갑니다. 이번 편이 시리즈에서 특별한 이유는, "수백 편의 논문이 있는데 어떻게 틀릴 수가 있지?"라는 합리적인 의문에 코드를 돌려서 답해 볼 것이기 때문입니다.

1998년 — 초콜릿, 무, 그리고 풀리지 않는 퍼즐

로이 바우마이스터(Roy Baumeister) 연구팀의 1998년 논문의 첫 실험은 연출부터 유명합니다. 굶고 온 대학생들을 갓 구운 초콜릿 쿠키 향이 가득한 방에 앉힙니다. 한 그룹은 쿠키를 먹어도 되고, 다른 그룹은 쿠키 대신 생무(radish) 만 먹어야 합니다. 이후 모두에게 사실은 풀 수 없는 도형 퍼즐을 주고 얼마나 오래 시도하는지 잽니다.

결과: 쿠키 그룹은 평균 약 19분을 버텼지만, 유혹을 참아야 했던 무 그룹은 약 8분 만에 포기했습니다. 그룹당 인원은 20명 남짓. 논문은 이렇게 해석합니다. 쿠키의 유혹을 참는 데 어떤 공유 자원이 소모됐고, 그래서 퍼즐에 쓸 끈기가 부족해졌다고. "자아 고갈"이라는 이름의 탄생입니다.

이후 20년 동안 이 패러다임은 폭발적으로 확장됩니다. 감정 억제, 선택하기, 문장에서 특정 글자 지우기 등 온갖 "고갈 과제" 뒤에 악력 버티기, 쓴 음료 마시기, 애너그램 풀기 성적이 떨어진다는 연구가 수백 편 쌓였습니다. 2010년의 메타분석은 198개 연구를 합산해 중간 크기의 효과(d 약 0.6)를 보고했습니다. 혈당(포도당)이 그 자원이라는 이론까지 나왔습니다. 교과서에 실리기에 충분해 보였습니다.

2016년 — 23개 연구실의 공동 재검증

그런데 2010년대 초부터 불길한 신호들이 나타납니다. 새로 시도된 큰 표본의 재현들이 자꾸 실패했고, 2015년 카터(Carter)와 매컬러프(McCullough)는 기존 메타분석에 출판 편향 보정을 적용하면 효과가 0과 구별되지 않는다고 보고했습니다.

결정적 시험은 2016년의 등록 재검증 보고(Registered Replication Report)였습니다. 마틴 해거(Martin Hagger)와 니콜라 찻지사란티스(Nikos Chatzisarantis)가 조율한 이 프로젝트는 재현 연구의 표준 설계를 보여 줍니다.

  • 23개 연구실, 총 2천 100여 명이 참여합니다.
  • 프로토콜은 원 이론 진영의 자문을 받아 사전에 합의·등록됩니다. 글자 지우기 과제로 고갈시키고, 표준화된 컴퓨터 과제로 측정.
  • 결과와 무관하게 출판이 보장됩니다. 서랍에 묻힐 무효 결과가 없습니다.

결과는 충격적이었습니다. 23개 연구실을 합산한 효과 크기는 d = 0.04, 신뢰구간은 0을 가운데 둔 채였습니다. 사실상 아무 효과도 없다는 뜻입니다. 2021년에는 바우마이스터 진영이 직접 설계에 참여한 36개 연구실의 대규모 재검증(Vohs 등)이 진행됐지만, 여기서도 효과는 0에 가까웠습니다(추정에 따라 d 0.06 안팎). 포도당 이론은 그보다 먼저 무너져 있었습니다.

수백 편 대 두 번의 재검증. 그런데 왜 후자가 이기는 걸까요.

코드로 이해하기 — 서랍이 만든 신기루

핵심은 출판 편향(publication bias)입니다. 효과가 실제로 0이어도, "유의한 결과만 출판되는" 규칙 하나가 있으면 문헌에는 그럴듯한 효과가 쌓입니다. 말로는 직관이 안 잡히니, 시뮬레이션으로 확인해 봅시다.

import random
import statistics

random.seed(42)

TRUE_EFFECT = 0.0   # the real effect size is zero
N_PER_GROUP = 20    # small samples, like the classic studies
N_STUDIES = 500     # labs around the world keep trying

published = []
drawer = 0

for _ in range(N_STUDIES):
    # two groups drawn from the SAME distribution (no real effect)
    control = [random.gauss(0, 1) for _ in range(N_PER_GROUP)]
    treated = [random.gauss(TRUE_EFFECT, 1) for _ in range(N_PER_GROUP)]

    # observed standardized effect (Cohen's d, pooled SD ~= 1)
    d = statistics.mean(treated) - statistics.mean(control)

    # crude significance rule for a two-sample test of this size:
    # |d| > ~0.64 corresponds to p < .05 with n=20 per group
    if abs(d) > 0.64:
        published.append(d)   # "exciting result!" -> journal
    else:
        drawer += 1           # null result -> file drawer

print(f"published studies : {len(published)}")
print(f"file drawer       : {drawer}")
print(f"mean published |d|: {statistics.mean(abs(d) for d in published):.2f}")

돌려 보면 이런 그림이 나옵니다. 진짜 효과가 정확히 0인데도 500번의 시도 중 5% 남짓이 우연히 유의선을 넘고, 그 "당첨된" 연구들만 모아 평균을 내면 d 0.7~0.8짜리 문헌이 만들어집니다. 작은 표본일수록 우연의 진폭이 커서 당첨 효과도 화려해집니다. 여기에 연구자의 자유도(여러 측정치 중 잘 나온 것 고르기, 이상치 제외 기준 바꾸기)까지 더하면 당첨 확률은 5%를 훌쩍 넘습니다.

이것이 "수백 편의 논문"이 틀릴 수 있는 메커니즘입니다. 논문 수는 증거의 양이 아니라, 선별 과정을 통과한 표본의 수일 수 있습니다. 그래서 사전등록과 전수 출판이 보장된 소수의 대규모 재검증이, 선별된 수백 편보다 무겁습니다.

그래서 의지력에 대해 무엇이 남는가

자아 고갈의 몰락에서 잘못된 교훈을 가져가지 않는 것이 중요합니다.

남지 않는 것: "유혹을 참으면 자원이 빠져나가 다음 자기통제가 반드시 약해진다"는 기계적 자원 모형. 그리고 그 모형을 핑계로 삼는 것("아까 참았으니 지금 무너지는 건 과학적으로 당연해").

남는 것 1 — 피로 자체는 실재합니다. 수면 부족, 장시간의 고강도 집중이 판단과 감정 조절을 무너뜨린다는 것은 별개의 탄탄한 문헌(수면 부채 편에서 다룹니다)이 지지합니다. 무너진 것은 "5분의 자제력 과제가 자원을 고갈시킨다"는 정밀 주장이지, "쉬어야 한다"는 상식이 아닙니다.

남는 것 2 — 자기통제의 승부는 의지가 아니라 설계에서 납니다. 흥미롭게도 최근 연구들은 자기통제를 잘하는 사람들이 유혹에 강하게 저항하는 사람이 아니라 유혹을 애초에 덜 만나도록 환경을 설계하는 사람임을 보여 줍니다. 시스템이 목표를 이긴다에서 다룬 마찰 설계가 바로 그 전략입니다.

남는 것 3 — 과학이 작동한다는 증거. 유명 이론이 무너지는 것은 심리학의 수치가 아니라 자정 능력의 증명입니다. 사전등록, 등록 재검증, 다중 연구실 협력은 이 사건들을 거치며 표준이 됐습니다.

원문 읽기 가이드

  • 원 논문: Baumeister, R. F., Bratslavsky, E., Muraven, M., & Tice, D. M. (1998). Ego depletion: Is the active self a limited resource? Journal of Personality and Social Psychology, 74(5), 1252-1265.
  • 편향 보정: Carter, E. C., & McCullough, M. E. (2014). Publication bias and the limited strength model of self-control. Frontiers in Psychology, 5, 823.
  • 재검증: Hagger, M. S., Chatzisarantis, N. L. D., et al. (2016). A multilab preregistered replication of the ego-depletion effect. Perspectives on Psychological Science, 11(4), 546-573.
  • 2차 재검증: Vohs, K. D., et al. (2021). A multisite preregistered paradigmatic test of the ego-depletion effect. Psychological Science, 32(10), 1566-1581.

읽기 팁: 1998 논문은 실험 1의 방법 섹션이 백미입니다(무 조건 참가자 몇 명이 쿠키에 손을 댔는지에 대한 각주까지). 2016 RRR은 본문보다 포리스트 플롯(연구실별 효과 그림) 한 장이 모든 것을 말합니다. 다음 편은 분위기를 바꿔, 스마트폰으로 수행된 가장 유명한 행복 연구 — 딴생각과 행복입니다.

Does Willpower Really Run Out — From the Radish Experiment to the Replication Crisis, with Publication Bias in Code

Opening — The Most Famous Muscle in Psychology

"Willpower is like a muscle: use it and it wears out. So make your important decisions in the morning, and do not blame yourself if your diet collapses on a day you spent resisting temptation."

Ego depletion theory was once the most popular gift psychology had given the public. There were hundreds of supporting papers, it produced a bestseller, and it became common sense — to the point that a president said he wore only the same suits to reduce decision fatigue.

Then, in 2016, this theory became the symbol of psychology's replication crisis. The fourth installment of Psychology Through Papers follows that dramatic arc. What makes this installment special within the series is that we will answer the perfectly reasonable question — "how can a theory with hundreds of papers behind it be wrong?" — by running code.

1998 — Chocolate, Radishes, and an Unsolvable Puzzle

The first experiment in the 1998 paper by Roy Baumeister's team is famous for its staging alone. Hungry undergraduates are seated in a room filled with the aroma of freshly baked chocolate cookies. One group is allowed to eat the cookies; the other group must eat only raw radishes instead. Afterwards, everyone receives a geometric puzzle that is in fact unsolvable, and the researchers time how long they keep trying.

The result: the cookie group persisted for about 19 minutes on average, while the radish group — the ones who had to resist the temptation — gave up after about 8 minutes. Each group had barely more than 20 people. The paper interprets it this way: resisting the lure of the cookies consumed some shared resource, which left too little persistence for the puzzle. That is the birth of the name "ego depletion".

Over the next 20 years the paradigm expanded explosively. Hundreds of studies piled up showing that after all kinds of "depletion tasks" — suppressing emotions, making choices, crossing out particular letters in a text — performance dropped on handgrip endurance, drinking a bitter beverage, or solving anagrams. A 2010 meta-analysis pooled 198 studies and reported a medium-sized effect (d around 0.6). There was even a theory that blood sugar (glucose) was the resource. It looked more than ready for the textbooks.

2016 — A Joint Replication by 23 Labs

From the early 2010s, however, ominous signals started to appear. Newly attempted large-sample replications kept failing, and in 2015 Carter and McCullough reported that once publication bias corrections were applied to the existing meta-analysis, the effect became indistinguishable from zero.

The decisive test was the 2016 Registered Replication Report. Coordinated by Martin Hagger and Nikos Chatzisarantis, this project shows what the standard design for replication research looks like.

  • 23 labs and roughly 2,100 participants in total take part.
  • The protocol is agreed upon and registered in advance, with advice from the original theory's camp: deplete with a letter-crossing task, measure with a standardized computer task.
  • Publication is guaranteed regardless of the results. No null result gets buried in a drawer.

The result was shocking. The effect size pooled across the 23 labs was d = 0.04, with a confidence interval centered on zero. In effect, it means no effect at all. In 2021 a large-scale replication across 36 labs (Vohs et al.), with Baumeister's camp participating directly in the design, was carried out — and there too the effect was close to zero (around d 0.06, depending on the estimate). The glucose theory had collapsed even earlier.

Hundreds of papers versus two replications. So why does the latter win?

Understanding It in Code — The Mirage Built by the File Drawer

The key is publication bias. Even if the effect is truly zero, a single rule — "only significant results get published" — is enough to fill the literature with plausible-looking effects. Words alone do not make this intuitive, so let us confirm it with a simulation.

import random
import statistics

random.seed(42)

TRUE_EFFECT = 0.0   # the real effect size is zero
N_PER_GROUP = 20    # small samples, like the classic studies
N_STUDIES = 500     # labs around the world keep trying

published = []
drawer = 0

for _ in range(N_STUDIES):
    # two groups drawn from the SAME distribution (no real effect)
    control = [random.gauss(0, 1) for _ in range(N_PER_GROUP)]
    treated = [random.gauss(TRUE_EFFECT, 1) for _ in range(N_PER_GROUP)]

    # observed standardized effect (Cohen's d, pooled SD ~= 1)
    d = statistics.mean(treated) - statistics.mean(control)

    # crude significance rule for a two-sample test of this size:
    # |d| > ~0.64 corresponds to p < .05 with n=20 per group
    if abs(d) > 0.64:
        published.append(d)   # "exciting result!" -> journal
    else:
        drawer += 1           # null result -> file drawer

print(f"published studies : {len(published)}")
print(f"file drawer       : {drawer}")
print(f"mean published |d|: {statistics.mean(abs(d) for d in published):.2f}")

Run it and this is the picture you get. Even though the true effect is exactly 0, roughly 5% of the 500 attempts cross the significance line by pure chance, and if you collect only those "winning" studies and average them, you manufacture a literature worth d 0.7~0.8. The smaller the samples, the larger the amplitude of chance, so the winning effects look even more spectacular. Add researcher degrees of freedom (picking the best-looking of several measures, changing the outlier-exclusion criteria) and the winning probability climbs well past 5%.

This is the mechanism by which "hundreds of papers" can be wrong. The number of papers may measure not the amount of evidence but the number of samples that survived a selection process. That is why a handful of large-scale replications with preregistration and guaranteed publication carry more weight than hundreds of selected papers.

So What Remains of Willpower

It is important not to take the wrong lesson away from the fall of ego depletion.

What does not survive: the mechanical resource model — "resisting temptation drains a resource, so your next act of self-control must be weaker" — and using that model as an excuse ("I resisted earlier, so it is scientifically inevitable that I collapse now").

What survives, part 1 — fatigue itself is real. That sleep deprivation and long stretches of high-intensity focus break down judgment and emotional regulation is supported by a separate, robust literature (covered in the sleep debt installment). What collapsed is the precise claim that a 5-minute self-control task depletes a resource — not the common sense that you need rest.

What survives, part 2 — self-control is decided by design, not by will. Intriguingly, recent studies show that people who are good at self-control are not the ones who resist temptation heroically, but the ones who design their environment so they encounter temptation less in the first place. The friction design covered in Systems Beat Goals is exactly that strategy.

What survives, part 3 — evidence that science works. A famous theory collapsing is not psychology's disgrace but proof of its capacity for self-correction. Preregistration, registered replications, and multi-lab collaborations became the standard through these very events.

Guide to Reading the Originals

  • Original paper: Baumeister, R. F., Bratslavsky, E., Muraven, M., & Tice, D. M. (1998). Ego depletion: Is the active self a limited resource? Journal of Personality and Social Psychology, 74(5), 1252-1265.
  • Bias correction: Carter, E. C., & McCullough, M. E. (2014). Publication bias and the limited strength model of self-control. Frontiers in Psychology, 5, 823.
  • Replication: Hagger, M. S., Chatzisarantis, N. L. D., et al. (2016). A multilab preregistered replication of the ego-depletion effect. Perspectives on Psychological Science, 11(4), 546-573.
  • Second replication: Vohs, K. D., et al. (2021). A multisite preregistered paradigmatic test of the ego-depletion effect. Psychological Science, 32(10), 1566-1581.

Reading tips: in the 1998 paper, the method section of Experiment 1 is the highlight (down to the footnote on how many radish-condition participants touched the cookies). In the 2016 RRR, one forest plot (the per-lab effect figure) says more than the entire text. The next installment changes the mood — the most famous happiness study ever run on smartphones, A Wandering Mind and Happiness.