Paradox of the Active User

능동적 사용자의 역설

People almost never read the manual first — even knowing it would make them more efficient — and dive straight into trial and error instead.

Also known as: Active user paradox
···
html
<div class="stage">
  <div class="doc" id="doc">
    <div class="docbar">Help doc</div>
    <div class="dust"></div>
  </div>
  <div class="ui">
    <button class="wrong" id="wrong">Export</button>
    <div class="cur" id="cur">&#10148;</div>
    <div class="err" id="err">Error</div>
  </div>
</div>
css
.stage{width:94%;height:88%;display:flex;gap:6%}
.doc{position:relative;flex:1;border-radius:14px;border:1px dashed var(--line);background:var(--surface);opacity:.55;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px}
.docbar{font:700 11px/1 monospace;color:var(--muted)}
.dust{width:40%;height:6px;border-radius:3px;background:var(--line)}
.ui{position:relative;flex:1.4;border-radius:14px;border:1px solid var(--line);background:var(--surface);display:flex;align-items:center;justify-content:center}
.wrong{border:1px solid var(--line);border-radius:8px;padding:9px 16px;background:var(--bg);font:700 11px/1 sans-serif;color:var(--fg)}
.cur{position:absolute;font-size:14px;color:var(--fg);transform:rotate(-45deg);left:22%;top:74%;animation:jab 2.2s ease-in-out infinite}
@keyframes jab{0%,100%{left:22%;top:74%}40%,66%{left:58%;top:58%}82%{left:22%;top:74%}}
.err{position:absolute;top:18%;left:50%;transform:translateX(-50%);font:800 11px/1 monospace;color:var(--accent-2);opacity:0;animation:flash 2.2s ease-in-out infinite}
@keyframes flash{0%,32%{opacity:0}40%,90%{opacity:1}100%{opacity:0}}

An observation from John M. Carroll and Mary Beth Rosson's 1987 paper. Users overwhelmingly prioritize accomplishing something right now over becoming more effective later — instead of finishing a tutorial or reading a manual, they just click and see what happens, then click again.

Here's the paradox: skipping the manual means repeating the same mistake a few minutes of reading would have prevented — and people still don't open the manual next time either. This isn't laziness; it reflects a general human preference for immediate feedback from action over upfront learning.

The designer's job isn't to eliminate the manual — it's to make the manual unnecessary in the first place: contextual tooltips, easily reversible mistakes, and trial-and-error itself designed as a safe learning path.

The demo shows a help doc sitting closed the whole time while the user clicks the same wrong button twice, hitting the identical error both times.

When to use

Recall this whenever you think "it's all in the docs, why don't they read it?" The fix is usually redesigning to prevent the mistake, not writing more documentation.