Calculator input methods

There are various ways in which calculators interpret keystrokes.

One can categorize calculators into two main types: 1) single-step or immediate execution calculators and 2) expression or formula calculators.

On a formula calculator one types in an expression and then presses 'Enter' to evaluate the expression.[1][2][3] There are various systems for typing in an expression: infix, postfix, natural display, etc.

On an immediate execution calculator, the user presses a key for each operation, by pressing keys to calculate all the intermediate results, before the final value is shown.[4][5][6]

Immediate execution

A simple four-function calculator program.

With the immediate execution mode (also known as algebraic entry system (AES)[7] or chain calculation mode) of operation each binary operation is executed as soon as the next operator is pressed, therefore the order of operations in a mathematical expression is not taken into account. Scientific calculators have buttons for brackets and these calculators can take order of operation into account. Also for unary operations like √ or x2 the number is entered first then the operator. Simple four-function calculators, such as those included with most operating systems, usually use this input method.

Examples
Formula keystrokes keystroke count
2 × 3 + 1 =

1 + 2 × 3 =

6

6

3 0 SIN × 3 0 COS = 8
5 - 3 = 4
1 5 + 1 0 + 1 0 + 1 0 = 12

The first example has 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.

The immediate execution calculators are based on a mixture of infix and postfix notation: binary operations are infix but unary operations are postfix. Because operators are applied one at a time, the user must work out which operator button to use at each stage and this can lead to problems.[8][9] When discussing these problems, Professor Harold 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”.[10]

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

Mistakes can be hard to spot because:

Examples of difficulties

The simplest example of a possible problem when using an immediate execution calculator given by Professor Thimbleby is 4*(5).[11] 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 can be different. Also, among the calculators, there are differences in the way a given sequence of button presses is interpreted.[12] The result can be:

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

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

Declarative and imperative tools

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

Professor 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.[16] 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 to do, 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,[16][17] and there has been a long-term trend from imperative to declarative methods.[18][19] Formula calculators are part of this trend.

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

Using the full power of the computer

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)[21] 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

Main article: infix notation
This calculator program has accepted input in infix notation, and returned the answer . Here the comma is a decimal separator.

Different forms of this input scheme 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] 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.),[22] and Casio calls this method Visually Perfect Algebraic Method (V.P.A.M.).[23]

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

Reverse Polish notation (RPN) (postfix notation)

Screenshot of an RPN Calculator program on GNU+Linux.

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 stack one can enter formulas without the need to rearrange operands. An example of a calculator which uses RPN is the HP 48G.

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

2 ↵ Enter 3 × 1 +

7
6
3 0 SIN 3 0 COS × 7
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)[24]
10 (Classical RPN)[24]

Note: example 1 which is one of the few examples 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

Main article: BASIC

This 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. Also, most computer algebra systems use this as the default input method.

In BASIC notation the formula is entered as it would be entered in BASIC PRINT command - the PRINT command itself being optional. On pressing the ENTER the result would be displayed. Typing mistakes in the entered formula could be corrected using the same editor function as available 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[25] or not.[26]

Tenkey notation (adding machine)

This 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. TenKey input mode is available in printing calculators from companies such as Sharp,[27] and in software calculators like Judy's TenKey[28] used by accounting firms. Online tenkey training and certification tools are available as well,[29][30] and some businesses use tenkey 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

Scientific calculator displaying fractions and their decimal equivalents

Some calculators allow the entering of equations in a way which things like fractions, surds and integrals are displayed in the way they would normally be written.

Casio used to call this Natural Display or Natural textbook display,[31][32] but now uses Natural-VPAM.[33] SHARP calls this WriteView[34] on its scientific calculators and on its graphing calculators it just uses the term Equation Editor.[35] HP calls this Textbook display setting [36] which can be used in both RPN and Algebraic mode in both Stack and in Equation Writer application.[37] Mathematica calls this Semantic-Faithful Typesetting.[38] Mathcad calls this standard math notation.[39] Maple has a Math Equation Editor[40] but does not have a special name for this input method. Texas Instruments calls this MathPrint.[41]

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 if the calculators will automatically insert needed parentheses or not. Machines equipped with an alphanumeric display will display SIN(30)×COS(30) before pressing ↵ Enter.

