Calculator input methods

Summary

There are various ways in which calculators interpret keystrokes. These can be categorized into two main types:

  • On a single-step or immediate-execution calculator, the user presses a key for each operation, calculating all the intermediate results, before the final value is shown.[1][2][3]
  • On an expression or formula calculator, one types in an expression and then presses a key, such as "=" or "Enter", to evaluate the expression.[4][5][6] There are various systems for typing in an expression, as described below.

Immediate execution edit

 
The TI-108 is a simple four-function calculator which uses single-step execution.

The immediate execution mode of operation (also known as single-step, algebraic entry system (AES)[7] or chain calculation mode) is commonly employed on most general-purpose calculators. In most simple four-function calculators, such as the Windows calculator in Standard mode and those included with most early operating systems, each binary operation is executed as soon as the next operator is pressed, and therefore the order of operations in a mathematical expression is not taken into account. Scientific calculators, including the Scientific mode in the Windows calculator and most modern software calculators, have buttons for brackets and can take order of operation into account. Also, for unary operations, like √ or x2, the number is entered first, then the operator; this is largely because the display screens on these kinds of calculators are generally composed entirely of seven-segment characters and thus capable of displaying only numbers, not the functions associated with them. This mode of operation also makes it impossible to change the expression being input without clearing the display entirely.

Examples
Formula Keystrokes
  5 2 4 + 3 7 2 =
  2 × 3 + 1 =

1 + 2 × 3 =

  3 0 COS x 2 + 3 0 SIN =

3 0 SIN + 2 x 3 0 COS =

The   examples have been given twice. The first version is for simple calculators, showing how it is necessary to rearrange operands in order to get the correct result. The second version is for scientific calculators, where operator precedence is observed. Different forms of operator precedence schemes exist. In the algebraic entry system with hierarchy (AESH),[7] the precedence of basic mathematical operators is taken into account,[7] whereas calculators with algebraic entry system with parentheses (AESP)[7] support the entry of parentheses.[7] An input scheme known as algebraic operating system (AOS)[7] combines both.[7] This is the name Texas Instruments uses for the input scheme used in some of its calculators.[8]

Immediate-execution calculators are based on a mixture of infix and postfix notation: binary operations are done as infix, but unary operations are postfix. Because operators are applied one-at-a-time, the user must work out which operator key to use at each stage, and this can lead to problems.[9][10] When discussing these problems, Harold W. Thimbleby has pointed out that button-operated calculators "require numbers and operation signs to be punched in a certain order, and mistakes are easy to make and hard to spot".[11]

Problems can occur because, for anything but the simplest calculation, in order to work out the value of a written formula, the user of a button-operated calculator is required to:

  • Rearrange the formula so that the value can be calculated by pressing buttons one at a time, while taking operator precedence and parentheses into account.
  • Use memory buttons to ensure that operations are applied in the correct order.
  • Use the special buttons ± and 1/x, that do not correspond to operations in the formula, for non-commutative operators.

Mistakes can be hard to spot because:

  • For the above reasons, the sequence of button presses may bear little resemblance to the original formula.
  • The operation carried out when a button is pressed is not always the same as the button, but could be a previously entered operation.

Examples of difficulties edit

The simplest example given by Thimbleby of a possible problem when using an immediate-execution calculator is 4 × (−5). As a written formula the value of this is −20 because the minus sign is intended to indicate a negative number, rather than a subtraction, and this is the way that it would be interpreted by a formula calculator.

On an immediate-execution calculator, depending on which keys are used and the order in which they are pressed, the result for this calculation may be different. Also there are differences between calculators in the way a given sequence of button presses is interpreted. The result can be:

  • −1: If the subtraction button is pressed after the multiplication ×, it is interpreted as a correction of the × rather than a minus sign, so that 4 − 5 is calculated.
  • 20: If the change-sign button ± is pressed before the 5, it isn't interpreted as −5, and 4 × 5 is calculated.
  • −20: To get the right answer, ± must be pressed last, even though the minus sign isn't written last in the formula.

