Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in two's-complement notation (like Java's primitive integer types). BigInteger provides analogues to all of Java's primitive integer operators, and all relevant methods from java.lang.Math. Additionally, BigInteger provides operations for modular arithmetic, GCD calculation, primality testing, prime generation, bit manipulation, and a few other miscellaneous operations. Java's BigInteger definition, retrieved from docs.oracle.com.
- Decide the numbering system that will be used. Is it going to be 8-bit char? what are the complications?
- Ponder around the complication of base-N multiplications and divisions