When I calculate a large factorial, why do I get a negative number? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:32:51Z http://stackoverflow.com/feeds/question/236335 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number 0 When I calculate a large factorial, why do I get a negative number? Peter C. 2008-10-25T12:38:28Z 2008-10-25T13:42:40Z <p>So, simple procedure, calculate a factorial number. Code is as follows.</p> <pre><code>int calcFactorial(int num) { int total = 1; if (num == 0) { return 0; } for (num; num &gt; 0; num--) { total *= num; } return total; } </code></pre> <p>Now, this works fine and dandy (There are certainly quicker and more elegant solutions, but this works for me) for most numbers. However when inputting larger numbers such as 250 it, to put it bluntly, craps out. Now, the first couple factorial "bits" for 250 are { 250, 62250, 15126750, 15438000, 3813186000 } for reference.</p> <p>My code spits out { 250, 62250, 15126750, 15438000, <strong>-481781296</strong> } which is obviously off. My first suspicion was perhaps that I had breached the limit of a 32 bit integer, but given that 2^32 is 4294967296 I don't think so. The only thing I can think of is perhaps that it breaches a <strong>signed</strong> 32-bit limit, but shouldn't it be able to think about this sort of thing? If being signed is the problem I can solve this by making the integer unsigned but this would only be a temporary solution, as the next iteration yields 938043756000 which is far above the 4294967296 limit.</p> <p>So, is my problem the signed limit? If so, what can I do to calculate large numbers (Though I've a "LargeInteger" class I made a while ago that may be suited!) without coming across this problem again?</p> http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236338#236338 16 Answer by Stewart Johnson for When I calculate a large factorial, why do I get a negative number? Stewart Johnson 2008-10-25T12:41:50Z 2008-10-25T12:41:50Z <p>2^32 doesn't give you the limit for signed integers. </p> <p>The signed integer limit is actually <a href="http://msdn.microsoft.com/en-us/library/296az74e(VS.80).aspx" rel="nofollow">2147483647</a> (if you're developing on Windows using the MS tools, other toolsuites/platforms would have their own limits that are probably similar).</p> <p>You'll need a C++ large number library <a href="http://mattmccutchen.net/bigint/" rel="nofollow">like this one</a>.</p> http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236341#236341 -2 Answer by Daok for When I calculate a large factorial, why do I get a negative number? Daok 2008-10-25T12:42:38Z 2008-10-25T12:50:29Z <p>If i remember well:</p> <p>unsigned short int = max 65535</p> <p>unsigned int = max 4294967295</p> <p>unsigned long = max 4294967295</p> <p>unsigned long long (Int64 )= max 18446744073709551615</p> <h3>Edited source:</h3> <p><a href="http://home.att.net/~jackklein/c/inttypes.html#int" rel="nofollow">Int/Long Max values</a></p> <p><a href="http://www.cplusplus.com/doc/tutorial/variables.html" rel="nofollow">Modern Compiler Variable</a></p> http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236342#236342 7 Answer by OregonGhost for When I calculate a large factorial, why do I get a negative number? OregonGhost 2008-10-25T12:43:19Z 2008-10-25T12:43:19Z <p>Yes, you hit the limit. An int in C++ is, by definition, signed. And, uh, no, C++ does not think, ever. If you tell it to do a thing, it will do it, even if it is obviously wrong.</p> <p>Consider using a large number library. There are many of them around for C++.</p> http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236344#236344 4 Answer by Graeme Perrow for When I calculate a large factorial, why do I get a negative number? Graeme Perrow 2008-10-25T12:44:36Z 2008-10-25T12:44:36Z <p>If you don't specify signed or unsigned, the default is signed. You can modify this using a command line switch on your compiler.</p> <p>Just remember, C (or C++) is a very low-level language and does precisely <em>what you tell it to do</em>. If you tell it to store this value in a signed int, that's what it will do. <strong>You</strong> as the programmer have to figure out when that's a problem. It's not the language's job.</p> http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236345#236345 13 Answer by Ovid for When I calculate a large factorial, why do I get a negative number? Ovid 2008-10-25T12:46:25Z 2008-10-25T12:46:25Z <p>In addition to the other comments, I'd like to point out two serious bugs in your code.</p> <ul> <li>You have no guard against negative numbers. </li> <li>The factorial of zero is one, not zero.</li> </ul> http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236352#236352 1 Answer by Treb for When I calculate a large factorial, why do I get a negative number? Treb 2008-10-25T12:50:20Z 2008-10-25T12:50:20Z <p>My Windows calculator (<em>Start-Run-Calc</em>) tells me that </p> <pre><code>hex (3813186000) = E34899D0 hex (-481781296) = FFFFFFFFE34899D0 </code></pre> <p>So yes, the cause is the signed limit. Since factorials can by definition only be positive, and can only be calculated for positive numbers, both the argument and the return value should be unsigned numbers anyway. (I know that everybody uses <code>int i = 0</code> in for loops, so do I. But that left aside, we should use always unsigned variables if the value can not be negative, it's good practice IMO).</p> <p>The general problem with factorials is, that they can easily generate <em>very</em> large numbers. You could use a float, thus sacrificing precision but avoiding the integer overflow problem.</p> <p>Oh wait, according to what I wrote above, you should make that an unsigned float ;-)</p> http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236361#236361 1 Answer by John D. Cook for When I calculate a large factorial, why do I get a negative number? John D. Cook 2008-10-25T12:55:24Z 2008-10-25T12:55:24Z <p>You have an overflow problem. Factorials can easily exceed the limits of integers. You could change your function to return doubles, but that will only buy you a little more room. In applications, you often need multiply factorials times very small numbers where the end result will fit inside a double but the intermediate steps will not. Here's an article that explains how to handle this situation: <a href="http://www.johndcook.com/blog/2008/04/24/how-to-calculate-binomial-probabilities/" rel="nofollow">http://www.johndcook.com/blog/2008/04/24/how-to-calculate-binomial-probabilities/</a></p>