The effects of operator precedence, parentheses and non-commutative operators, on the sequence of button presses, are illustrated by:

  • 4 − 5 × 6: The multiplication must be done first, and the formula has to be rearranged and calculated as −5 × 6 + 4. So ± and addition have to be used rather than subtraction. When + is pressed, the multiplication is performed.
  • 4 × (5 + 6): The addition must be done first, so the calculation carried out is (5 + 6) × 4. When × is pressed, the addition is performed.
  • 4 / (5 + 6): One way to do this is to calculate (5 + 6) / 4 first and then use the 1/x button, so the calculation carried out is 1/[(5 + 6)/4].
  • 4 × 5 + 6 × 7: The two multiplications must be done before the addition, and one of the results must be put into memory.

These are only simple examples, but immediate-execution calculators can present even greater problems in more complex cases. In fact, Thimbleby claims that users may have been conditioned to avoid them for all but the simplest calculations.

Declarative and imperative tools edit

The potential problems with immediate-execution calculators stem from the fact that they are imperative. This means that the user must provide details of how the calculation has to be performed.

Thimbleby has identified the need for a calculator that is more automatic and therefore easier to use, and he states that such a calculator should be more declarative. This means that the user should be able to specify only what has to be done, not how, and in which order, it has to be done.

Formula calculators are more declarative because the typed-in formula specifies what is to be done, and the user does not have to provide any details of the step-by-step order in which the calculation has to be performed.

Declarative solutions are easier to understand than imperative solutions,[12] and there has been a long-term trend from imperative to declarative methods.[13][14] Formula calculators are part of this trend.

Many software tools for the general user, such as spreadsheets, are declarative. Formula calculators are examples of such tools.

Using the full power of the computer edit

Software calculators that simulate hand-held, immediate execution calculators do not use the full power of the computer: "A computer is a far more powerful device than a hand-held calculator, and thus it is illogical and limiting to duplicate hand-held calculators on a computer." (Haxial Software Pty Ltd) Formula calculators use more of the computer's power because, besides calculating the value of a formula, they work out the order in which things should be done.

Infix notation edit

 
A Sharp scientific calculator using infix notation. Note the formula on the dot-matrix line above and the answer on the seven-segment line below, as well as the arrow keys allowing the entry to be reviewed and edited.
 
This calculator program has accepted input in infix notation, and returned the answer  . Here the comma is a decimal separator.

Infix notation is a method similar to immediate execution with AESH and/or AESP, but unary operations are input into the calculator in the same order as they are written on paper.

Calculators that use infix notation tend to incorporate a dot-matrix display to display the expression being entered, frequently accompanied by a seven-segment display for the result of the expression. Because the expression is not evaluated until it is fully entered, there is provision for editing the entered expression at any point prior to evaluation, as well as replaying entered expressions and their answers from memory.

Most graphing calculators by Casio and Texas Instruments use this method. On its scientific calculators, Sharp calls this method Direct Algebraic Logic (D.A.L.),[15] Casio calls this method the Visually Perfect Algebraic Method (V.P.A.M.),[16] and Texas Instruments calls it the Equation Operating System (EOS).[8]

Examples
Formula keystrokes keystroke count
  1 + 2 × 3 = 6
  SIN 3 0 + 2 × COS 3 0 = 10
  ( 1 + 2 ) × ( 3 + 4 ) = 12
  1 5 + 1 0 + 1 0 + 1 0 = 12

Reverse Polish notation edit

 
Screenshot of an RPN Calculator program on Linux.
 
The Hewlett-Packard Voyager series of calculators all use RPN input. The "Enter" key is used here to push the value on the display onto the stack.

In reverse Polish notation,[7] also known as postfix notation, all operations are entered after the operands on which the operation is performed. Reverse Polish notation is parenthesis-free, which usually leads to fewer button presses needed to perform an operation. By the use of a stack, one can enter formulas without the need to rearrange operands.

Hewlett-Packard's calculators are well-known examples among calculators which use RPN. Early models, such as the HP-35, used RPN entirely without any alternative methods. Later models can switch between RPN and another notation, such as the HP-12C Platinum which includes both RPN and immediate execution (with operations performed strictly in the order in which inputs are entered), the HP 33s with both RPN and a hybrid of immediate/infix algebraic notation (operations are performed in accordance with standard order of operations, but single-operand functions are input with the operand first followed by the operator), and its successor the HP 35s with both RPN and standard algebraic infix notation.

