The two cards on the left are input cards holding the total cost and the number of people. The three on the right are calc cards. The upper line of a card is its formula; below the dotted line is the result. Per person is Total cost ÷ People: 870 ÷ 24 is $36.25. Fee rounds that up to a whole dollar with ceilto, giving $37. Collected is Fee × People, $888, which is $18 more than the total cost.
With People at 25, Per person becomes $34.8, Fee $35 and Collected $875. That is $5 more than the total cost. The blue labels in a formula, such as Total cost and People, are the parts that use other cards' values.
Typing a formula
Pressing the upper line of a calc card (above the dotted line) opens its formula for editing. On a computer you can type the formula with the keyboard; Enter confirms it and the result is recalculated.
The calculator at the bottom of the screen can also type into it. On a phone, tapping the formula opens the calculator. "Done" on the calculator keeps the formula, and "Discard" returns it to how it was before editing. The ︿ (Expand keyboard) at the top of the calculator adds the keys for brackets, powers and functions.
Multiplication and division can be typed as * and / or as × and ÷;
the card shows × and ÷ either way.
The decimal point is ".". Outside a function, a thousands comma is fine: 1,000+1 gives 1,001.
Using values from other cards (references)
A formula can use the value of another card; this is a reference. A reference appears in the formula as a label with the card's name. A card without a name appears by its number, such as "#1". Renaming a card in its name field changes the label in every formula that uses it. When a referenced value changes, the formula is recalculated automatically.
Adding a reference by drawing a line
A selected card shows a ○ on its right edge. Dragging that ○ onto the card whose formula should use it opens "Choose an operator" with "Add (+)", "Subtract (−)", "Multiply (×)" and "Divide (÷)". The chosen operator and the reference are added to the end of the formula.
On a card with an empty formula, "Add (+)" leaves just the reference. "Multiply (×)" makes the formula start with an operator (× People), which cannot be calculated.
With the card selected, each line into it shows an operator in a circle and a red ×. Pressing the operator changes it in the formula, in the order × → ÷ → + → −. The circle on the first reference switches between + and −; − subtracts that value (− People …). The red × removes the line, and the reference and its operator disappear from the formula.
Inserting a reference while typing
While editing a formula, typing [ opens the "Ref" list of cards.
Typing a card number after it narrows the list ([4 for card #4).
Choosing a card puts its reference label at that position.
The chain icon to the left of the formula on the calculator ("Insert a reference to another card") opens the same list.
A card that would create a loop is marked "(makes a loop)" in the list. In a loop, A's formula uses B and B's formula uses A, so no answer can be worked out.
Replacing a reference with another card
Pressing a label does not change what it refers to. To replace it, edit the formula and press Backspace (⌫ on the calculator) right after the label.
The label is removed; typing [ in the same place and choosing another card puts the new reference there.
Once the formula is confirmed, the line comes from the new card.
Operators and symbols
A formula is worked out in the usual order: multiplication and division come before addition and subtraction.
| Symbol | Meaning | Example and result |
|---|---|---|
+ − | Add, subtract | 5−3 → 2 |
× (*) | Multiply | 3×4 and 3*4 are the same: 12 |
÷ (/) | Divide | 8÷2 → 4 |
^ | Power, worked out from the right | 2^10 → 1,024; 2^3^2 → 512 |
( ) | Brackets: worked out first | (1+2)×3 → 9 |
% | Percent (next section) | 10% → 0.1 |
, | Separates the numbers given to a function | roundto(3456, 2) |
! | Factorial; whole numbers from 0 to 170 | 5! → 120 |
° | Degrees, even when the angle unit is RAD | sin(90°) → 1 |
e (after a number) | Scientific notation: times a power of ten | 2e3 → 2,000 |
A few ways of writing change the result.
-2^2is −4, because the power is worked out first. For the square of −2,(-2)^2gives 4.- Brackets or π written right after a number multiply it:
2(3+4)is 14. - That group is worked out before a division:
6÷2πmeans 6÷(2π), 0.95493.
% is a share of the number before it
% goes after a number. What it does depends on the operator in front of it.