Girish Mahajan (Editor)

Reverse Polish notation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Reverse Polish notation (RPN) is a mathematical notation in which every operator follows all of its operands, in contrast to Polish notation (PN), which puts the operator before its operands. It is also known as postfix notation. It does not need any parentheses as long as each operator has a fixed number of operands. The description "Polish" refers to the nationality of logician Jan Łukasiewicz, who invented Polish notation in the 1920s.

Contents

The reverse Polish scheme was proposed in 1954 by Burks, Warren, and Wright and was independently reinvented by Friedrich L. Bauer and Edsger W. Dijkstra in the early 1960s to reduce computer memory access and utilize the stack to evaluate expressions. The algorithms and notation for this scheme were extended by Australian philosopher and computer scientist Charles Hamblin in the mid-1950s.

During the 1970s and 1980s, RPN was well-known to many calculator users, as Hewlett-Packard used it in their pioneering 9100A and HP-35 scientific calculators, the succeeding Voyager series - and also the "cult" HP-12C financial calculator.

In computer science, postfix notation is often used in stack-based and concatenative programming languages. It is also common in dataflow and pipeline-based systems, including Unix pipelines.

Most of what follows is about binary operators. An example of a unary operator whose standard notation uses postfix is the factorial.

Explanation

In reverse Polish notation the operators follow their operands; for instance, to add 3 and 4, one would write "3 4 +" rather than "3 + 4". If there are multiple operations, the operator is given immediately after its second operand; so the expression written "3 − 4 + 5" in conventional notation would be written "3 4 − 5 +" in RPN: 4 is first subtracted from 3, then 5 added to it. An advantage of RPN is that it removes the need for parentheses that are required by infix notation. While "3 − 4 × 5" can also be written "3 − (4 × 5)", that means something quite different from "(3 − 4) × 5". In postfix, the former could be written "3 4 5 × −", which unambiguously means "3 (4 5 ×) −" which reduces to "3 20 −"; the latter could be written "3 4 − 5 ×" (or 5 3 4 − ×, if keeping similar formatting), which unambiguously means "(3 4 −) 5 ×".

Practical implications

In comparison testing of reverse Polish notation with algebraic notation, reverse Polish has been found to lead to faster calculations, for two reasons. Because reverse Polish calculators do not need expressions to be parenthesized, fewer operations need to be entered to perform typical calculations. Additionally, users of reverse Polish calculators made fewer mistakes than for other types of calculator. Later research clarified that the increased speed from reverse Polish notation may be attributed to the smaller number of keystrokes needed to enter this notation, rather than to a smaller cognitive load on its users. However, anecdotal evidence suggests that reverse Polish notation is more difficult for users to learn than algebraic notation.

Postfix algorithm

