Absorbing State Under Restricted Modality¶
Core Idea¶
A state in a transition system an actor can enter using their available modality of action but cannot leave using it — even though exits exist for some other modality and the actor wants to leave. The trap is in the joint of state space and modality, not in the state or the actor alone.
How would you explain it like I'm…
The Pool With One Ladder
Easy In, No Way Out
Trapped By Your Toolkit
Broad Use¶
- UI and accessibility: a focus state a keyboard user can enter but not leave, while a mouse user exits trivially — the canonical origin.
- Bureaucratic dead-ends: an administrative state whose forward exits require legal representation, fluency, or time off work, outside a claimant's modality.
- Phone trees and helpdesk loops: a menu branch with no back/operator option exposed to the caller's input modality.
- Carceral and detention process: exits requiring counsel, bond, or a motion, outside the reach of a detainee with no phone or funds.
- Mental-health and conversation traps: rumination spirals whose in-modality moves all recapitulate the loop; exit needs a move outside the pattern.
- Game states and error queues: a save state with no feasible action set, exitable only through an out-of-band modality the system never surfaces.
Clarity¶
Reframes "the user can't get out" from a property of the user or the state to a property of the joint, and distinguishes an unavailable exit from a merely costly one.
Manages Complexity¶
Collapses keyboard traps, bureaucratic dead-ends, rumination spirals, and phone-tree cul-de-sacs into one diagnostic: walk the state graph in the actor's modality and flag states with entry but no exit.
Abstract Reasoning¶
Supports modality-relative reachability analysis and a service-design coverage condition — a system serves a modality only if its transition graph is strongly connected over the intended subgraph.
Knowledge Transfer¶
- Accessibility to procedural justice: testing every state for keyboard-exit availability transfers verbatim to testing every administrative state for the exits an unrepresented claimant can take — same walk, different modality.
- Phone trees to chat agents: the rule that every menu state must expose a back/operator transition in the user's modality carries from voice interfaces to text-based agents intact.
Example¶
A custom date-picker captures keyboard focus and provides no keystroke to escape, so a screen-reader user is stranded while a mouse user clicks away trivially; the fix is one Escape-key handler, not a redesign.
Relationships to Other Abstractions¶
Current abstraction Absorbing State Under Restricted Modality Prime
Parents (1) — more general patterns this builds on
-
Absorbing State Under Restricted Modality presupposes State and State Transition Prime
An absorbing state is a configuration in a transition system one can enter but not leave with one's modality; it presupposes the state-machine apparatus (modality-relative reachability over a transition graph).
Children (1) — more specific cases that build on this
-
Keyboard Trap Domain-specific is a decomposition of Absorbing State Under Restricted Modality
Removing focus-navigation and WCAG vocabulary leaves the exact live prime: a reachable state with no exit in the actor's available action modality.
Hierarchy path (1) — routes to 1 parentless root
- Absorbing State Under Restricted Modality → State and State Transition → Phase Space
Not to Be Confused With¶
- Absorbing State Under Restricted Modality is not Representational Modality because that concerns the form in which information is represented whereas this borrows "modality" for the set of affordances an actor commands.
- Absorbing State Under Restricted Modality is not Lock-In because lock-in's exit is costly (a switching cost) whereas this prime's exit is not expensive but unavailable to the actor's modality.
- Absorbing State Under Restricted Modality is not Liminality because liminality is a threshold state with eventual passage whereas this is the negation of passage for a given modality.