An Evolutionary RPN Calculator for Technical Professionals

Total Page:16

File Type:pdf, Size:1020Kb

An Evolutionary RPN Calculator for Technical Professionals An Evolutionary RPN Calculator for Technical Professionals Symbolic algebraic entry, an indefinite operation stack size, and a variety of data types are some of the advancements in HP's latest scientific calculator. by William C. Wickes THE HP-28C (Fig. 1} provides the most extensive • Symbolic algebra and calculus mathematical capabilities ever available in a hand An automated numerical root-finder (see article on page held calculator. Its built-in feature set exceeds even 30. the capabilities of the earlier HP-71B Handheld Computer1 • Vector and matrix math operations with its Math ROM.2 Furthermore, the HP-28C introduces Automatic plotting of functions and statistical data a new dimension in calculator math operations — symbolic Unit conversions among arbitrary combinations of 120 algebra and calculus. A user can perform many real and built-in units and user-defined units complex number calculations with purely symbolic quan • Integer base arithmetic, bit manipulations, and logic op tities, delaying numerical evaluation indefinitely. This al erations in either binary, octal, decimal, or hexadecimal lows a user to formulate a problem, work through to a notation solution, and study the mathematical properties of the so A keystroke-capture programming language enhanced lution entirely on the calculator. by high-level program control structures The HP-28C has the following features: An infrared printer interface for printing and graphics An RPN calculator interface allowing an indefinite output on the optional HP 82240A Infrared Printer. number of stack levels and a variety of data types The HP-28C's physical package differs from that of the A softkey menu system for key-per-function execution HP-18C Business Consultant (see page 4) in only two as of all built-in and user-defined procedures and data pects. The HP-28C uses different key nomenclature op • Extensive real and complex number functions timized for its math operations, and it contains an addi- Fig. 1 . The HP 28C Scientific Pro fessional Calculator features sym bolic entry of algebraic expres sions for an extensive range of functions capable of handling real and complex numbers, vectors and matrices, base 2, 8, 70, and 16 integers, lists, and built-in con version factors. The display can display up to four lines of the indef inite-depth stack or be used to plot functions with a resolution of 32 x 737 pixels. An integral in frared transmitter allows output of data and graphs to an optional printer. AUGUST 1987 HEWLETT-PACKARD JOURNAL 1 1 © Copr. 1949-1998 Hewlett-Packard Co. tional 64K bytes of ROM, for a total of 128K bytes. or hexadecimal bases. Lists are ordered collections of other The design philosophy for the HP-28C was to generalize objects. Data objects are characterized by the simple prop the ease of use, power, and flexibility of HP's RPN cal erty that the evaluation of the object just returns the same culator interface to a wider class of data types and applica object. tions while also eliminating some of the shortcomings of The generalized stack concept permits the introduction that interface. In the remainder of this article, we describe of object classes that have no counterpart in previous RPN some of the features of the HP-28C in the context of the implementations. A name object, for example, is a character evolution of the RPN interface. sequence that is used to identify other objects by name. In the HP-28C, the numbered storage registers on earlier cal Enhanced RPN culators are replaced by variables. A variable is a combina Reverse Polish notation (RPN), in which mathematical tion of a name object and any other object stored together expressions are written with functions following their argu in a linked list independent of the stack. Name objects have ments, is embodied in computers and calculators by means the property that evaluation of the name returns the object of a last-in-first-out (LIFO) data stack. Mathematical and stored with the named variable (and if the object is a pro logical functions take their arguments (inputs) from the top gram, executes the program). This means that a user variable of the stack, and return their results to the stack where behaves exactly like a built-in command. (In HP-28C ter they can be used as the arguments for subsequent opera minology, a command is a built-in, programmable operation.) tions. An RPN stack is the most efficient medium for chain A name for which no variable has yet been created fills ing and nesting calculations, and provides the greatest the role of a formal variable in mathematics, upon which keystroke efficiency in a calculator. operations can be performed, even before evaluation. Such The original HP RPN calculator user interface was first names just return themselves when evaluated. This prop used in the HP-35 Calculator3 in 1972. In that and sub erty is central to the implementation of symbolic mathema sequent HP calculators, the stack consisted of four fixed- tics on the HP-28C. length registers, each of which could contain one floating Evaluation by name and the linked list of variables are point number (the HP-41C Calculator4 also permits al modeled after a Forth dictionary. Built-in commands are phanumeric data in the form of a character string con compiled as their execution addresses, as in Forth. How strained to fit in a fixed-length number register). This sys ever, user-defined names are compiled unresolved. This tem was satisfactory for the numeric-only capability of the permits compilation of undefined (formal) variables, and early calculators, but with the advent of programmability also allows selective purging of variables from memory, and algorithms for more complicated data types, the restric neither of which is possible in Forth. There is a degradation tions of the fixed stack became more and more of a design of performance compared to Forth because of the necessity impediment. For example, in the HP-41C and HP-15C5 Cal for run-time resolution of user variables, but the overall culators, complex numbers are represented by two real throughput for user problem solving is usually better be floating-point numbers, one for the real part and one for cause of the ease of programming and flexibility of the the imaginary part. Two stack registers are needed for each HP-28C language. complex number, which means that a four-register stack The remaining new object class defined in the HP-28C can hold only two complex numbers, severely restricting is procedure objects. A procedure object contains an arbi the types of complex-number math operations that can be trary number of other objects that are executed automati performed on the stack. For example, the complex-number cally and sequentially when the procedure object itself is expression (A + B)(C + D) cannot be evaluated without stor evaluated. The procedure class includes programs, which ing an intermediate result away from the stack. are unrestricted sequences of data, commands, or variables, The HP-28C is the first HP calculator to modify the tra and algebraic objects, which represent mathematical ex ditional RPN interface. To begin with, the concept of a pressions and equations and therefore must satisfy certain stack register is generalized to a stack level that can hold syntax rules. Both procedure object types can be manipu an object of indeterminate size. An object can be one of lated on the stack, or named in a variable. In previous several types of data or procedures, each characterized by calculators, programs were created and edited only in a its internal structure and execution logic. Any object can special program mode. be manipulated on the stack as a single unit. For example, a complex number is represented by an ordered pair of Variable Stack Depth floating-point numbers that is entered and displayed in the In another major break with earlier calculator architec form (number, number). Since a complex-number object tures, the HP-28C stack grows dynamically as new objects now occupies a single stack level, it can be manipulated are entered onto the stack and shrinks as they are removed. with the same keystrokes used for a real-number object. The number of objects on the stack is limited only by avail For example, complex numbers in the first two stack levels able memory. There are two major benefits of this approach. can be added by pressing the + key, multiplied by pressing First, mathematical calculations of arbitrary complexity the x key, etc. can be carried out entirely on the stack. Second, it facilitates Besides real and complex numbers, HP-28C data objects structured programming — procedures can be defined exter include real and complex-valued arrays (matrices and vec nally in terms of the number and type of arguments they tors), alphanumeric strings, binary integers, and lists. Bi take from the stack and the number and type of result nary integers are binary coded integers of l-to-64-bit words objects they return. Subroutines can be nested to an arbi which can be entered or displayed in binary, octal, decimal, trary depth without concern for stack overflow. 12 HEWLETT-PACKARD JOURNAL AUGUST 1987 © Copr. 1949-1998 Hewlett-Packard Co. that are specified by name. Example Problem Different object types are identified within the command line by characteristic delimiter characters. For example, A farmer has 100 yards of fencing to enclose a rectangular strings are enclosed in double quotes, variable names and field, which is bounded on one side by a river. What length L algebraic expressions are surrounded by single quotes, and and width W of the field will enclose the maximum area? lists are enclosed in curly brackets.
Recommended publications
  • HP Scientific Calculators Which One Is Right for You?
    HP Calculators HP Scientific Calculators Which one is right for you? HP Scientific calculators are equipped with easy-to-use problem solving tools, enhanced capabilities and customized options, plus award-winning HP support. When choosing the right scientific calculator, make sure to purchase the one that best fits your needs. Use the comparison chart below to compare HP scientific calculator models. HP 10s+ HP 300s+ HP 35s Perfect for Students in middle and high school Students in middle and high school University students and technical professionals Key Characteristics User-friendly design, easy-to-read display Sophisticated calculator with easy-to-read Professional performance featuring RPN* and a wide range of algebraic, trigonometric, 4-line display, unit conversions as well mode, keystroke programming, the HP Solve** probability and statistics functions. as algebraic, trigonometric, logarithmic, application as well as algebraic, trigonometric, probability and statistics functions. logarithmic and statistics functions, Calculation Mode(s) Algebraic Algebraic Algebraic and RPN Display Size 2 lines x 12 characters, linear display 4 lines x 15 characters, linear display 2 lines , 14 characters, linear display Built-in Functions 240+ 315+ 100+ Size (L x W x D) 5.79 x 3.04 x 0.59 in 5.79 x 3.04 x 0.59 in 6.22 x 3.23 x 0.72 in Subject Suitability General mathematics, Arithmetic, Algebra, General mathematics, Arithmetic, Algebra, Mathematics geared towards Engineering, Trigonometry, Statistics probability Trigonometry, Statistics, Probability Surveying, Science, Medicine Additional Features Solar power plus a battery backup, decimal/ Table-based statistics data editor, solar 800 storage registers, physical constants, hexadecimal conversions, nine memory power plus a battery backup, integer division, unit conversions, adjustable contrast display, registers, slide-on protective cover.
    [Show full text]
  • RPN Calculators for Linux
    LinuxFocus article number 319 http://linuxfocus.org RPN calculators for Linux by Guido Socher (homepage) About the author: Abstract: My first RPN calculator was a HP15c and it was RPN stands for Reverse Polish Notation. Reverse Polish Notation was love at first sight. developed in 1920 by Jan Lukasiewicz as a way to write a mathematical expression without using parentheses and brackets. It takes a few minutes to learn RPN but you will soon see that this entry method is superior to the algbraic format. _________________ _________________ _________________ Introduction RPN pocket calculators became popolar with the HP calculators. HP used this entry method already for it's first calculator in 1968. If you search the internet you will find that there is a whole fan club behind those HP calculators. I have made a number of very good links available at the end of this article. Most of those HP calculators are today collectors items and sell now for much more than their original price. In this article will present some of the RPN desktop calculators available for Linux. We will not only look at the HP emulators which are available but also other RPN calculators which are totally independent of HP. What is RPN? Why RPN? RPN calculators use a stack and all mathematical operations are executed immediately on the lower level of the stack. The stack is used as a memory to save results which you need to further evaluate your formula. Therefore you do not need any brackets on an RPN calculator. You first enter the numbers, push them up the stack, and then you say what you want to do with those numbers.
    [Show full text]
  • Rplsh: an Interactive Shell for Stack-Based Numerical Computation
    RPLsh: An Interactive Shell for Stack-based Numerical Computation Kevin P. Rauch Dept. of Astronomy, University of Maryland, College Park, MD 20742 Abstract. RPL shell1, or RPLsh, is an interactive numerical shell designed to combine the convenience of a hand-held calculator with the computa- tional power and advanced numerical functionality of a workstation. The user interface is modeled after stack-based scientific calculators such as those made by Hewlett-Packard (RPL2 is the name of the Forth-like pro- gramming language used in the HP 48 series), but includes many features not found in hand-held devices, such as a multi-threaded kernel with job control, integrated extended precision arithmetic, a large library of spe- cial functions, and a dynamic, resizable window display. As a native C/C++ application, it is over 1000 times faster than HP 48 emulators (e.g., Emu483) in simple benchmarks; for extended precision numerical analysis, its performance can exceed that of Mathematica R by similar amounts. Current development focuses on interactive user functionality, with comprehensive programming/debugging support to follow. 1. Introduction The notion of progress in computer hardware has always been closely tied to the speed and sophistication with which numerical calculations can be performed. While the continuation of Moore's Law has resulted in hand-held devices more powerful than the 30 ton ENIAC machine, there is a growing gap between the speed and capabilities of hand-held scientific calculators as compared to desk- top workstations|the result of both market forces (pricing pressure) and phys- ical limitations (keyboard/screen size). Numerical analysis packages such as Mathematica or IDL, by contrast, are oriented towards script or command line processing, and lack the interactive amenities found in a traditional calculator.
    [Show full text]
  • Electronic Calculators: Which Notation Is the Better?
    Applied Ergonomics 1980, 11.1, 2-6 Electronic calculators: which notation is the better? S.J. Agate and C.G. Drury Department of Industrial Engineering, State University of New York at Buffalo Tests of an Algebraic Notation Calculator and a Reverse Polish Notation Calculator showed the latter to be superior in terms of calculation speed, particularly for subjects with a technical background. The differences measured were shown not to be due to differences in calculation speed of the calculators nor to differences in dexterity between the subjects. Introduction parentheses where execution of operators must be delayed." (Whitney, Rode and Tung, 1972.) The advent of the electronic calculator has had a tremendous effect on the working life of many scientists It is surprising that the two rival sides of the pocket and technologists and is now beginning to affect the lives calculator industry should not have published experimental of ordinary consumers. The change from the cams and data to support their claims. A literature search revealed gears of electromagnetic machines to integrated circuits two articles in Consumer Reports (1975a and b) suggesting has brought with it large changes in the industry that RPN "takes some getting used to" and that a simple manufacturing these devices, (Anon, 1976), but more rather than a scientific calculator should be used for importantly it has forced each manufacturer to opt for a simple calculations such as checkbook balancing. Another particular logic routine. This is the set of rules governing article published by the Consumers' Association ("Which?". the sequencing of input to the machine by the operator 1973), where 20 different calculators were tested for various operating functions that a person should look at The two logic routines in general use are Algebraic Notation (AN) and Reverse Polish Notation (RPN).
    [Show full text]
  • HP-45 Owner's Handbook
    Hewlett-Packard's interest in computation evolved as a natural extension of our traditional involvement in measurement problem solving. At an early date, HP recognized the growing need for a family of computational products designed to work easily and effectively with scientific instruments. In 1966 we introduced the first digital minicomputer specifically designed to meet this need. Soon after, we followed up with our first programmable calculator. From these beginnings, HP has now become an acknowledged leader in the field of computational problem solving. More than 20,000 HP programmable calculators and digital computers are at work in a wide range of applications in science, industry, education, medicine, and business. Their ef­ fectiveness is further enhanced by a complete line of accessory devices, ranging from digital tape and disc drives to card and tape readers, printers, and plotters. Lately we've coupled our experience in scientific problem solving and computational technology to bring you new dimensions in personal computation-the HP-80 Business Pocket Calculator for solving problems in business and finance, the HP-35 Scientific Pocket Calculator for engineering/ scientific applications, and now the HP-45 Advanced Scientific Pocket Calculator whose expanded functional capability and multiple storage registers allow complex problems to be handled with unprecedented ease. <CI HEWLETT· PACKARD COMP"NY, 1973 Attention Please! To give you more computing power, your HP-45 works in a con­ sistent and natural way that may be slightly different from previous calculators you have operated. Even though your new HP-45 is simple to operate, and you can start solving problems immediately by following the Quick Reference Guide accompanying the HP-45, you will find it worthwhile to read this handbook.
    [Show full text]
  • CALCULATOR PRODUCTS Personal Computation Models HP 108, HP 12C, HP 148, HP 178, HP 198, HP 205
    CALCULATOR PRODUCTS Personal Computation Models HP 108, HP 12C, HP 148, HP 178, HP 198, HP 205 Whatever field you are in-science, engineering, mathematics, HP 12C RPN Programmable Financial Calculator business, or education-Hewlett-Packard calculators are the best for The HP 12C calculator is the standard for real estate and finance. your success. And they provide the sense of pride that comes from It features business and financial functions plus math and statistics owning computational tools designed, in every detail, to be the finest for calculating mortgages, balloon payments, depreciation, bond of their kind. yields, and more. The HP 12C has a numeric one-line, 10-digit LCD Business calculators include the HP 12C, HP 14B, HP 17B, and 20 storage registers. Application books are available. HP Business Consultant II, and the new HP lOB. The HP 12C fea­ tures HP's traditional RPN (Reverse Polish Notation) entry system; others are designed for people who prefer algebraic entry calculators. Scientific calculators that feature RPN include the HP 32S, HP 42S, HP 41 CVICX, and HP 28S. The HP 22S, HP 27S, and the new HP HP 14B Business Calculator 20S and HP 21S have algebraic entry systems. The HP 14B calculator offers the most frequently needed functions The HP 17B, HP Business Consultant II, HP 27S, HP 42S, and for business students and small business owners at an economical HP 28S have menus and softkeys for easy access to functions. These price. It also has extras such as ROI, break-even and inventory analy­ models, and the HP 22S and HP 32S, also feature HP Solve to make sis, forecasting using four different curve fits with a best-fit feature, working with equations easier.
    [Show full text]
  • CALCULATOR PRODUCTS Personal Computation Models HP 10B, HP 12C, HP 14B, HP 17B, HP 19B, HP 20S
    CALCULATOR PRODUCTS Personal Computation Models HP 10B, HP 12C, HP 14B, HP 17B, HP 19B, HP 20S Whatever field you are in—science, engineering, mathematics, HP 12C RPN Programmable Financial Calculator business, or education—Hewlett-Packard calculators are the best for The HP 12C calculator is the standard for real estate and finance. your success. And they provide the sense of pride that comes from It features business and financial functions plus math and statistics owning computational tools designed, in every detail, to be the finest for calculating mortgages, balloon payments, depreciation, bond of their kind. yields, and more. The HP 12C has a numeric one-line, 10-digit LCD Business calculators include the HP 12C, HP 14B, HP 17B, and 20 storage registers. Application books are available. HP Business Consultant II, and the new HP 10B. The HP 12C fea- tures HP's traditional RPN (Reverse Polish Notation) entry system; others are designed for people who prefer algebraic entry calculators. Scientific calculators that feature RPN include the HP 32S, HP 42S, HP 41CV/CX, and HP 28S. The HP 22S, HP 27S, and the new HP HP 14B Business Calculator 20S and HP 21S have algebraic entry systems. The HP 14B calculator offers the most frequently needed functions The HP 17B, HP Business Consultant II, HP 27S, HP 42S, and for business students and small business owners at an economical HP 28S have menus and softkeys for easy access to functions. These price. It also has extras such as ROI, break-even and inventory analy- models, and the HP 22S and HP 32S, also feature HP Solve to make sis, forecasting using four different curve fits with a best-fit feature, working with equations easier.
    [Show full text]
  • RPN Calculates Faster. Get Accurate Results in Less Time with the HP 12C
    RPN calculates faster. Get accurate results in less time with the HP 12c. WHAT IS RPN? RPN (Reverse Polish Notation) is a mathematical notation that allows users to solve problems by mimicking how they learned to do math on paper. The operators (+,–,x,÷) are placed after the arguments (for example, 3+4 becomes 3 {ENTER} 4 +) allowing users to stack number sequences and operations, working from the bottom up. RPN eliminates the need for parentheses in complex calculations and reduces keystrokes, making problem solving quicker and more effi cient. T T Pressing an operator key (+ - x ÷) always collapses the bottom two rows of the stack. Z Z Y 3 x Y X 4 + X 7 Solving a Basic TVM Problem PV= 50 What is the Future Value of $50 invested today at r = 3% TVM Formula Formula with inputs N 5 3% interest for 5 years? N = 5 FV = PV x (1 + r) FV = 50 x (1 + .03) FV = ? Traditional Calculation Methods You might think all traditional calculators operate the same way, but there are actually two common operating modes, which require users to input formulas diff erently. Chain Algebraic Mode: Chain Mode calculates from left to right without following the Order of Operations. 50 x (1 + .03^5) = Algebraic Mode: Algebraic Mode follows the Order of Operations (Please Excuse My Dear Aunt Sally). 50 x (1 + .03)^5 = If you’re not sure which mode your calculator uses, you likely add extra parentheses to Mode Unknown: avoid potential errors, making calculations complicated and time consuming. 50 x ((1 + .03)^5)= RPN Method Final Answer: $57.96 RPN breaks equations into simpler components, making them easier to solve.
    [Show full text]
  • HP-15C Owner's Handbook
    HP-15C Owner’s Handbook HP Part Number: 00015-90001 Edition 2.4, Sep 2011 Legal Notice This manual and any examples contained herein are provided “as is” and are subject to change without notice. Hewlett-Packard Company makes no warranty of any kind with regard to this manual, including, but not limited to, the implied warranties of merchantability non- infringement and fitness for a particular purpose. In this regard, HP shall not be liable for technical or editorial errors or omissions contained in the manual. Hewlett-Packard Company shall not be liable for any errors or incidental or consequential damages in connection with the furnishing, performance, or use of this manual or the examples contained herein. Copyright © 2011 Hewlett-Packard Development Company, LP. Reproduction, adaptation, or translation of this manual is prohibited without prior written permission of Hewlett-Packard Company, except as allowed under the copyright laws. Hewlett-Packard Company Palo Alto, CA 94304 USA Introduction Congratulations! Whether you are new to HP calculators or an experienced user, you will find the HP-15C a powerful and valuable calculating tool. The HP-15C provides: 448 bytes of program memory (one or two bytes per instruction) and sophisticated programming capability, including conditional and unconditional branching, subroutines, flags, and editing. Four advanced mathematics capabilities: complex number calculations, matrix calculations, solving for roots, and numerical integration. Direct and indirect storage in up to 67 registers. This handbook is written for you, regardless of your level of expertise. The beginning part covers all the basic functions of the HP-15C and how to use them.
    [Show full text]
  • HP 12C Financial Calculator Quick Start Guide
    HP 12c Financial Calculator Quick Start Guide Edition 1 HP Part Number: F2230-90201 Legal Notices This manual and any examples contained herein are provided "as is" and are subject to change without notice. Hewlett-Packard Company makes no warranty of any kind with regard to this manual, including, but not limited to, the implied warranties of merchantability, non-infringement and fitness for a particular purpose. Hewlett-Packard Company shall not be liable for any errors or for incidental or conse- quential damages in connection with the furnishing, performance, or use of this man- ual or the examples contained herein. Copyright © 2008 Hewlett-Packard Development Company, L.P. Reproduction, adaptation, or translation of this manual is prohibited without prior written permission of Hewlett-Packard Company, except as allowed under the copy- right laws. Hewlett-Packard Company 16399 West Bernardo Drive San Diego, CA 92127-1899 USA Printing History Edition 1, October 2008 Table of Contents Welcome to your HP 12c Financial Calculator ........................... 1 The Keys................................................................................ 1 Customizing the Calculator ...................................................... 2 Storage Registers and Continuous Memory ................................ 7 Reverse Polish Notation (RPN) Mode......................................... 7 Keys and Functions ............................................................... 10 Basic Financial Calculation Example ......................................
    [Show full text]
  • Hp 17Bii+ Financial Calculator User’S Guide
    hp 17bII+ financial calculator user’s guide Edition 2 HP part number F2234-90001 Notice REGISTER YOUR PRODUCT AT: www.register.hp.com THIS MANUAL AND ANY EXAMPLES CONTAINED HEREIN ARE PROVIDED “AS IS” AND ARE SUBJECT TO CHANGE WITHOUT NOTICE. HEWLETT-PACKARD COMPANY MAKES NO WARRANTY OF ANY KIND WITH REGARD TO THIS MANUAL, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. HEWLETT-PACKARD CO. SHALL NOT BE LIABLE FOR ANY ERRORS OR FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH THE FURNISHING, PERFORMANCE, OR USE OF THIS MANUAL OR THE EXAMPLES CONTAINED HEREIN. © Copyright 1987-1989, 2003 Hewlett-Packard Development Company, L.P. Reproduction, adaptation, or translation of this manual is prohibited without prior written permission of Hewlett-Packard Company, except as allowed under the copyright laws. Hewlett-Packard Company 4995 Murphy Canyon Rd, Suite 301 San Diego, CA 92123 Printing History Edition 2 January 2004 File name : 17bii+_English(MP02-2)-040917(Print) Print data : 2004/10/28 Welcome to the hp 17bII+ The hp 17bII+ is part of Hewlett-Packard’s new generation of calculators: The two-line display has space for messages, prompts, and labels. Menus and messages show you options and guide you through problems. Built-in applications solve these business and financial tasks: Time Value of Money. For loans, savings, leasing, and amortization. Interest Conversions. Between nominal and effective rates. Cash Flows. Discounted cash flows for calculating net present value and internal rate of return. Bonds. Price or yield on any date. Annual or semi-annual coupons; 30/360 or actual/actual calendar.
    [Show full text]
  • 101 Online Postfix Complex Scientific Calculator For
    S E S 2 0 1 9 Fifteenth International Scientific Conference SPACE, ECOLOGY, SAFETY 6 – 8 November 2019, Sofia, Bulgaria ONLINE POSTFIX COMPLEX SCIENTIFIC CALCULATOR FOR MOBILE DEVICES Svetoslav Zabunov Space Research and Technology Institute – Bulgarian Academy of Sciences e-mail: [email protected] Keywords: Online postfix complex scientific calculator Abstract: Postfix calculators, based on the postfix notation (Reverse Polish notation or RPN), are widely used in different scenarios. Hewlett-Packard Company (HP) pioneered the method in handheld and desktop calculators in the late 60-ties and early 70-ties and the widely used following models with scientific and programmable features were based on the postfix notation. The first calculator employed in space missions was also an RPN pocket calculator – the HP-65 introduced in 1974 flown on the 1975 Apollo-Soyuz Test Project. Later other calculators went to space like the HP-41C and the Elektronika MK-52. The current article elaborates on a free pocket calculator software application that turns any smart device into a postfix complex numbers calculator benefitting from the well-established RPN approach and also from the now modern application driven smart device utilization. The software application is online, platform independent, free, no download or installation requiring, constantly evolving and meant for scientific and engineering use in the space sciences among others. The project was developed by the author of the current article during the last 13 years. ОНЛАЙН ПОСТФИКСЕН КОМПЛЕКСЕН НАУЧЕН КАЛКУЛАТОР ЗА МОБИЛНИ УСТРОЙСТВА Светослав Забунов Институт за космически изследвания и технологии – Българска академия на науките e-mail: [email protected] Ключови думи: Онлайн постфиксен комплексен научен калкулатор Резюме: Постфиксните калкулатори, базирани на постфиксната нотация (обратен полски запис или RPN), са широко използвани в различни задачи.
    [Show full text]