The Stack

The calculator can remember up to four last answers. It has four special memories for these and the set is called the "stack". The bottom of the stack has the latest answer. HP call this the "X register". The latest answer is what you see in the display. The answers from the last three calculations you did before that aren't normally displayed, but they are still remembered by the calculator in case you need them. They are stored in what HP call the "Y register", the "Z register" and the "T register". "T" is short for top. It looks like this:

T0.00
Z0.00
Y0.00
X15.00

You see this as:

15.00

One Number Functions

A one number function works like this:

4  5 
T0.00
Z0.00
Y0.00
X45
  Sine 
T0.00
Z0.00
Y0.00
X0.71

 

The answer (0.71) replaces the X value (45).

Two Number Functions

A two number function works like this:

5  0 
T0.00
Z0.00
Y0.00
X50
  Enter 
T0.00
Z0.00
Y50.00
X50.00
  2  5 
T0.00
Z0.00
Y50.00
X25
  Divide 
T0.00
Z0.00
Y0.00
X2.00

 

Normally, if you key in a number, any old answers get pushed up the stack. (The exceptions are after pressing CLX (clear X) or ENTER. With those two exceptions, the keyed in number replaces the (cleared or entered) number in X.)

Complicated Equations

A complicated equation works because the stack remembers answers like this:

9 
T0.00
Z0.00
Y0.00
X9
  f  Square root 
T0.00
Z0.00
Y0.00
X3.00
2 
T0.00
Z0.00
Y3.00
X2
  enter 
T0.00
Z3.00
Y2.00
X2.00
  3 
T0.00
Z3.00
Y2.00
X3
  add 
T0.00
Z0.00
Y3.00
X5.00
times 
T0.00
Z0.00
Y0.00
X15.00

 

 

 

© 2012-2015 Sydneysmith.com. All Rights Reserved.