See also

References

  1. Formula Calculators Pty Ltd [Home page on the Internet]; 2009. Available from: http://fCalculators.com
  2. Moisey Oysgelt [JavaScript Formula Calculator page on the Internet]; 2000. Available from: http://www.alemoi.com/math
  3. Haxial Software Pty Ltd [Calculator Product page on the Internet]; 2001. Available from: http://www.haxial.com/products/calculator
  4. Microsoft’s Windows Operating System Calculator Accessory; 2001. Available on a Windows PC at: Start/All Programs/Accessories/Calculator
  5. MotionNET [Calculator page on the Internet]; 2006. Available from: http://www.motionnet.com/calculator
  6. Flow Simulation Ltd [Virtual Calc98 page on the Internet]; 2008. Available from: http://www.calculator.org/jcalc98.html
  7. 1 2 3 4 5 6 7 8 Ball, John A. (1978). Algorithms for RPN calculators (1 ed.). Cambridge, Massachusetts, USA: Wiley-Interscience, John Wiley & Sons, Inc. ISBN 0-471-03070-8.
  8. Harold Thimbleby. A new calculator and why it is necessary, Computing Science, Middlesex University, London, UK; September 1998. Available from: http://www.uclic.ucl.ac.uk/harold/srf/allcalcs.pdf
  9. Neville Holmes. Truth and Clarity in Arithmetic, University of Tasmania; 2003. Available from: http://standards.computer.org/sabminutes/2003Wint/Truth%20and%20Clarity%20in%20Arithmetic%20-%20Neville%20Holmes.pdf
  10. http://www.physorg.com. Professor devises easier calculator; June 2005. Available from: http://www.physorg.com/news4773.html
  11. Reference 11, section 2
  12. References 4, 5 and 6
  13. 1 2 Reference 4
  14. Reference 11, section 3.2, second paragraph
  15. Reference 11, sections 1 and 10
  16. 1 2 Reference 11
  17. Roy E. Furman. Declarative Programming - Strategies for Solving Software Problems, http://www.articlesalley.com; July 2006. Available from: http://www.articlesalley.com/article.detail.php/7013/178/Education/Internet/36/Declarative_Programming_-_Strategies_for_Solving_Software_Problems
  18. David A. Watt. Programming language concepts and paradigms, Prentice Hall; 1990. Citation 13 at: http://citeseer.ist.psu.edu/context/14802/0
  19. Tatsuru Matsushita. Expressive Power of Declarative Programming Languages, PhD thesis, Department of Computer Science, University of York; October 1998. Citation 13 at: http://citeseer.ist.psu.edu/context/14802/0
  20. Reference 20, paragraph 6
  21. Reference 3, second paragraph
  22. Direct algebraic logic
  23. What does VPAM stand for
  24. 1 2 http://h20331.www2.hp.com/hpsub/downloads/S07%20HP%20RPN%20Evolves%20V5b.pdf
  25. The picture of the Casio FX-880P shows sin, cos and tan keys on the second row right hand side.
  26. The picture of the Sharp PC-1245 shows no trigonometric keys
  27. Assortment of physical calculators, including printing ones that use tenkey syntax
  28. Example calculator which toggles between infix, RPN, and tenkey
  29. http://www.learn2type.com/typingtest/tenkeycertificate.cfm
  30. http://www.abbyinc.com/abbyinc/KeyPro.asp
  31. Natural textbook display - Scientific calculator
  32. Natural textbook display - Graphic calculator
  33. Natural Visually Perfect Algebraic Mode (V.P.A.M) - Scientific calculator
  34. WriteView
  35. Sharp Graphing equation editor
  36. Inc., HP. "HP Support document - HP Support Center". h20564.www2.hp.com. Retrieved 2016-08-23.
  37. http://h20331.www2.hp.com/Hpsub/downloads/50gUsing_the_EquationWriter_Part2.pdf
  38. Semantic-Faithful Typesetting
  39. Mathcad
  40. http://www.maplesoft.com/products/maple/features/feature_detail.aspx?fid=5907
  41. http://education.ti.com/educationportal/sites/US/productDetail/us_os_84plus.html
This article is issued from Wikipedia - version of the 8/23/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.