
To use the calculator with Combine, link Calculator into Combine. Build an expression with the buttons on Calculator, then hit the Send button. Combine will display the combination image. If Combine has selected a function with its Function button, choose Calculator on that button, and Combine should display the calculator result.
| Key | Function | INV | HYP | INV+HYP |
| sin | Sine | arc sin | sinh | arc sinh |
| cos | Cosine | arc cos | cosh | arc cosh |
| tan | Tangent | arc tan | tanh | arc tanh |
| ln | Natural log | ex | ||
| log | Log base 10 | 10x | ||
| abs | Absolute value | |||
| rand | Random number | |||
| sqrt | Square root | x2 | ||
| 1/x | Reciprocal | |||
| == | Equality Test | Not equals | ||
| < | Inequality Test | >= | ||
| > | Inequality Test | <= |
The inequality tests are infix operators and return 0 (false) or 1 (true). These are most convenient for comparing two databases or slices within the same database. For example, one can enter A==B and see exactly where two databases (or slices) are equal.
The random number function produces a single random number between zero and its argument. It will be evaluated immediately if its argument can be. In order to add random noise to a database, one must prevent its evaluation. rand(A==A) will do that conveniently.
Mem, Rcl, and Exch interact with a dynamic register in the calculator. They work just as typical calculator buttons do, except that they can handle whole expressions. "Mem" saves an expression into memory. "Rcl" recalls it, and "Exch" exchanges the contents of the current display with the saved one.
F1-5 are used to save expressions between sessions. The calculator has five memory slots. Hitting an F key recalls a saved expression; INV+F key saves an expression into a permanent register. F1-3 have some useful or interesting expressions already saved.
The "Deg" key is a toggle key that affects how trigonometric expressions are evaluated. "Deg" means trig arguments are evaluated in degrees; "Rad" means they are in radians. Hitting the key switches between the two modes.
The question mark key, just as in all other applications, gets a help screen.
To create a number in exponential notation, do number * exponent INV LOG, which produces number * 10^exponent.