Categorygithub.com/blackchip-org/zc

# README

zc

A fun stack-based calculator.

Use the browser version here:

https://blackchip-org.github.io/zc

Use tab to auto-complete. First tab completes an operation name as much as possible. Next tab shows matching candidates. When using on a mobile device, use the "tab" button to emulate pressing the tab button twice.

Example use:

https://blackchip-org.github.io/zc/?eval=1+8+seq+[2+sw+pow]+map

Documentation

Go Reference

ZC Demo

About

When I'm at a terminal prompt and I need to use a calculator, bc has always been my tool of choice. I thought it would be fun to write a calculator myself but with some items from my wish list built in. Those items are:

  • A stack-based calculator. Typing in a value places it on the stack. An operation consumes values on the stack and places its results back on the stack.
  • To minimize the use of the shift key. Instead of using + for addition, use add or a which is easier to type.
  • Use arbitrary sized integers and fixed point math by default. 1.1 2.2 add should be 3.3 and not 3.3000000000000003.
  • Be more than a simple calculator. Need an external tool to lookup, compute, or calculate? Put it in the calculator as a module instead. Make this calculator like a Swiss army knife.
  • Auto-complete!

This is the third iteration of this calculator and something fun to work on when time is available. It is a bit rough at this stage but should be useful nonetheless. Also, it will always be a bit rough--full of bugs and inconsistencies. Features get added as I need or think of them. Bugs get fixed or ignored as I see them. There is no grand plan beyond tinkering around for entertainment. Things may change in backwards incompatible ways with no notice.

Installation

For the command-line version, install go and then install the calculator with:

go install github.com/blackchip-org/zc/v6/cmd/zc@latest

Run the calculator with:

zc

Overview

Each line entered at the calculator prompt is divided into words. Each word is separated by whitespace. A word can be either a:

  • value: Starts with a numeric character, a decimal point, a numeric sign, or quotes. Values are placed onto the stack.
  • operation: Invokes a operation with the given name. Parameters are consumed from the stack and results are placed on the stack.

If 2 3 a is entered at the prompt, the values of 2 and 3 are placed on the stack, the a operation (for addition) is executed, the values are consumed and the result 5 is placed on the stack.

Examples of calculator use will be presented in a table such as:

InputStack
2 3 a5

The Input column shows the text entered at the prompt and the Stack column shows the contents of the stack after the line is evaluated. Each word could have been placed on a separate line:

InputStack
22
32 | 3
a5

If there are multiple items on the stack, they are notated by using a pipe | character to separate each item. The item on the right is the top of the stack.

If an operation does not change the stack a notification may be printed right above the prompt. This is indicated in the table by using italics.

InputStack
0 rand.seedseed set to 0

The basic math functions are:

FunctionDescription
add, a, +Addition
sub, s, -Subtraction
mul, m, *Multiplication
div, d, /Division

For each of these operations there are three separate names. For addition there is:

  • a: Easy to type without having to use the shift key
  • add: Easy to read in documentation
  • +: Easy to type if you have a keyboard with a number pad

Additional basic math functions can be found in the basic reference.

Example

Let's compute the distance between two points: (2, 3) and (5, 7). The formula for this uses the Pythagorean theorem:

dist = sqrt((x2 - x1)^2 + (y2 - y1)^2)

The steps are:

  • Compute x2 - x1
  • Square the result
  • Compute y2 - y1
  • Square the result
  • Add them together
  • Take the square root

The entry into the calculator looks like the following:

InputStack
5 2 sub3
2 pow9
7 3 sub9 | 4
2 pow9 | 16
add25
sqrt5

Numbers

Thousand separators are ignored when parsing numbers:

InputStack
65,536 sqrt256

Currency symbols are also ignored when parsing:

InputStack
$1234 2 mul2468

Integer math uses arbitrary sized values when possible:

InputStack
2 128 pow340282366920938463463374607431768211456

Real number math uses fixed point math when possible:

InputStack
1.1 2.2 a3.3

To perform double precision floating-point operation, use add/f instead:

InputStack
1.1 2.2 add/f3.3000000000000003

Use either round or r to round to a certain number of digits after the decimal point:

InputStack
1.1 2.2 add/f3.3000000000000003
2 round3.3

Enter fractions in a/b notation:

InputStack
1/2 1/41/2 | 1/4
add3/4

Prefix a whole number to a fraction with either a space, an underscore, or a hyphen:

InputStack
2-1/2 3-1/42-1/2 | 3-1/4
add5 3/4

Enter complex numbers in r+i notation:

InputStack
1+2i 2+3i1+2i | 2+3i
add3+5i

Text

Text can be used as a value by either one of two ways. If the text does not contain any whitespace, the text can be prefixed with a slash, /. For example:

InputStack
1 21 | 2
/add1 | 2 | add

Otherwise, surround text with quotes. Single quotes, ' ', double quotes, " " or square brackets, [ ] can be used. If the text value is the only item on the line, an ending quote is not required. The following computes the length, in characters, of the given text:

InputStack
'one thousandone thousand
len12

Using brackets is convenient when nesting quoted values:

InputStack
1 2 [[[add]]]1 | 2 | [[add]]
eval1 | 2 | [add]
eval1 | 2 | add
eval3

To use multiple lines as values (for example, when pasting the contents of the clipboard), use quote with a delimiter that marks the end of the values. Each line is considered a separate value when using quote. For example:

InputStack
1 2 add3
quote EOF3
2 3 add3 | 2 3 add
EOF3 | 2 3 add

