"매 loss 의 매 psychological weight 의 매 gain 의 ~2배". Kahneman & Tversky 의 1979 Prospect Theory 핵심 발견 — $100 잃는 pain ≈ $200 얻는 pleasure. 매 modern UX, game economy, pricing, behavioral nudge 의 매 ubiquitous lever.
매 핵심
매 Prospect Theory 의 가치 함수
Value function: 매 origin (status quo) 기준 의 asymmetric. Gain 측 concave, loss 측 convex + steeper.
Loss aversion coefficient λ ≈ 2.0–2.5 (typical empirical range).
Reference-dependent: 매 absolute wealth 가 아닌 reference point 기준.
Diminishing sensitivity: $100→$200 의 gain 이 $1100→$1200 보다 큰 impact.
매 Cognitive 메커니즘
Endowment effect: 소유한 것 의 valuation 이 동일 item 의 acquire price 보다 높음.
Status quo bias: change 의 potential downside 가 upside 보다 무겁게 느껴짐.
Sunk cost fallacy: 이미 잃은 것 을 회복하려는 irrational continuation.
매 응용
UX framing: "Save $20" (gain) vs "Lose $20 if you don't act" (loss) — loss frame 의 conversion 우수.
Game retention: streak / lose-progress 위협 (Duolingo streak freeze).
Pricing anchoring: trial → paid 의 loss aversion lever (already-using 의 endowment).
💻 패턴
Loss-framed CTA copy A/B test
constvariants={control:{headline:"Save 30% on Pro",cta:"Upgrade now"},loss:{headline:"Don't lose Pro features tomorrow",cta:"Keep Pro access"},};functiontrackVariant(userId: string,variant: keyoftypeofvariants){analytics.track("cta_view",{userId,variant,ts: Date.now()});}
// User accumulates value during trial; cancellation = loss frame
functiontrialSummary(usage: Usage){return{headline:`You've created ${usage.docCount} documents`,losses:[`${usage.collaborators} teammates will lose access`,`${usage.gbStored}GB of files become read-only`,],cta:"Keep your work — upgrade now",};}
Game economy — escrow / forfeit on disconnect
// Loss aversion as engagement: forfeit currency if you abandon ranked match
functiononMatchAbandon(player: Player,match: Match){constpenalty=match.entryFee*1.5;// > entry fee — sharper sting
player.currency-=penalty;notify(player,`You forfeited ${penalty} for leaving`);}
Loss-aversion-aware notification timing
// Trigger reminder when user is closest to losing accrued value
functionshouldNotifyAboutStreak(s: Streak):boolean{consthoursLeft=hoursUntilEndOfDay();returns.count>=7&&hoursLeft<6&&!s.notifiedToday;}
언제: copy A/B variant generation, retention email subject lines, game design lever brainstorm.
언제 X: 매 ethical line 의 judgment — manipulative copy 의 detection 은 human review 필수.
❌ 안티패턴
Manufactured loss: 가짜 limited-time scarcity → 매 dark pattern, brand trust 손상.
Loss frame on cold acquisition: prospect 가 endowment 없음 → backfire.