Examples
Formula keystrokes keystroke count
  1 ↵ Enter 2 ↵ Enter 3 × +

2 ↵ Enter 3 × 1 +

7
6
  3 0 SIN 3 0 COS 2 x + 9
  1 ↵ Enter 2 + 3 ↵ Enter 4 + × 9
  1 5 ↵ Enter 1 0 + 1 0 + 1 0 +

1 5 ↵ Enter 1 0 ↵ Enter ↵ Enter ↵ Enter + + +

1 5 ENTER^ 1 0 ENTER^ ENTER^ + + +

12
11 (RPL and Entry RPN)[17]
10 (Classical RPN)[17]

Note: The first example illustrates one of the few cases where reverse Polish notation does not use the fewest button presses – provided one does not rearrange operands. If one would do so then only six keystrokes would be needed.

BASIC notation edit

 
The equation entry screen on a TI-89, showing the brackets after the ln, sin and cos parameters. If these were left out, the equation would be interpreted as   instead of  

BASIC notation is a particular implementation of infix notation where functions require their parameters to be in brackets.

This method was used from the 1980s to the 1990s in BASIC programmable calculators and pocket computers. Texas Instruments would later implement the method in many of its graphing calculators, including the TI-83 and TI-84 Plus series. Most computer algebra systems (CASes) also use this as the default input method.

In BASIC notation, the formula is entered as it would be entered in BASIC, using the PRINT command – the PRINT command itself being optional. On pressing "ENTER" or "=", the result would be displayed. As with standard infix notation, typing mistakes in the entered formula could be corrected using the same editor function as the one used when programming the calculator.

Examples
Formula keystrokes keystroke count
  1 + 2 × 3 ↵ Enter 6
  SIN ( 3 0 ) × COS ( 3 0 ) ↵ Enter

S I N ( 3 0 ) × C O S ( 3 0 ) ↵ Enter

12

16

For the second example, two options are given depending on if the BASIC programmable pocket computers have dedicated trigonometric keys[18] or not.[19]

Ten key notation edit

 
This printing calculator made by Sharp uses ten-key notation. Notice the size and placement of the keys, including the extra-large "+/=" and the red "-/=" keys.

The ten-key notation input method first became popular with accountants' paper tape adding machines. It generally makes the assumption that entered numbers are being summed, although other operations are supported. Each number entered is followed by its sign (+/−), and a running total is kept. An assumption is made that the last operand can be implicitly used next, so by just entering another + (for example), one will reuse the most recent operand. Ten key input mode is available in printing calculators from companies such as Sharp,[20] and in software calculators like Judy's TenKey[21] used by accounting firms. Online tenkey training and certification tools are available as well,[22][23] and some businesses use ten key typing speed as an employment criterion.

Examples
Formula keystrokes keystroke count
  1 + 2 × 3 = + T 8
  3 0 SIN × 3 0 COS = 8
  5 + 3 - T 5
  1 5 + 1 0 + + + T 9

Mathematical display edit

 
A Casio Natural Display scientific calculator displaying mixed fractions and their decimal equivalents in pretty-printing.
 
Pretty-printed commands used to plot Dini's surface in Mathematica.

Modern computer algebra systems, as well as many scientific and graphing calculators, allow for "pretty-printing", that is, entry of equations such that fractions, surds and integrals, etc. are displayed in the way they would normally be written. Such calculators are generally similar in appearance to those using infix notation, but feature a full dot-matrix display and templates for entering expressions, which are navigated using arrow keys on the calculator. The templates contain spaces for values or expressions to be entered, and empty values would typically result in a syntax error, making it more cumbersome to navigate than standard infix notation; standard infix notation is often an option on such calculators as well.

Casio used to call this feature Natural Display or Natural textbook display,[24][25] but now uses Natural-VPAM.[26] Sharp calls this WriteView[27] on its scientific calculators and simply Equation Editor on its graphing calculators.[28] HP calls this its Textbook display setting,[29] which can be used in both RPN and Algebraic mode and in both the Stack and in the Equation Writer application.[30] Mathematica calls this Semantic-Faithful Typesetting.[31] Mathcad calls this standard math notation.[32] Maple has a Math Equation Editor,[33] but does not have a special name for this input method. Texas Instruments calls it MathPrint,[34] incorporating it in its high-end calculators, such as the TI-Nspire series, and in 2011 added the feature to its TI-84 series with the 2.55 OS update.[35]

