J
jononanon
Stefan Ram asks the following:
The largest value a single bit can hold is not limited.
It just depends on the code used. For example, I can use this code:
bit
state meaning
0 the number 0
1 the number 100^100^100^100^100^100^100^100^100^100^100^100^100^100
For large numbers, see:
http://www.scottaaronson.com/writings/bignumbers.html
http://mathoverflow.net/questions/34710/succinctly-naming-big-numbers-zfc-versus-busy-beaver
http://jeremykun.wordpress.com/2012/02/08/busy-beavers-and-the-quest-for-big-numbers/
http://en.wikipedia.org/wiki/Busy_beaver
http://www.strangehorizons.com/2001/20010402/biggest_numbers.shtml
http://mrob.com/pub/math/largenum-5.html
. With C, one can use the literal »1«:
{ number c;
init( &c, 1 );
print( c ); }
will print
100^100^100^100^100^100^100^100^100^100^100^100^100^100
, given an appropriate definition for »number«, »init«, and »print«
(exercise).