Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
46  
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 '09 at 11:21
9  
unsigned: 2³²-1 = 4·1024³-1; signed: -2³¹ .. +2³¹-1, because the sign-bit is the highest bit. Just learn 2⁰=1 to 2¹⁰=1024 and combine. 1024=1k, 1024²=1M, 1024³=1G – comonad Mar 28 '11 at 20:01
3  
Any need to remember it... – serhio Dec 7 '11 at 10:54

24 Answers

up vote 785 down vote accepted

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

share|improve this answer
91  
i like the tattoo idear – Markus Lausberg Mar 3 '09 at 11:02
20  
@David Murdoch: But the largest negative value is -214783648, not -214783647. – Michael Myers Nov 4 '10 at 15:40
46  
haha. crap! now what do I do with this tattoo? – David Murdoch Nov 4 '10 at 15:44
31  
My company goes 64bit soon. Don't make the same mistake :( – FireAphis Apr 10 '11 at 15:27
165  
The largest negative integer is -1. – A. Jesse Jiryu Davis Apr 30 '12 at 19:48
show 8 more comments

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

share|improve this answer
1  
Damn, I was going to say that :-) – Ian Nelson Sep 18 '08 at 19:22
4  
They made that property just for us slothful coders. – Camilo Martin May 12 '10 at 2:48
5  
Before this existed, I used to #define INT32_MIN and INT32_MAX in all my projects. – WildJoe Sep 12 '11 at 19:04
1  
@CamiloMartin Hey. I resent that. There just wasn't place for any more tattoos. Obviously, the iso-8859-1 charset, and Pi to 31415 decimals had to get priority – sehe Feb 12 at 9:28
In what language? – lvella Feb 16 at 15:58
show 1 more comment

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.

share|improve this answer
101  
That's my phone number you insensitive clod! – Ben Hoffstein Sep 18 '08 at 17:59
10  
I wish that was my phone number. – Troy Howard May 21 '10 at 1:01
23  
It's a Walmart in Dallas – Michael Hedgpeth Oct 6 '10 at 15:49
2  
Speaking of remembering it as a phone number, it seems that there may be some phone spammers using it: mrnumber.com/1-214-748-3647 – Steven Oct 22 '10 at 14:57
2  
"There is no "748" exchange in Dallas. This number is fake." - from the page linked by shambleh – Kalmi Jan 21 '11 at 22:10
show 4 more comments

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!

share|improve this answer
14  
That is one of the most complicated mneumonic devices I have seen. Impressive. – Ben Hoffstein Sep 18 '08 at 17:34
1  
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/microsites/M/mindcontrol/remember/… – Luke Bennett Sep 18 '08 at 22:02
7  
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 '09 at 10:08
Now that I actually have been typing this in, I keep thinking of your mnemonic... It's rather useful! – Shotgun Ninja Aug 11 '11 at 13:45
1  
@DrJokepu I am not sure about the operator precedence... Does that mean 2^(31!) or (2^31)!? – Alderath Mar 29 '12 at 10:27
show 3 more comments
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
share|improve this answer
+1 handy approximation – Tom Leys Jun 17 '09 at 9:23
21  
That's what the hard-drive makers said. – Scott Stafford Oct 29 '10 at 20:27

If you think the value is too hard to remember in base 10, try base 2: 1111111111111111111111111111111

share|improve this answer
3  
Wait a minute... That number is negative! – Nick Whaley Feb 11 '11 at 2:38
9  
@Nick Whaley: No, 1111111111111111111111111111111 is positive. 11111111111111111111111111111111 would be negative :-) – Curd Apr 19 '11 at 12:48
12  
ouch, my eyes hurt now! – Billy Coover May 3 '11 at 21:30

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

2147483647.

share|improve this answer
35  
Any decent calculator can do 2^31 as well. – Christoffer Jun 17 '09 at 12:01
I don't know 2^31 seems like the long way to do it :/ – States Oct 26 '12 at 2:27
Or just remember it in hex – Vernon Jan 30 at 18:44
Just... write it in hex. Or Int32.MaxValue/numeric_limits<int32_t>::max() – sehe Feb 12 at 9:50

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)

share|improve this answer
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. – Sarien Sep 19 '08 at 10:03

The easiest way to remember is to look at std::numeric_limits< int >::max()

For example (from MSDN),

// numeric_limits_max.cpp

#include <iostream>
#include <limits>

using namespace std;

int main() {
   cout << "The maximum value for type float is:  "
        << numeric_limits<float>::max( )
        << endl;
   cout << "The maximum value for type double is:  "
        << numeric_limits<double>::max( )
        << endl;
   cout << "The maximum value for type int is:  "
        << numeric_limits<int>::max( )
        << endl;
   cout << "The maximum value for type short int is:  "
        << numeric_limits<short int>::max( )
        << endl;
}
share|improve this answer

Anyway, take this regex (it determines if string contains not negative Integer in decimal form that not greater than Int32.MaxValue)

"[0-9]{1,9}|[0-1][0-9]{1,8}|20[0-9]{1,8}|21[0-3][0-9]{1,7}|214[0-6][0-9]{1,7}|2147[0-3][0-9]{1,6}|21474[0-7][0-9]{1,5}|214748[0-2][0-9]{1,4}|2147483[0-5][0-9]{1,3}|21474836[0-3][0-9]{1,2}|214748364[0-7]{1,1}"

Maybe it would help you to remember

share|improve this answer
7  
<sarcasm>Yes, that should make it MUCH easier to remember.</sarcasm> – Dubs Jun 1 '10 at 17:49

2GB

(is there a minimum length for answers?)

