Principle of least astonishment

The principle of least astonishment (POLA) (alternatively "principle/law/rule of least astonishment/surprise")[1][2] applies to user interface and software design, from the ergonomics standpoint.[3]

A typical formulation of the principle is: "If a necessary feature has a high astonishment factor, it may be necessary to redesign the feature."[4]

In general engineering design contexts, the principle can be taken to mean that a component of a system should behave in a manner consistent with how users of that component are likely to expect it to behave; that is, users should not be astonished at the way it behaves.

Formulation

A textbook formulation is: "People are part of the system. The design should match the user's experience, expectations, and mental models."[5]

The choice of "least surprising" behavior can depend on the expected audience (for example, end users, programmers, or system administrators).[1]

In more practical terms, the principle aims to exploit pre-existing knowledge of users to minimize the learning curve, for instance by designing interfaces that borrow heavily from "functionally similar or analogous programs with which your users are likely to be familiar".[1] User expectations in this respect may be closely related to a particular computing platform or tradition. For example, Unix command line programs are expected to follow certain conventions with respect to switches,[1] and widgets of Microsoft Windows programs are expected to follow certain conventions with respect to keyboard shortcuts.[6] In more abstract settings like an API, the expectation that function or method names intuitively match their behavior is another example.[7] This practice also involves the application of sensible defaults.[4]

When two elements of an interface conflict, or are ambiguous, the behavior should be that which will least surprise the user; in particular a programmer should try to think of the behavior that will least surprise someone who uses the program, rather than that behavior that is natural from knowing the inner workings of the program.[4]

Examples

A web site could declare an input that should autofocus when the page is loaded,[8] such as a search field (e.g., Google.com), or the username field of a login form. Sites offering keyboard shortcuts often allow pressing ? to see the available shortcuts. Examples include Gmail[9] and JIRA.[10]

The F1 Function key in Windows operating systems is almost always for opening a help program associated with an application, and similarly for some of the Linux desktop environments. The corresponding key combination in Mac OS X is ⌘ Command+⇧ Shift+?. Users expect a help screen or similar help services popup when they press this key. Software binding this key to some other feature is likely to cause astonishment if no help appears. Malicious programs are known to exploit users' familiarity with regular shortcut keys.[11]

In programming, a good example of this principle is the common ParseInteger(string, radix) function which exists in most languages and is used to convert a string to an integer value. The radix is usually an optional argument and assumed to be 10 (representing base 10). Other bases are usually supported (like binary or octal) but only when specified explicitly; when the radix argument is not specified, base 10 is assumed. Notably JavaScript did not originally adopt this behaviour, which resulted in developer confusion and software bugs.[12]

See also

References

  1. 1 2 3 4 Eric Steven Raymond (2003). "Applying the Rule of Least Surprise". The Art of Unix Programming. faqs.org. p. 20. ISBN 978-0-13-142901-7. Retrieved 2014-01-23.
  2. Geoffrey James (1987). "Law of Least Astonishment". The Tao of Programming. 4.1. ISBN 0-931137-07-1. Retrieved 2014-02-05.
  3. Peter Seebach (2001-08-01). "The Principle of Least Astonishment". The cranky user. IBM DeveloperWorks. Retrieved 2014-01-23.
  4. 1 2 3 M. F. Cowlishaw (1984). "The design of the REXX language" (PDF). IBM Systems Journal, VOL 23. NO 4, 1984 (PDF). IBM Research. p. 333. doi:10.1147/sj.234.0326. Retrieved 2014-01-23. Could there be a high astonishment factor associated with the new feature? If a feature is accidentally misapplied by the user and causes what appears to him to be an unpredictable result, that feature has a high astonishment factor and is therefore undesirable. If a necessary feature has a high astonishment factor, it may be necessary to redesign the feature.
  5. Saltzer, J. H.; Kaashoek, Frans (2009). Principles of computer system design: an introduction. Morgan Kaufmann. p. 85. ISBN 978-0-12-374957-4.
  6. Petroutsos, Evangelos (2010). Mastering Microsoft Visual Basic 2010. John Wiley and Sons. p. 133. ISBN 978-0-470-53287-4.
  7. Bloch, Joshua (2006), How to design a good API and why it matters, Association for Computing Machinery, pp. 506–507
  8. "Forms in HTML". Mozilla Developers Network. Mozilla. Retrieved 2013-07-27.
  9. Vivian (2013-06-21). "Keyboard shortcuts for Gmail". Google. Retrieved 2013-07-27.
  10. "Using Keyboard Shortcuts". Atlassian. Retrieved 2013-07-27.
  11. Microsoft: Don't press F1 key in Windows XP - Computerworld
  12. https://stackoverflow.com/questions/5600366/why-does-the-radix-for-javascripts-parseint-default-to-8

External links

This article is issued from Wikipedia - version of the 11/21/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.