Annotations

Values on the stack may have annotations to provide some additional metadata. For example, distance calculations and conversions annotate the value with the unit of measure:

InputStack
1 1 2 21 | 1 | 2 | 2
haversine157225.4320380729 m
m-km 2 round157.23 km

A unit annotation can manually be attached to a value using unit:

InputStack
123123
/m unit123 m

A label can be attached using label:

InputStack
4242
[the answer] label the answer: 42

Annotations are typically discarded when a value is popped off the stack:

InputStack
123 /m unit123 m
20 sub103

Macros

Let's say that you commonly have to compute a sales tax that is 5%. To compute the sales tax on something that costs $123:

InputStack
$123$123
dup$123 | $123
0.05$123 | $123 | 0.05
mul$123 | 6.15
add129.15

Repeated use of this pattern can be used with a macro:

InputStack
def tax dup 0.05 mul macro 'tax' defined
$123$123
tax add129.15

The name of = is reserved for your macro use in bulk operations:

InputStack
def = top f-c 2 roundmacro '=' defined
32 =0 °C
68 =20 °C
100 =37.78 °C

No operations start with a . character and can be used for macro names. Play a game of rock, paper, scissors:

InputStack
1 rand.seedseed set to 1
def .rps c 'rock' 'paper' 'scissors' rand.takemacro '.rps' defined
.rpspaper
.rpsrock

Macros can also be used to override calculator operations. Undefine the macro by using def without an expression.

InputStack
def pi 'Yummacro 'pi' overrides
piYum
def pimacro 'pi' undefined
pi 5 rYum | 3.14159

Higher order functions

The map operation can be used to apply a function to each item on the stack. To use this operation, the top element of the stack should be an expression to evaluate. Place this expression on the stack using quotes to prevent immediate evaluation. For example, to double all numbers on the stack:

InputStack
1 2 3 4 51 | 2 | 3 | 4 | 5
[2 mul1 | 2 | 3 | 4 | 5 | 2 mul
map2 | 4 | 6 | 8 | 10

The fold function can be used to reduce all items in the stack to a single value. For example, to sum all the numbers on the stack:

InputStack
1 2 3 4 51 | 2 | 3 | 4 | 5
[add1 | 2 | 3 | 4 | 5 | add
fold15

Additional higher-order functions can be found in the hof reference.

Temporary Stack and Memory

It is sometimes convenient to store values in a temporary stack during a calcuation. The push operation removes the top item in the main stack and pushes it to the temproary stack. The pop operation does the inverse. For example, to compute an average, first get the length of the stack, push that to the temporary stack, sum the values, pop the length and then divide:

InputStack
2 4 4 4 5 5 7 92 | 4 | 4 | 4 | 5 | 5 | 7 | 9
n2 | 4 | 4 | 4 | 5 | 5 | 7 | 9 | 8
push2 | 4 | 4 | 4 | 5 | 5 | 7 | 9
sum40
pop40 | 8
div5

The push.all and pop.all operations transfers all items from one stack to the other. Use the flip operation to flip between the stacks.

Items on the main stack can also be stored to a named memory location to be recalled at a later time. Use store to copy the stack to memory and load to recall it.

Let's manually compute the population standard deviation found in the example on the Wikipedia page. The average of the all the data points must first be computed and then deviations from that average are calculated. This time the predefined average operation is used. The data is first entered into the calculator and then the stack is saved with the name of data. The average is then computed and stored with the name of av. The data points are then recalled from memory and the deviations from the average are calculated for each value. The standard deviation is then simply the square root of the average deviation.

InputStack
2 4 4 4 5 5 7 92 | 4 | 4 | 4 | 5 | 5 | 7 | 9
/data ststored
avg5
/av ststored
c /data ld2 | 4 | 4 | 4 | 5 | 5 | 7 | 9
[/av ld sub sq] map9 | 1 | 1 | 1 | 0 | 0 | 4 | 16
avg sqrt2

The same calculation can be done using the temporary stack like this:

InputStack
2 4 4 4 5 5 7 92 | 4 | 4 | 4 | 5 | 5 | 7 | 9
copycopied
avg5
popa5 | 2 | 4 | 4 | 4 | 5 | 5 | 7 | 9
up2 | 4 | 4 | 4 | 5 | 5 | 7 | 9 | 5
[sub sq] /map 2 apply9 | 1 | 1 | 1 | 0 | 0 | 4 | 16
avg sqrt2

Commands

These commands are available when running the calculator interactively:

CommandDescription
blank lineRemove the first item from stack
defDefine a macro
redoRedo the last undo
resetClear stacks, memory, and all state
quitPrint the final stack and return to shell
quoteAdd each line to the stack until delimiter is found
undo, uUndo the last line entered

Command line

Any arguments found on the command line are passed to the calculator for a one-time evaluation:

$ zc 2 3 add
5

Using quotes from the command line can be tricky since they are interpreted by the shell:

$ zc 'foo' len
(!) unknown operation: foo

In this case, wrap the expression with quotes and then use square brackets for foo:

$ zc '[foo] len'
3

Use a single argument of - to read from standard input:

$ echo "2 3 add" | zc -
5

External Libraries

Some features of the calculator use external C libraries. The current release binaries do not include these external libraries and using one of these operations will raise a "feature not supported" error.

Ubuntu

For coordinate transform support, build with the proj tag and install proj with:

sudo apt install libproj-dev

Credits

License

MIT

Feedback

Contact me at [email protected]

# Packages

No description provided by the author