Q4.13.1Stopping rule in task decompositiondesignresearch

Decomposition needs a stopping rule; deeper is not automatically better

Aliases: HTA stopping criterion · P×C rule · when to stop decomposing

What it is

The next level of a hierarchical task breakdown is worth drawing only when it still answers the current question. A stopping rule in task decomposition states in advance when to stop: if going further will not change judgments about failure, training, or interface support, stop. Depth itself is not a quality metric. Splitting already reliable, almost never-failed operations down to keystrokes produces a professional-looking tree and no extra actionable information.

Why it happens

The payoff of decomposition is exposing where performance can still fail, where information is still needed, or where training is still required. Each extra level multiplies nodes by the fan-out, and new information quickly becomes implementation detail. A classic test holds the chance of inadequate performance against its cost: keep splitting operations that are costly and still fallible; stop on cheap, already stable ones. The stop is relative to purpose: for feedback design, split until “what must the person see”; for a procedure manual, one more action layer may be warranted. Without a rule, analysts use depth to avoid asking whether the question is already answerable.

Studying it

Write the stopping criterion into the analysis plan, with examples of “enough.” Produce two decompositions of the same task, one stopped where planned and one two levels deeper, and compare whether the deeper one changes the failure-mode list, information needs, or training goals; if not, the extra depth is redundant. Record why each leaf stopped: skill floor reached, further split would enter hardware timing, or the question is already decidable. Peer review should interrogate stopping reasons, not layer counts.

Where it stops holding

Safety-critical, irreversible, or legally traceable-to-action tasks will stop deeper than consumer products; that is the cost term pushing the rule down a level, not “deeper is better.” Novices and experts do not share the same set of reliable operations, so their stopping points cannot be mixed. Stopping too early leaves critical judgment inside an unopened black box; the harm is symmetrical with going too deep.

Applying it

  • Write the stopping rule in one sentence before starting, e.g. “split until the interface’s required information or feedback can be named.”
  • Annotate each leaf with a stopping reason; audit for non-reasons such as “because we still could.”
  • Do not split leaves that almost never fail unless new evidence shows the cost of failure was understated.
  • Review against the research question only: can this tree support the present decision? If yes, freeze it; do not treat depth as completeness.

Related

  • Same group: Q4.13.2 Mark sequential, parallel, and conditional relations among subtasks · Q4.13.3 The same hierarchy can serve training materials and interface design · Q4.13.4 Uneven granularity makes complexity incomparable across tasks
  • Adjacent: Q4.07 Task analysis · Q2.08 Cognitive walkthrough
  • Search terms: stopping rule · hierarchical task analysis · P×C criterion

Cards in the same group

Quick Actions

Share

Share this page

ios_share

https://hci.top/en/handbook/Q4.13.1