The algorithm for evaluating any postfix expression is fairly straightforward:

  • While there are input tokens left
  • Read the next token from input.
  • If the token is a value
  • Push it onto the stack.
  • Otherwise, the token is an operator (operator here includes both operators and functions).
  • It is already known that the operator takes n arguments.
  • If there are fewer than n values on the stack
  • (Error) The user has not input sufficient values in the expression.
  • Else, Pop the top n values from the stack.
  • Evaluate the operator, with the values as arguments.
  • Push the returned results, if any, back onto the stack.
  • If there is only one value in the stack
  • That value is the result of the calculation.
  • Otherwise, there are more values in the stack
  • (Error) The user input has too many values.
  • Example

    The infix expression "5 + ((1 + 2) × 4) − 3" can be written down like this in RPN:

    5 1 2 + 4 × + 3 −

    The expression is evaluated left-to-right, with the inputs interpreted as shown in the following table (the Stack is the list of values the algorithm is "keeping track of" after the Operation given in the middle column has taken place):

    When a computation is finished, its result remains as the top (and only) value in the stack; in this case, 14.

    The above example could be rewritten by following the "chain calculation" method described by HP for their series of RPN calculators:

    As was demonstrated in the Algebraic mode, it is usually easier (fewer keystrokes) in working a problem like this to begin with the arithmetic operations inside the parentheses first.

    1 2 + 4 × 5 + 3 −

    Converting from infix notation

    Edsger Dijkstra invented the shunting-yard algorithm to convert infix expressions to postfix (RPN), so named because its operation resembles that of a railroad shunting yard.

    There are other ways of producing postfix expressions from infix notation. Most operator-precedence parsers can be modified to produce postfix expressions; in particular, once an abstract syntax tree has been constructed, the corresponding postfix expression is given by a simple post-order traversal of that tree.

    History of implementations

    The first computers to implement architectures enabling RPN were the English Electric Company's KDF9 machine, which was announced in 1960 and delivered (i.e. made available commercially) in 1963, and the American Burroughs B5000, announced in 1961 and also delivered in 1963. One of the designers of the B5000, Robert S. Barton, later wrote that he developed RPN independently of Hamblin sometime in 1958 after reading a 1954 textbook on symbolic logic by Irving Copi, where he found a reference to Polish notation, which made him read the works of Jan Łukasiewicz as well, and before he was aware of Hamblin's work. Designed by Robert "Bob" Appleby Ragen, Friden introduced RPN to the desktop calculator market with the EC-130 supporting a four-level stack in June 1963. The successor EC-132 added a square root function in April 1965. Around 1966, the Monroe Epic calculator supported an unnamed input scheme resembling RPN as well.

    Hewlett-Packard

    Hewlett-Packard engineers designed the 9100A Desktop Calculator in 1968 with RPN with only three stack levels, an RPN variant later referred to as three-level RPN. This calculator popularized RPN among the scientific and engineering communities. The HP-35, the world's first handheld scientific calculator, introduced the classical four-level RPN in 1972. HP used RPN on every handheld calculator it sold, whether scientific, financial, or programmable, until it introduced the HP-10 adding machine calculator in 1977. By this time HP was the leading manufacturer of calculators for professionals, including engineers and accountants.

    Later LCD-based calculators in the early 1980s such as the HP-10C, HP-11C, HP-15C, HP-16C, and the financial calculator, the HP-12C also used RPN. In 1988 Hewlett-Packard introduced a business calculator, the HP-19B, without RPN, but its 1990 successor, the HP-19BII, gave users the option of using algebraic notation or RPN.

    Around 1987, HP introduced RPL, an object-oriented successor to RPN. It deviates from classical RPN by utilizing a stack only limited by the amount of available memory (instead of three or four fixed levels) and which can hold all kinds of data objects (including symbols, strings, lists, matrices, graphics, programs, etc.) instead of just numbers. It also changed the behaviour of the stack to no longer duplicate the top register on drops (since in an unlimited stack there is no longer a top register) and the behaviour of the ↵ Enter key so that it no longer duplicates values into Y under certain conditions, both part of the specific ruleset of the automatic operational stack in classical RPN in order to ease some calculations and to save keystrokes, but which had shown to also sometimes cause confusion among users not familiar with these properties. From 1990 to 2003 HP manufactured the HP-48 series of graphing RPL calculators and in 2006 introduced the HP 50g.

    As of 2011, Hewlett-Packard was offering the calculator models 12C, 12C Platinum, 17bII+, 20b, 30b, 33s, 35s, 48gII (RPL) and 50g (RPL) which support RPN. While calculators emulating classical models continue to support classical RPN, new RPN models feature a variant of RPN, where the Enter key behaves as in RPL. This latter variant is sometimes known as entry RPN. In 2013, the HP Prime introduced a 128-level form of entry RPN called Advanced RPN. By early 2016, only the 12C, 12C Platinum, 17bii+, 35s and Prime remain active HP models supporting RPN.

    WP 31S and WP 34S

    The community-developed calculators WP 31S and WP 34S, which are based on the HP 20b/HP 30b hardware platform, support Hewlett-Packard-style classical RPN with either a four- or an eight-level stack. An eight-level stack was already suggested by John A. Ball in 1978.

    Sinclair Radionics

    In Britain, Clive Sinclair's Sinclair Scientific and Scientific Programmable models used RPN.

    Prinztronic

    Prinz and Prinztronic were own-brand trade names of the British Dixons photographic and electronic goods stores retail chain, which was later rebranded as Currys Digital stores, and became part of DSG International. A variety of calculator models was sold in the 1970s under the Prinztronic brand, all made for them by other companies.

    Among these was the PROGRAM Programmable Scientific Calculator which featured RPN.

    Heathkit

    The Heathkit OC-1401 aka Aircraft Navigation Computer OC-1401 used 5-level RPN in 1978.

    Soviet Union

    Soviet programmable calculators (MK-52, MK-61, B3-34 and earlier B3-21 models) used RPN for both automatic mode and programming. Modern Russian calculators MK-161 and MK-152, designed and manufactured in Novosibirsk since 2007 and offered by Semico, are backward compatible with them. Their extended architecture is also based on reverse Polish notation.

    Other implementations

    Existing implementations using reverse Polish notation include:

  • Any stack-oriented programming language, such as:
  • Forth
  • Factor
  • PostScript page description language
  • BibTeX
  • Befunge
  • Joy
  • IPTSCRAE
  • Lotus 1-2-3 and Lotus Symphony formulas
  • RPL (aka Reverse Polish Language), a programming language for the Commodore PET around 1979/1981
  • RPL (aka Reverse Polish Lisp), a programming language for Hewlett-Packard calculators between 1984 and 2015
  • RPNL (Reverse Polish Notation Language)
  • Hardware calculators:
  • Some Hewlett-Packard science/engineering and business/finance calculators
  • Semico calculators
  • SwissMicros calculators
  • Software calculators:
  • Mac OS X Calculator
  • Several Apple iPhone applications e.g. "reverse polish notation calculator"
  • Several Android applications e.g. "RealCalc"
  • Several Windows 10 Mobile applications e.g. "RPN9"
  • Unix system calculator program dc
  • Emacs lisp library package calc
  • Xorg calculator (xcalc)
  • grpn scientific/engineering calculator using the GIMP Toolkit (GTK)
  • F-Correlatives in MultiValue dictionary items
  • RRDTool, a widely used tabulating and graphing software
  • grdmath, a program for algebraic operations on NetCDF grids, part of Generic Mapping Tools (GMT) suite
  • galculator, a GTK desktop calculator
  • Winking Parser (used in Winkin' and Print&Share)
  • Mouseless Stack-Calculator scientific/engineering calculator including complex numbers.
  • References

    Reverse Polish notation Wikipedia