2147483647

2,147,483,647

2,147,483,647

Natural number


The number 2,147,483,647 is the eighth Mersenne prime, equal to 231  1. It is one of only four known double Mersenne primes.[1]

Quick Facts Cardinal, Ordinal ...
By 1772, Leonhard Euler had proven that 2,147,483,647 is a prime.

The primality of this number was proven by Leonhard Euler, who reported the proof in a letter to Daniel Bernoulli written in 1772.[2] Euler used trial division, improving on Pietro Cataldi's method, so that at most 372 divisions were needed.[3] It thus improved upon the previous record-holding prime, 6,700,417, also discovered by Euler, forty years earlier. The number 2,147,483,647 remained the largest known prime until 1867.[4]

In computing, this number is the largest value that a signed 32-bit integer field can hold.

Barlow's prediction

At the time of its discovery, 2,147,483,647 was the largest known prime number. In 1811, Peter Barlow, not anticipating future interest in perfect numbers, wrote (in An Elementary Investigation of the Theory of Numbers):

Euler ascertained that 231  1 = 2147483647 is a prime number; and this is the greatest at present known to be such, and, consequently, the last of the above perfect numbers [i.e., 230(231  1)], which depends upon this, is the greatest perfect number known at present, and probably the greatest that ever will be discovered; for as they are merely curious, without being useful, it is not likely that any person will attempt to find one beyond it.[5]

He repeated this prediction in his work from 1814, A New Mathematical and Philosophical Dictionary.[6][7]

In fact, a larger prime was discovered in 1855 by Thomas Clausen (67,280,421,310,721), though a proof was not provided. Furthermore, 3,203,431,780,337 was proven to be prime in 1867.[4]

In computing

The number 2,147,483,647 (or hexadecimal 7FFFFFFF16) is the maximum positive value for a 32-bit signed binary integer in computing. It is therefore the maximum value for variables declared as integers (e.g., as int) in many programming languages. The appearance of the number often reflects an error, overflow condition, or missing value.[citation needed]

The data type time_t, used on operating systems such as Unix, is a signed integer counting the number of seconds since the start of the Unix epoch (midnight UTC of 1 January 1970), and is often implemented as a 32-bit integer.[8] The latest time that can be represented in this form is 03:14:07 UTC on Tuesday, 19 January 2038 (corresponding to 2,147,483,647 seconds since the start of the epoch). This means that systems using a 32-bit time_t type are susceptible to the Year 2038 problem.[9]

On 1 January 2022, a bug was reported for Microsoft Exchange systems where email delivery would fail. An internal malware scanner (enabled by default since 2013) used the date and time as a signed 32-bit integer. The integer would change during the new year to 2,201,010,001 (with the first two digits representing the year), surpassing the maximum value for this data type.[10]

In video games

The number 2,147,483,647 often becomes a hard limit for various statistics in video games, such as points or money, if they are represented by signed 32-bit integers (rather than floating-point, double-precision or arbitrary-precision).[11][12] Going over this limit by legitimate means, or by modding or hacking the game, results in many different outcomes caused by integer overflow.[13] The most common outcome is the number "wrapping" into the negatives. Another potential outcome is game crashing, thus meaning there was no failsafe implemented in the event the value exceeds the signed 32-bit limit—generally if the underlying engine has undefined behavior, instead of a wraparound behavior, for integer overflow. A well-known example in video games is that of Old School RuneScape and Grand Theft Auto V, where the number is used as the maximum amount of coins (or any other item) that a player can hold at once with normal methods, known as a "max cash stack".[14][15] In similar cases, where an unsigned instead of signed 32-bit integer is used, the limit might be extended to 4,294,967,295.[11]


References

  1. Weisstein, Eric W. "Double Mersenne Number". MathWorld. Wolfram Research. Retrieved 29 January 2018.
  2. Dunham, William (1999). Euler: The Master of Us All. Washington, DC: Mathematical Association of America. p. 4. ISBN 978-0-88385-328-3.
  3. Gautschi, Walter (1994). Mathematics of Computation, 1943–1993: A Half-Century of Computational Mathematics. Proceedings of Symposia in Applied Mathematics. Vol. 48. Providence, Rhode Island: American Mathematical Society. p. 486. ISBN 978-0-8218-0291-5.
  4. Caldwell, Chris (8 December 2009). "The Largest Known Prime by Year: A Brief History". The Prime Pages. University of Tennessee at Martin. Retrieved 29 January 2018.
  5. Barlow, Peter (1811). An Elementary Investigation of the Theory of Numbers. London: J. Johnson & Co. p. 43. greatest.
  6. Shanks, Daniel (2001). Solved and Unsolved Problems in Number Theory (4th ed.). Providence, Rhode Island: American Mathematical Society. p. 495. ISBN 978-0-8218-2824-3.
  7. "The Year-2038 Bug". Archived from the original on 18 March 2009. Retrieved 9 April 2009.
  8. Abrams, Lawrence. "Microsoft Exchange year 2022 bug in FIP-FS breaks email delivery". Bleeping Computer. Retrieved 2 January 2022.
  9. By (19 September 2018). "Final Fantasy Exploit Teaches 32-bit Integer Math". Hackaday. Retrieved 25 September 2022.
  10. "32-Bit Integers and Why Old Computers Matter". www.vice.com. 12 April 2015. Retrieved 25 September 2022.
  11. "Coins". Runescape Official Wiki.
  12. Wood, Austin (12 July 2018). "Old School Runescape pulled offline as billions of gold appear out of nowhere". PC Gamer. Retrieved 25 September 2022. it's appropriate to check that the calculation doesn't overflow the max integer limit of the game's language (2.1 billion). Unfortunately, the logic used for this calculation was incorrect, and when executed on stacks of other items (not the pouch itself) the result was to convert the stack to 2.1b coins.

Share this article:

This article uses material from the Wikipedia article 2147483647, and is written by contributors. Text is available under a CC BY-SA 4.0 International License; additional terms may apply. Images, videos and audio are available under their respective licenses.