Split View: 딴생각하는 마음은 불행한 마음 — 아이폰으로 수행된 25만 건의 행복 연구
딴생각하는 마음은 불행한 마음 — 아이폰으로 수행된 25만 건의 행복 연구
들어가며 — 행복 연구의 방법을 바꾼 두 쪽짜리 논문
행복 연구의 고전적 방법은 설문입니다. "지난 한 달, 전반적으로 얼마나 행복하셨습니까?" 문제는 인간의 기억이 형편없는 회계사라는 점입니다. 우리는 지난달을 실제 경험이 아니라 인상적인 순간 몇 개로 요약해 기억합니다.
2010년, 하버드의 매튜 킬링스워스(Matthew Killingsworth)와 대니얼 길버트(Daniel Gilbert)는 다른 방법을 택했습니다. 아이폰 앱(trackyourhappiness.org)을 만들어 배포하고, 하루 중 무작위 시점에 알림을 보내 딱 세 가지를 물었습니다. 지금 기분이 어떤가요? 지금 무엇을 하고 있나요? 지금 하는 일이 아닌 다른 생각을 하고 있나요?
이렇게 모인 데이터가 83개국 2,250명의 성인에게서 수집된 약 25만 건의 순간 표본입니다. 사이언스에 실린 논문은 본문이 겨우 두 쪽이지만, 논문으로 읽는 심리학 다섯 번째 편으로 고른 이유는 결과와 방법 모두가 아름답기 때문입니다.
세 가지 발견 — 숫자로 보기
첫째, 마음은 깨어 있는 시간의 절반 가까이 방황합니다. 전체 표본의 46.9%에서 사람들은 지금 하는 일이 아닌 다른 생각을 하고 있었습니다. 게다가 이 비율은 활동의 종류와 거의 무관했습니다. 어떤 활동 중이든(단 하나의 예외를 빼고 — 논문의 표현으로는 사랑을 나눌 때) 딴생각 비율은 30%를 밑돌지 않았습니다.
둘째, 무엇을 하는가보다 딴생각 여부가 행복을 더 잘 예측했습니다. 회귀 분석에서 "지금 하는 활동의 종류"보다 "지금 딴생각 중인가"가 그 순간의 행복을 더 강하게 설명했습니다. 통근(불쾌한 활동의 대명사) 중에도 그 일에 몰두해 있는 순간은 생각보다 나빴지 않았고, 즐거운 활동 중에도 마음이 떠나 있으면 행복도가 떨어졌습니다.
셋째 — 가장 반직관적인 결과 — 즐거운 딴생각조차 집중보다 낫지 않았습니다. 딴생각의 내용을 즐거움, 중립, 불쾌로 나눠 봤더니, 불쾌한 딴생각과 중립적 딴생각은 집중 상태보다 뚜렷이 덜 행복했고, 즐거운 상상조차 지금 일에 몰두한 상태보다 더 행복하지 않았습니다. 여기에 시차 분석이 더해집니다. 지금의 딴생각은 잠시 후의 불행을 예측했지만, 지금의 불행이 잠시 후의 딴생각을 예측하는 힘은 그보다 약했습니다. 인과의 화살표가 "딴생각 → 불행" 방향일 가능성을 시사하는 결과입니다(물론 실험이 아니므로 확정은 아닙니다).
논문의 마지막 문장은 심리학 논문 역사상 가장 자주 인용되는 마무리 중 하나입니다. "인간의 마음은 방황하는 마음이고, 방황하는 마음은 불행한 마음이다(A human mind is a wandering mind, and a wandering mind is an unhappy mind)."
코드로 이해하기 — 경험 표집 데이터의 구조
이 연구의 진짜 교훈은 방법에 있습니다. 경험 표집 데이터가 어떻게 생겼고, 왜 "개인 내 분석"이 중요한지 장난감 데이터로 만들어 봅시다.
import random
import statistics
random.seed(7)
# toy model: each person has a happiness baseline (trait),
# and each sampled moment is focused or wandering (state)
people = []
for pid in range(200):
baseline = random.gauss(60, 12) # stable individual differences
moments = []
for _ in range(30): # ~30 pings per person
wandering = random.random() < 0.47 # 46.9% in the real study
state_penalty = 8 if wandering else 0 # wandering costs ~8 points
mood = random.gauss(baseline - state_penalty, 10)
moments.append((wandering, mood))
people.append(moments)
# WRONG-ish: compare across ALL moments, ignoring who they came from
all_w = [m for p in people for (w, m) in p if w]
all_f = [m for p in people for (w, m) in p if not w]
print(f"between-sample gap : {statistics.mean(all_f) - statistics.mean(all_w):.2f}")
# BETTER: within-person gap, then average over people
gaps = []
for p in people:
w = [m for (is_w, m) in p if is_w]
f = [m for (is_w, m) in p if not is_w]
if w and f:
gaps.append(statistics.mean(f) - statistics.mean(w))
print(f"within-person gap : {statistics.mean(gaps):.2f}")
이 장난감 예시에서는 두 값이 비슷하게 나옵니다. 하지만 만약 "원래 행복한 사람일수록 딴생각을 덜 하는" 개인차가 있다면, 전체 표본을 뭉뚱그린 비교는 상태의 효과와 사람의 효과를 뒤섞어 버립니다. 실제 논문이 다층 모형(사람을 수준으로 넣는 회귀)을 쓴 이유가 이것입니다. 25만 건의 "순간"은 2,250명의 "사람" 안에 중첩되어 있으니까요. 경험 표집 연구를 읽을 때 "개인 내 효과인가, 개인 간 효과인가"를 확인하는 습관은 이 분야 논문의 절반을 걸러 주는 필터입니다.
이 연구의 한계도 공정하게
시리즈의 규칙대로 한계도 봅니다. 첫째, 표본은 아이폰을 가진(2010년 기준 얼리어답터) 자원자들입니다. 대표성에 한계가 있습니다. 둘째, 상관 연구입니다. 시차 분석이 방향을 시사하지만, 실험적 조작이 아닙니다. 셋째, 이후 연구들은 그림을 정교화했습니다. 딴생각 중에서도 자발적이고 흥미로운 주제의 방황(계획, 창의적 공상)은 중립적이거나 긍정적일 수 있다는 보고들이 있습니다. "모든 딴생각이 독"이 아니라 "의도치 않게 끌려가는 방황이 문제"로 요약이 다듬어지는 중입니다.
그럼에도 핵심 발견 — 주의가 경험의 질을 크게 좌우한다 — 은 후속 연구에서 방향이 뒤집힌 적이 없습니다.
우리가 가져갈 것 — 행복의 단위는 순간이다
1. 행복을 조건이 아니라 주의의 문제로도 보기. 우리는 행복을 조건(연봉, 집, 휴가)의 함수로 생각하지만, 이 데이터는 같은 조건 안에서도 주의의 위치가 순간의 행복을 크게 가른다고 말합니다. 조건을 바꾸는 데는 몇 년이 걸리지만 주의를 데려오는 데는 몇 초면 됩니다.
2. 지루한 일의 재발견. 통근, 설거지, 산책 같은 "생각이 풀려나는" 시간은 딴생각의 온상입니다. 그 시간에 주의를 감각으로 데려오는 것(발바닥, 물소리, 호흡)이 마음챙김 훈련의 전부이고, 이 연구는 그 훈련의 기대 효과를 데이터로 보여 줍니다. 생각 많은 밤의 처방전에서 다룬 반추 다루기와 같은 뿌리입니다.
3. 몰입은 행복의 기술이기도 하다. 플로우 편에서 몰입을 성과의 기술로 다뤘지만, 이 연구는 몰입이 곧 행복의 기술임을 보여 줍니다. 딴생각이 구조적으로 불가능한 상태가 몰입이니까요. 일의 난이도를 조절하고 방해를 차단하는 설계는 생산성 튜닝이 아니라 삶의 질 튜닝입니다.
원문 읽기 가이드
- 원 논문: Killingsworth, M. A., & Gilbert, D. T. (2010). A wandering mind is an unhappy mind. Science, 330(6006), 932.
- 후속 정교화: Smallwood, J., & Schooler, J. W. (2015). The science of mind wandering. Annual Review of Psychology, 66, 487-518.
읽기 팁: 원 논문은 본문 두 쪽에 그림 하나가 전부라 시리즈에서 가장 진입 장벽이 낮습니다. 그림 1의 활동별 행복-딴생각 산점도를 3분만 들여다보세요. 보충 자료(supporting material)에 방법의 디테일이 있습니다. 다음 편은 같은 저자가 등장하는 돈과 행복의 논쟁입니다.
A Wandering Mind Is an Unhappy Mind — The 250,000-Moment Happiness Study Run on iPhones
Opening — The Two-Page Paper That Changed How Happiness Is Studied
The classic method of happiness research is the survey. "Over the past month, how happy have you been overall?" The problem is that human memory is a terrible accountant. We remember last month not as it was actually experienced but as a summary of a few impressive moments.
In 2010, Harvard's Matthew Killingsworth and Daniel Gilbert chose a different method. They built and distributed an iPhone app (trackyourhappiness.org) that sent notifications at random moments of the day and asked exactly three things: How do you feel right now? What are you doing right now? Are you thinking about something other than what you are currently doing?
The data gathered this way amounts to roughly 250,000 momentary samples collected from 2,250 adults in 83 countries. The paper published in Science has a body of barely two pages, but I chose it as the fifth installment of Psychology Through Papers because both the results and the method are beautiful.
Three Findings — In Numbers
First, the mind wanders for nearly half of waking life. In 46.9% of all samples, people were thinking about something other than what they were doing. What is more, this rate was almost independent of the type of activity. Whatever people were doing (with a single exception — in the paper's phrasing, making love), the rate of mind wandering never fell below 30%.
Second, whether the mind was wandering predicted happiness better than what people were doing. In the regression analysis, "am I mind-wandering right now" explained momentary happiness more strongly than "what kind of activity am I doing right now". Even during commuting (the byword for unpleasant activities), the moments of being absorbed in it were not as bad as expected, and even during pleasant activities, happiness dropped once the mind had drifted away.
Third — the most counterintuitive result — even pleasant mind wandering was no better than focus. Splitting the content of wandering thoughts into pleasant, neutral, and unpleasant, both unpleasant and neutral wandering were clearly less happy than the focused state, and even pleasant daydreams were no happier than being absorbed in the task at hand. On top of this comes the time-lag analysis: mind wandering now predicted unhappiness a moment later, while unhappiness now predicted later mind wandering more weakly. The result suggests that the causal arrow may point in the direction of "mind wandering → unhappiness" (though, since this is not an experiment, it is not definitive).
The last sentence of the paper is one of the most frequently quoted closing lines in the history of psychology papers: "A human mind is a wandering mind, and a wandering mind is an unhappy mind."
Understanding It in Code — The Structure of Experience Sampling Data
The real lesson of this study lies in its method. Let us build toy data to see what experience sampling data looks like and why "within-person analysis" matters.
import random
import statistics
random.seed(7)
# toy model: each person has a happiness baseline (trait),
# and each sampled moment is focused or wandering (state)
people = []
for pid in range(200):
baseline = random.gauss(60, 12) # stable individual differences
moments = []
for _ in range(30): # ~30 pings per person
wandering = random.random() < 0.47 # 46.9% in the real study
state_penalty = 8 if wandering else 0 # wandering costs ~8 points
mood = random.gauss(baseline - state_penalty, 10)
moments.append((wandering, mood))
people.append(moments)
# WRONG-ish: compare across ALL moments, ignoring who they came from
all_w = [m for p in people for (w, m) in p if w]
all_f = [m for p in people for (w, m) in p if not w]
print(f"between-sample gap : {statistics.mean(all_f) - statistics.mean(all_w):.2f}")
# BETTER: within-person gap, then average over people
gaps = []
for p in people:
w = [m for (is_w, m) in p if is_w]
f = [m for (is_w, m) in p if not is_w]
if w and f:
gaps.append(statistics.mean(f) - statistics.mean(w))
print(f"within-person gap : {statistics.mean(gaps):.2f}")
In this toy example the two values come out similar. But if there were an individual difference such that "people who are happier to begin with wander less", a comparison that lumps the whole sample together would mix the effect of the state with the effect of the person. This is why the actual paper used a multilevel model (a regression with person as a level): the 250,000 "moments" are nested inside 2,250 "people". When reading experience sampling studies, the habit of checking "is this a within-person effect or a between-person effect" is a filter that screens out half the papers in this field.
The Limitations, Stated Fairly
As the rules of this series demand, we look at the limitations too. First, the sample consists of volunteers who owned iPhones (early adopters, by 2010 standards). Representativeness is limited. Second, it is a correlational study. The time-lag analysis hints at a direction, but there is no experimental manipulation. Third, later studies have refined the picture: there are reports that, among kinds of mind wandering, deliberate wandering on interesting topics (planning, creative daydreaming) can be neutral or even positive. The summary is being polished from "all mind wandering is poison" into "the problem is the wandering you get dragged into unintentionally".
Even so, the core finding — that attention strongly shapes the quality of experience — has never had its direction reversed in follow-up research.
What We Take Away — The Unit of Happiness Is the Moment
1. See happiness as a matter of attention, not only of conditions. We tend to think of happiness as a function of conditions (salary, house, vacation), but this data says that even within the same conditions, where your attention sits makes a large difference to the happiness of the moment. Changing conditions takes years; bringing your attention back takes seconds.
2. The rediscovery of boring chores. Times when thought "comes loose" — commuting, dishwashing, walking — are hotbeds of mind wandering. Bringing attention back to the senses during that time (the soles of your feet, the sound of water, the breath) is the whole of mindfulness training, and this study shows the expected payoff of that training in data. It shares roots with the handling of rumination covered in A Prescription for Overthinking Nights.
3. Flow is a happiness skill too. The flow installment treated flow as a performance skill, but this study shows that flow is also a happiness skill — flow is the state in which mind wandering is structurally impossible. Designing task difficulty and blocking interruptions is not productivity tuning; it is quality-of-life tuning.
Guide to Reading the Originals
- Original paper: Killingsworth, M. A., & Gilbert, D. T. (2010). A wandering mind is an unhappy mind. Science, 330(6006), 932.
- Follow-up refinement: Smallwood, J., & Schooler, J. W. (2015). The science of mind wandering. Annual Review of Psychology, 66, 487-518.
Reading tips: the original paper is just two pages of text and a single figure, making it the lowest barrier to entry in the series. Spend three minutes on the happiness-versus-mind-wandering scatter by activity in Figure 1. The methodological details are in the supporting material. The next installment features the same author — The Money and Happiness Debate.