Examples
Formula Keystrokes Keystroke Count
  1 + 2 × 3

↵ Enter

6
  SIN 3 0 × COS 3 0

↵ Enter

SIN ( 3 0 ) × COS ( 3 0 ) ↵ Enter

9

12

  5 3 ↵ Enter 4
  1 5 + 1 0 + 1 0 + 1 0

↵ Enter

12

For the second example, two options are given, depending on whether the calculators will automatically insert needed parentheses or not. Machines equipped with an alphanumeric display will display SIN(30)×COS(30) before ↵ Enter is pressed.

See also edit

References edit

  1. ^ Microsoft's Windows Operating System Calculator Accessory; 2001. Available on a Windows PC at: Start/All Programs/Accessories/Calculator.
  2. ^ MotionNET Calculator page on the Internet Archived 2009-05-01 at the Wayback Machine; 2006.
  3. ^ Flow Simulation Ltd Virtual Calc98 page on the Internet; 2008.
  4. ^ Formula Calculators Pty Ltd [Home page on the Internet]; 2009.
  5. ^ Moisey Oysgelt JavaScript Formula Calculator page on the Internet; 2000.
  6. ^ Haxial Software Pty Ltd Calculator Product page on the Internet Archived 2009-04-28 at the Wayback Machine; 2001
  7. ^ a b c d e f g h Ball, John A. (1978). Algorithms for RPN calculators (1 ed.). Cambridge, Massachusetts, USA: Wiley-Interscience, John Wiley & Sons, Inc. ISBN 0-471-03070-8. LCCN 77-14977. Retrieved 2023-09-21.
  8. ^ a b "Differences Between Algebraic Operating System (AOS) and Equation Operating System (EOS)". Texas Instruments. Retrieved 2022-11-29.
  9. ^ Thimbleby, Harold W. (September 1998). "A new calculator and why it is necessary" (PDF). London, UK: Computing Science, Middlesex University. Archived from the original (PDF) on 2007-02-07. Retrieved 2009-05-04.
  10. ^ Holmes, Neville (2003). "Truth and Clarity in Arithmetic" (PDF). University of Tasmania. Archived (PDF) from the original on 2006-10-07. Retrieved 2023-09-21.
  11. ^ "Professor devises easier calculator". www.physorg.com. United Press International. 2005-06-27. Archived from the original on 2023-01-15. Retrieved 2023-09-20.
  12. ^ Furman, Roy E. (July 2006). "Declarative Programming – Strategies for Solving Software Problems". Archived from the original on 2012-07-23. Retrieved 2009-05-04.
  13. ^ Watt, David A. (1990). Programming language concepts and paradigms. Prentice Hall International Series in Computer Science. Prentice Hall. ISBN 978-0-13728874-8.
  14. ^ Matsushita, Tatsuru (October 1998). "Expressive Power of Declarative Programming Languages" (PhD thesis). Department of Computer Science, University of York. Archived from the original on 2023-09-21. Retrieved 2023-09-21.
  15. ^ "SHARP". global.sharp.,
  16. ^ "General - Standard Scientific calculators - Calculators - CASIO". support.casio.com.
  17. ^ a b Nelson, Richard J. (April 2012). "HP RPN Evolves" (PDF). HP Solve (27). Hewlett-Packard Development Company, L.P.: 42–45. Archived (PDF) from the original on 2022-10-20. Retrieved 2022-10-20. [1] (4 of 56 pages)
  18. ^ The picture of the Casio FX-880P shows sin, cos and tan keys on the second row right hand side.
  19. ^ The picture of the Sharp PC-1245 shows no trigonometric keys
  20. ^ "SIICA.sharpusa.com > Resources > More Products > Calculators". siica.sharpusa.net.
  21. ^ "Award-Winning Judy's TenKey Accounting Calculator for Windows". www.judysapps.com.
  22. ^ "Ten Key Certificate on Learn2Type.com!". Learn2Type.com.
  23. ^ "None". Retrieved 2023-06-16.
  24. ^ Natural textbook display - Scientific calculator.
  25. ^ "CASIO WEW Worldwide Education Website". CASIO WEW Worldwide Education Website.
  26. ^ Natural Visually Perfect Algebraic Mode (V.P.A.M) - Scientific calculator Archived 2009-04-27 at the Wayback Machine.
  27. ^ WriteView.
  28. ^ Sharp Graphing equation editor.
  29. ^ "HP Support document - HP Support Center". h20564.www2.hp.com. Archived from the original on 2016-08-26. Retrieved 2016-08-23.
  30. ^ http://h20331.www2.hp.com/Hpsub/downloads/50gUsing_the_EquationWriter_Part2.pdf. Archived 2011-12-18 at the Wayback Machine
  31. ^ Semantic-Faithful Typesetting.
  32. ^ Mathcad Archived 2008-09-20 at the Wayback Machine.
  33. ^ "Math Equation Editor - Maple Features - Maplesoft". www.maplesoft.com.
  34. ^ "TI Products | Graphing Calculators | Scientific Calculators". education.ti.com.
  35. ^ "Texas Instruments releases new OS for TI-84, 2.55 MP". Tech Powered Math. 2011-01-14. Retrieved 2018-05-12.

