vote up 8 vote down star

I can never remember that number. I need a memory rule.

flag

74% accept rate
6  
Why would you need the exact number? I remember "(2^31)-1" or "+/- 2 billion" and that's good enough for everything I ever needed. – Joachim Sauer Mar 3 at 11:21

17 Answers

vote up 35 vote down check

It's 2,147,483,647. Easiest way to memorize it is via a tattoo.

link|flag
hehe.. thanks. I will tattoo that 2,147,438,647. – Flinkman Sep 18 '08 at 17:22
i like the tattoo idear – Markus Lausberg Mar 3 at 11:02
My way "It is more than two thousand million" – Tom Leys Jun 17 at 9:29
+1 for being funny :) – Chalkey Jun 17 at 10:05
vote up 5 vote down

Well it has 32Bits and hence can store 2^32 different values. Half of those are negative. Do the maths.

That's a simple memory rule if you have a good calculator. :)

The solution btw is: +2,147,483,647

and the lowest ist −2,147,483,648

(notice that there is one more negative)

link|flag
It has 32 bits and hence can store 2^32 values. No less. – JB Sep 18 '08 at 17:29
You're of course right ;) I'll edit that. – Corporal Touchy Sep 19 '08 at 10:03
vote up 3 vote down

Assuming .NET -

Console.WriteLine(Int32.MaxValue);
link|flag
vote up 20 vote down

The most correct answer I can think of is Int32.MaxValue.

link|flag
Damn, I was going to say that :-) – Ian Nelson Sep 18 '08 at 19:22
vote up 10 vote down

It's 10 digits, so pretend it's a phone number (assuming you're in the US). 214-748-3647. I don't recommend calling it.

link|flag
6  
That's my phone number you insensitive clod! – Ben Hoffstein Sep 18 '08 at 17:59
vote up 2 vote down

The value works out to 2,147,483,647.

That's (2^32-1)/2 because Int32 has 32 bits and half of it's values are negative.

Or, if you live in the world of .NET, don't bother remembering the number, just use Int32.MaxValue.

link|flag
2^32-1 is odd, so (2^32 - 1)/2 isn't an int. I think you mean (2^32)/2 - 1. – Adam Liss Nov 5 '08 at 1:16
vote up 8 vote down

Rather than think of it as one big number, try breaking it down and looking for associated ideas eg:

  • 2 maximum snooker breaks (a maximum break is 147)
  • 4 years (48 months)
  • 3 years (36 months)
  • 4 years (48 months)

The above applies to the biggest negative number; positive is that minus one.

Maybe the above breakdown will be no more memorable for you (it's hardly exciting is it!), but hopefully you can come up with some ideas that are!

link|flag
That is one of the most complicated mneumonic devices I have seen. Impressive. – Ben Hoffstein Sep 18 '08 at 17:34
Heh, the likes of Derren Brown actually advocate this kind of approach - breaking a number down into something random but whieh is more memorable than just a load of numbers: channel4.com/entertainment/tv/… – Luke Sep 18 '08 at 22:02
I have a better mnemonic: all you need to remember are 2 and 31, as it is apparently exactly 2^31 ! Oh, wait... – DrJokepu Jun 17 at 10:08
vote up 3 vote down

Just take any decent calculator and type in "7FFFFFFF" in hex mode, then switch to decimal.

2147483647.

link|flag
Any decent calculator can do 2^31 as well. – christoffer Jun 17 at 12:01
vote up 4 vote down
2^(x+y) = 2^x * 2^y

2^10 ~ 1,000
2^20 ~ 1,000,000
2^30 ~ 1,000,000,000
2^40 ~ 1,000,000,000,000
(etc.)

2^1 = 2
2^2 = 4
2^3 = 8
2^4 = 16
2^5 = 32
2^6 = 64
2^7 = 128
2^8 = 256
2^9 = 512

So, 2^31 (signed int max) is 2^30 (about 1 billion) times 2^1 (2), or about 2 billion. And 2^32 is 2^30 * 2^2 or about 4 billion. This method of approximation is accurate enough even out to around 2^64 (where the error grows to about 15%).

If you need an exact answer then you should pull up a calculator.

Handy word-aligned capacity approximations:

  • 2^16 ~= 64 thousand // uint16
  • 2^32 ~= 4 billion // uint32, IPv4, unixtime
  • 2^64 ~= 16 quintillion (aka 16 billion billions or 16 million trillions) // uint64, "bigint"
  • 2^128 ~= 256 quintillion quintillion (aka 256 trillion trillion trillions) // IPv6, GUID
link|flag
+1 handy approximation – Tom Leys Jun 17 at 9:23
vote up 0 vote down

2GB

(is there a minimum length for answers?)

link|flag
vote up 2 vote down

Just remember that 2^(10*x) is approximately 10^(3*x) - you're probably already used to this with kilobytes/kibibytes etc. That is:

2^10 = 1024                ~= one thousand
2^20 = 1024^2 = 1048576    ~= one million
2^30 = 1024^3 = 1073741824 ~= one billion

Since an int uses 31 bits (+ ~1 bit for the sign), just double 2^30 to get approximately 2 billion. For an unsigned int using 32 bits, double again for 4 billion. The error factor gets higher the larger you go of course, but you don't need the exact value memorised (If you need it, you should be using a pre-defined constant for it anyway). The approximate value is good enough for noticing when something might be a dangerously close to overflowing.

link|flag
Offtopic: 2^4 = 4^2, therefore exponentiation is commutative! – Adam Liss Nov 5 '08 at 1:17
vote up 2 vote down

with Groovy on the path:

groovy -e " println Integer.MAX_VALUE "

(Groovy is extremely useful for quick reference, within a Java context)

link|flag
vote up 0 vote down

Int32.MaxValue

link|flag
vote up 0 vote down

What do you mean? It should be easy enough to remember that it is 2^32. If you want a rule to memorize the value of that number, a handy rule of thumb is for converting between binary and decimal in general:

2^10 ~ 1000

which means 2^20 ~ 1,000,000

and 2^30 ~ 1,000,000,000

Double that (2^31) is rounghly 2 billion, and doubling that again (2^32) is 4 billion.

It's an easy way to get a rough estimate of any binary number. 10 zeroes in binary becomes 3 zeroes in decimal.

link|flag
but it's not 2^32 - it's (2^31)-1 – Steve Folly Mar 3 at 11:26
vote up 0 vote down

2147483647

To memorize you can always use the Mnemonic major system

"network review image egg" should do the trick.

link|flag
vote up 0 vote down

c++ : std::numeric_limits< int >::max()

link|flag
vote up 1 vote down

Int32 means you have 32 bits available to store your number. The highest bit is the sign-bit, this indicates if the number is positive or negative. So you have 2^31 bits for positive and negative numbers.

With zero being a positive number you get the logical range of (mentioned before)

+2147483647 to -2147483648

If you think that is to small, use Int64:

+9223372036854775807 to -9223372036854775808

And why the hell you want to remember this number? To use in your code? You should always use Int32.MaxValue or Int32.MinValue in your code since these are static values (within the .net core) and thus faster in use than creating a new int with code.

My statement: if know this number by memory.. you're just showing off!

link|flag
Most modern computers store numbers in "twos compliment" format. The highest (not lowest) bit is the sign. The neat thing with twos compement is that -ve numbers are handled by the natural overflow rules of the CPU. i.e 0xFF is 8 bit -1, add that to 0x01 (+1) and you get 0x100. Truncate bits above 8 to 0x00 and you have your answer. – Tom Leys Jun 17 at 9:27
You're right, the term last was incorrect. ;) – Andre Haverdings Jun 17 at 10:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.