You need JavaScript switched on your browser for this to work. This mostly appears to work, and has a few quirks you have to get used to. After each calculation, click on the "Clear display" button.
© 2005 by Paul King. All rights reserved.
| Key | Meaning | Example | 
|---|---|---|
deg/rad/gra  | 
      switch to degrees/radians/gradians  | 
    |
√x  | 
    find the square root of x | √9 = 3 | 
x²  | 
    find x squared | 6² = 36 | 
x³  | 
    find x cubed | 2³ = 8 | 
eª  | 
    find the natural number, e, raised to the power a |  e0 = 1 e1 = 2.1718 e2 = 7.389  | 
  
log  | 
    find the base-10 log of a number | log 1 = 0  | 
  
ln  | 
    find the natural log of a number | ln 1 = 0  | 
  
lg  | 
    find the base-2 log of a number | lg 1 = 0  | 
  
sin/cos/tan  | 
    Find the sine, cosine or tangent of an angle | |
asin/acos/atan  | 
    Find the arcsine, arccosine, or arctangent of an angle. This is the reverse process of sin/cos/tan. | |
ran  | 
    Generate a random number between 0 and 1 (pseudo random). | |
rnd  | 
    Round the displayed number to the nearest integer. | |
pow  | 
    Raise some number x to the power y. Pressing "pow" clears the display for your next number. | 4 pow 3 = 64   | 
  
e  | 
    Display the number e (natural number) | e = 2.71828 | 
π  | 
    Display the number π (Pi) | π = 3.14159 | 
STO/RCL  | 
    Store a number in memory / Recall a number from memory | |
M+  | 
    Add displayed number to memory | |
M-  | 
    Subtract displayed number from memory |