Arithmetic operations across numeric bases (2 to 36).
Performs multi-digit arithmetic in arbitrary radices \(b \in [2, 36]\). Positional representation represents integers as \(N = \sum_{i=0}^{n} d_i \cdot b^i\) where \(d_i \in \{0, 1, \dots, b-1\}\). Columnar addition and multiplication propagate carries when column sums exceed \(b-1\); subtraction borrows base units \(b\) from the higher place value when minuend digit \(d_{1,i} < d_{2,i}\).