share|improve this answer
6  
Shouldn't that be GiB? – Jouke van der Maas Oct 30 '10 at 21:48
2  
@JoukevanderMaas - Actually, it should be 4B. – Ted Hopp Sep 14 '12 at 16:09
Which is why the limit of RAM you can have on a 32bit computer is 4GB – Serj Sagan May 11 at 0:37

Assuming .NET -

Console.WriteLine(Int32.MaxValue);
share|improve this answer

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.

share|improve this answer
2  
Offtopic: 2^4 = 4^2, therefore exponentiation is commutative! – Adam Liss Nov 5 '08 at 1:17
4  
@AdamLiss this is a joke right? – Pier-Olivier Thibault Oct 20 '11 at 13:59
@Pier-OlivierThibault nope, I use it all the time! now I need to find out why all my math is coming out wrong. probably something to do with multiplication errors. anyway, bye! – Doorknob May 11 at 21:31

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.

share|improve this answer
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
It is indeed both an int and the correct int, since the extra will be truncated. – DeadMG Jun 1 '10 at 17:04

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!

share|improve this answer
1  
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 '09 at 9:27
You're right, the term last was incorrect. ;) – Andre Haverdings Jun 17 '09 at 10:07

Largest negative (32bit) value : -2147483648
(1 << 31)

Largest positive (32bit) value : 2147483647
~(1 << 31)

Mnemonic: "drunk AKA horny"

drunk ========= Drinking age is 21
AK ============ AK 47
A ============= 4 (A and 4 look the same)
horny ========= internet rule 34 (if it exists, there's porn for it)

21 47 4(years) 3(years) 4(years)
21 47 48 36 48

share|improve this answer
1  
what the hell did i just read? – iTayb Mar 26 at 11:07

with Groovy on the path:

groovy -e " println Integer.MAX_VALUE "

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

share|improve this answer

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.

share|improve this answer
1  
but it's not 2^32 - it's (2^31)-1 – Steve Folly Mar 3 '09 at 11:26

The easiest way to do this for integers is to use hexadecimal, provided that there isn't something like Int.maxInt(). The reason is this:

Max unsigned values

8-bit 0xFF
16-bit 0xFFFF
32-bit 0xFFFFFFFF
64-bit 0xFFFFFFFFFFFFFFFF
128-bit 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF

Signed values, using 7F as the max signed value

8-bit 0x7F
16-bit 0x7FFF
32-bit 0x7FFFFFFF
64-bit 0x7FFFFFFFFFFFFFFF

Signed values, using 80 as the max signed value

8-bit 0x80
16-bit 0x8000
32-bit 0x80000000
64-bit 0x8000000000000000

How does this work? This is very similar to the binary tactic, and each hex digit is exactly 4 bits. Also, a lot of compilers support hex a lot better than they support binary.

F hex to binary: 1111
8 hex to binary: 1000
7 hex to binary: 0111
0 hex to binary: 0000

So 7F is equal to 01111111 / 7FFF is equal to 0111111111111111. Also, if you are using this for "insanely-high constant", 7F... is safe hex, but it's easy enough to try out 7F and 80 and just print them to your screen to see which one it is

share|improve this answer

It's about 2.1 * 10^9. No need to know the exact 2^{31} - 1 = 2,147,483,647.

C

You can find it in C like that:

#include <stdio.h>
#include <limits.h>

main() {
    printf("max int:\t\t%i\n", INT_MAX);
    printf("max unsigned int:\t%u\n", UINT_MAX);
}

gives (well, without the ,)

max int:          2,147,483,647
max unsigned int: 4,294,967,295

Java

You can get this with Java, too:

System.out.println(Integer.MAX_VALUE);

But keep in mind that Java integers are always signed.

Python

Python has arbitrary precision integers. But in Python 2, they are mapped to C integers. So you can do this:

import sys
sys.maxint
>>> 2147483647
sys.maxint + 1
>>> 2147483648L

So Python switches to long when the integer gets bigger than 2^31 -1

share|improve this answer

Interestingly, Int32.MaxValue has more characters than 2,147,486,647..

But then again, we do have code completion,

So I guess all we really have to memorize is Int3<period>M<enter>, which is only 6 characters to type in visual studio.

share|improve this answer

It is very easy to remember. In hexadecimal one digit is 4 bits. So for unsigned int write 0x and 8 fs (0xffffffff) into a Python or Ruby shell to get the value in base 10. If you need the signed value, just remember that the highest bit is used as the sign. So you have to leave that out. You only need to remember that the number where the lower 3 bits are 1 and the 4th bit is 0 equals 7, so write 0x7fffffff into a Python or Ruby shell. You could also write 0x100000000 - 1 and 0x80000000 - 1, if that is more easy to you to remember.

share|improve this answer

This is how I remember...
In hex, a digit represents four bits, so 4 * 8 = 32, so the max signed 32 bit int is:

0xFFFFFFFF >> 1 # => 2147483647
share|improve this answer

Here's a mnemonic for remembering 2**31, subtract one to get the maximum integer value.

a=1,b=2,c=3,d=4,e=5,f=6,g=7,h=8,i=9

Boys And Dogs Go Duck Hunting, Come Friday Ducks Hide
2    1   4    7  4    8        3    6      4     8

I've used the powers of two up to 18 often enough to remember them, but even I haven't bothered memorizing 2**31. It's too easy to calculate as needed or use a constant, or estimate as 2G.

share|improve this answer
What do you do for 2^10, 2^11, 2^12, or 2^17 (all of which have zeroes)? – supercat May 10 at 23:47
@supercat I'd either rebase a=0, or use o=0. – Mark Ransom May 11 at 0:33

protected by Tim Post Jun 16 '12 at 7:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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