Further reading edit

  • Kasprzyk, Dennis Michael; Drury, Colin G.; Bialas, Wayne F. (1979) [1978-09-25]. "Human behaviour and performance in calculator use with Algebraic and Reverse Polish Notation". Ergonomics. 22 (9). Department of Industrial Engineering, State University of New York at Buffalo, Amherst, New York, USA: Taylor & Francis: 1011–1019. doi:10.1080/00140137908924675. eISSN 1366-5847. ISSN 0014-0139. S2CID 62692402. (9 pages)
  • "Advanced Calculator Logic HP RPN/Algebraic: A Comparative Analysis" (PDF). Corvallis, Oregon, USA: Hewlett-Packard Corporation. 1979. 5953-1930. Archived (PDF) from the original on 2022-12-26. Retrieved 2022-12-26. (13 pages)
  • Agate, Seb J.; Drury, Colin G. (March 1980). "Electronic calculators: which notation is the better?" (PDF). Applied Ergonomics. 11 (1). Department of Industrial Engineering, University at Buffalo, State University of New York, USA: IPC Business Press: 2–6. doi:10.1016/0003-6870(80)90114-3. eISSN 1872-9126. ISSN 0003-6870. PMID 15676368. 0003-6870/80/01 0002-05. Archived (PDF) from the original on 2023-09-23. Retrieved 2018-09-22. (5 pages)
  • Suydam, Marilyn N. (December 1980). Calculators: A Categorized Compilation of References. Supplement 1 (PDF). Columbus, Ohio, USA: Calculator Information Center, Ohio State University. ED199087. SE034434. Archived (PDF) from the original on 2021-09-19. Retrieved 2022-10-16. (64 pages)
  • Kreifeldt, John G.; McCarthy, Mary E. (1981-10-15) [1981-06-16/18]. Written at Department of Engineering Design, Tufts University, Medford, Massachusetts, USA. Interruption as a test of the user-computer interface (PDF). Proceedings of the Seventeenth Annual Conference on Manual Control. University of California, Los Angeles, California, USA: Jet Propulsion Laboratory / Office of Naval Research / NASA. pp. 655–667. 02155, N82-13721, 82N13721, 19820005848, JPL 81-95. Archived (PDF) from the original on 2022-01-30. Retrieved 2018-09-22. Proceedings of the Seventeenth Annual Conference on Manual Control: University of California, Los Angeles, June 16-18, 1981 (13 of 702 pages)
  • Kreifeldt, John G. (October 1981). "Hand Calculator Performance Under Interrupted Operation". Proceedings of the Human Factors Society Annual Meeting. 25 (1). Department of Engineering Design, Tufts University, Medford, Massachusetts, USA: 329–332. doi:10.1177/107118138102500187. S2CID 106904297. (4 pages)
  • Young, Richard M. (July 1981). "The machine inside the machine: Users' models of pocket calculators". International Journal of Man-Machine Studies. 15 (1): 51–85. doi:10.1016/S0020-7373(81)80023-5. ISSN 0020-7373. (35 pages)
  • Young, Richard M. (1984). "Artificial Intelligence: Conceptual Models of Ill-Defined Systems". Written at University of Massachusetts, Amherst, Massachusetts, USA; MRC Applied Psychology Unit, Cambridge, UK. In Selfridge, Oliver Gordon; Rissland, Edwina L. [at Wikidata]; Arbib, Michael Anthony (eds.). Adaptive Control of Ill-Defined Systems. NATO Conference Series (NATOCS, volume 16); II Systems Science (SYSC) (1st illustrated ed.). New York & London: Plenum Press, Plenum Publishing Corporation / Springer. pp. 165–176. doi:10.1007/978-1-4684-8941-5. ISBN 978-1-4684-8943-9. LCCN 83-17699. Retrieved 2022-12-26. (12 pages)
  • Hoffman, Errol; Ma, Patrick; See, Jason; Yong, Chee Kee; Brand, Jason; Poulton, Matthew (1994). "Calculator logic: when and why is RPN superior to algebraic?". Applied Ergonomics. 25 (5). Elsevier Science Ltd.: 327–333. doi:10.1016/0003-6870(94)90048-5. eISSN 1872-9126. ISSN 0003-6870. (7 pages)
  • Wozniak, Stephen Gary "Woz", ed. (2012) [2000-02-13]. "In our AP C++ class we are trying to use virtual stacks to develop an infix to postfix calculator translator. To study how exactly the infix notation and postfix notation differ we used one of the very old HP calculators. I was wondering that when you worked for HP did you help develop some postfix calculators? Do you prefer infix notation or postfix?". Letters-General Questions Answered. woz.org. Archived from the original on 2012-11-04. Retrieved 2023-09-23. […] Our marketing department had a card with a monstrous formula to demonstrate how powerful our calculators were and what postfix calculation was capable of. They challenged people to solve it on a slide rule the normal way. Well, we could all solve it on our HP calculators but it took a few tries to get the steps accurate enough […] Finally Texas Instruments introduced an infix 'algebraic entry' scientific calculator. […] We were all […] laughing at the arithmetic entry as being too weak for engineers. […] our big formula challenge […], sure that nobody could ever do it with the TI calculator. A challenge went up for someone to try. After a short silence I said that I'd try. […] My colleagues couldn't believe it. I told them that you just copy the formula from left to right but not one of them could see through their postfix fog. After all, these were the calculator experts of the world. They are well accustomed to thinking ahead and analyzing an expression to come up with the order of steps to take on an HP postfix calculator, and they had to remember which sub-expressions were in what order on the calculator's stack. None of them could do what I had done, forget that they have to be smart. […]
  • Redin, James (2005-02-12) [1997-10-05]. "RPN or DAL? A brief analysis of Reverse Polish Notation against Direct Algebraic Logic". Archived from the original on 2017-06-24. Retrieved 2015-09-12.
  • Wu, Hung-Hsi [at Wikidata] (2007-09-13) [2004-06-01]. ""Order of operations" and other oddities in school mathematics" (PDF). Berkeley, California, USA: Department of Mathematics, University of California. Archived (PDF) from the original on 2023-09-18. Retrieved 2007-07-03. (11 pages)
  • Vanderbeek, Greg (July 2007). Order of Operations and RPN (Expository paper). Master of Arts in Teaching (MAT) Exam Expository Papers. Lincoln, Nebraska, USA: University of Nebraska. Paper 46. Archived from the original on 2020-06-14. Retrieved 2020-06-14. (1+2+17 pages)
  • Fothe, Michael; Wilke, Thomas, eds. (2015) [2014-11-14]. Written at Jena, Germany. Keller, Stack und automatisches Gedächtnis – eine Struktur mit Potenzial [Cellar, stack and automatic memory - a structure with potential] (PDF) (Tagungsband zum Kolloquium 14. November 2014 in Jena). GI Series: Lecture Notes in Informatics (LNI) – Thematics (in German). Vol. T-7. Bonn, Germany: Gesellschaft für Informatik (GI) / Köllen Druck + Verlag GmbH. ISBN 978-3-88579-426-4. ISSN 1614-3213. Archived (PDF) from the original on 2020-04-12. Retrieved 2020-04-12. [2] (77 pages)