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

The built-in Math.Pow() function in .NET raises a double base to a double exponent and returns a double result.

What's the best way to do the same with integers?

Added: It seems that one can just cast Math.Pow() result to (int), but will this always produce the correct number and no rounding errors?

share|improve this question

7 Answers

up vote 12 down vote accepted

Using the math in John Cook's blog link,

    public static long IntPower(int x, short power)
    {
        if (power == 0) return 1;
        if (power == 1) return x;
        // ----------------------
        int n = 15;
        while ((power <<= 1) >= 0) n--;

        long tmp = x;
        while (--n > 0)
            tmp = tmp * tmp * 
                 (((power <<= 1) < 0)? x : 1);
        return tmp;
    }
share|improve this answer
Make sure if you use this to not modify it at all. I thought I'd get around using a short to avoid casting anything, but the algorithm doesn't work if it's not. I prefer the more straightforward if less performant method by Vilx – obsidian Nov 18 '11 at 1:00
obsidian, You may be able to use an int if you change the 15 in the algorithm to a 31 – Charles Bretana Jan 7 '12 at 23:20
I did a brief benchmark and as I suspected, Vilx's method is more efficient if you need int-length powers (approximately 6 times faster). Perhaps someone else can verify this result? – Mr Samuel Nov 23 '12 at 11:03

A pretty fast one might be something like this:

int IntPow(int x, uint pow)
{
    int ret = 1;
    while ( pow != 0 )
    {
        if ( (pow & 1) == 1 )
            ret *= x;
        x *= x;
        pow >>= 1;
    }
    return ret;
}

Note that this does not allow negative powers. I'll leave that as an exercise to you. :)

Added: Oh yes, almost forgot - also add overflow/underflow checking, or you might be in for a few nasty surprises down the road.

share|improve this answer
that's great for a large exponent – orip Dec 20 '08 at 18:53
1  
Why do you need explicit overflow checking? Won't the built-in C# overflow checking apply just fine? (Assuming you pass /checked) – Jay Bazuzi Dec 20 '08 at 21:06
The algorithmic name for this is exponentiation by repeated squaring. Essentially, we repeatedly double x, and if pow has a 1 bit at that position, we multiply/accumulate that into the return value. – Mr Samuel Nov 23 '12 at 10:49

Here's a blog post that explains the fastest way to raise integers to integer powers. As one of the comments points out, some of these tricks are built into chips.

share|improve this answer

Use double version, check for overflow (over max int or max long) and cast to int or long?

share|improve this answer
How do I know this won't produce incorrect results due to rounding errors? – romkyns Dec 20 '08 at 20:27
Add 0.5 before converting to int to take care of rounding, as long as the precision of double is greater than that of int or long. – Mark Ransom Dec 20 '08 at 21:53
Doubles can represent all integers exactly up to 2^53, so this sounds like it will always work. – romkyns Dec 21 '08 at 8:15
Unless you're using 64-bit integers. – dan04 May 1 '10 at 5:01

My favorite solution to this problem is a classic divide and conquer recursive solution. It is actually faster then multiplying n times as it reduces the number of multiplies in half each time.

public static int Power(int x, int n)
{
  // Basis
  if (n == 0)
    return 1;
  else if (n == 1)
    return x;

  // Induction
  else if (n % 2 == 1)
    return x * Power(x*x, n/2);
  return Power(x*x, n/2);
}

Note: this doesn't check for overflow or negative n.

share|improve this answer
2  
This is the same algorithm as Vilx-, except it uses much more space (the recursive call is not a tail call). – Ben Voigt Jun 25 '12 at 21:06

LINQ anyone?

    public static int Pow(this int @base, int exponent)
    {
        return Enumerable
              .Repeat(@base, exponent)
              .Aggregate(1, (a, b) => a * b);
    }

usage as extension:

    var threeToThePowerOfNine = 3.Pow(9);
share|improve this answer
This is the most hilarious answer I've seen today - congratulations on making it work as expected :D – Mr Samuel Nov 23 '12 at 9:37

lolz, how about:

public static long IntPow(long a, long b)
{
  long result = 1;
  for (long i = 0; i < b; i++)
    result *= a;
  return result;
}
share|improve this answer
1  
Hardly the best. – Alexey Frunze Apr 11 '12 at 15:50
If you want to indicate which answer is the best, just upvote that answer instead of downvoting all other answers. A +1 against that -1. – C.Evenhuis Apr 17 '12 at 10:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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