Physical constraints make an erroneous action impossible instead of exposing it after the fact
Aliases: physical limitation · forcing constraint · error-proofing
What it is
A physical constraint uses shape, size, connection, or reachability to limit executable actions, turning some errors from something discovered after execution into something that cannot be done. The orientation of a keyway, a plug that only fits its matching socket, and a mechanical part stopped by a barrier are examples. It embeds part of correctness in the environment rather than leaving it entirely to attention, instructions, or retrospective warning.
Why it happens
A constraint narrows the action space: even without knowing the rule, people can only try actions in the permitted set. Unlike warnings and confirmation dialogs, it blocks a path before the erroneous action occurs, so it does not depend on reading feedback or reacting in time. A good constraint also makes remaining actions more apparent, provided that the excluded path is truly invalid.
Studying it
Compare prototypes with and without constraints, measuring first-attempt success, whether errors actually occur, completion time, help seeking, and whether people understand the reason for the limitation. Include realistic pressure such as distraction, low light, gloves, time pressure, or first use to test whether the constraint still blocks costly errors. Record legitimate tasks that are blocked as well, rather than treating fewer errors alone as success.
Where it stops holding
Physical constraints suit stable rules, costly errors, and tasks with relatively clear legitimate paths. Where contexts vary, exceptions are common, or exploration matters, a hard constraint becomes unnecessary friction. Digital products usually cannot supply literal physical blockage and instead approximate it with permissions, state rules, or interaction simulation; they then need explanation and recovery paths too.
Applying it
- Identify irreversible, consequential, or frequent errors first, and remove invalid actions from the available set.
- Make permitted connection orientation, droppable regions, and operable parts visible in form and layout instead of relying only on text warnings.
- Provide a controlled unlock or escalation path for exceptional tasks, and explain the limit so safety design does not block legitimate work.
Related
- Same group: B2.19.2 Physical constraints work without learning, so they help novices and experts alike · B2.19.3 Screen interfaces lack literal physical constraints and can only simulate them with resistance, snapping, and non-draggable regions · B2.19.4 Excessively strong physical constraints also block legitimate minority use
- Nearby: B2.05 Constraints · B2.12 Error Tolerance and Reversibility
- Search terms:
physical constraint·poka-yoke·error prevention
Cards in the same group
- B2.19.2Physical constraints work without learning, so they help novices and experts alike
- B2.19.3Screen interfaces lack literal physical constraints and can only simulate them with resistance, snapping, and non-draggable regions
- B2.19.4Excessively strong physical constraints also block legitimate minority use