This is a calculator for doing basic computations with asymptotic growth orders, usually written using big-O or big-Theta notation. Growth orders are stored in registers below. The first register is the "answer" register, and results will appear there by default.
You can perform the following operations:
Create a new register.
Serialize/deserialize your collection of growth orders to/from a string format.
Copy a value from one register to another using "➪".
Compute the partial sums of a growth order using "𝚺".
Find a growth order with given partial sums using "𝚫".
Multiply two growth orders using "×".
Take the reciprocal of a growth order using "⅟".
Raise a growth order to a constant power using "xⁿ"
Expand your repertoire by exponentiating an existing growth order, using "e".