I can't figure out why I keep getting the result 1.#INF from my_exp() when I give it 1 as input. Here is the code:

double factorial(const int k)
{
    int prod = 1;
    for(int i=1; i<=k; i++)
        prod = i * prod;
    return prod;
}

double power(const double base, const int exponent)
{
    double result = 1;
    for(int i=1; i<=exponent; i++)
        result = result * base;
    return result;
}

double my_exp(double x)
{
    double sum = 1 + x;
    for(int k=2; k<50; k++)
        sum = sum + power(x,k) / factorial(k);
    return sum;
}
link|improve this question

26% accept rate
Provide a self contained code snippet which demonstrates your problem. – Als Oct 19 '11 at 15:58
What values of x give you 1.#INF? – aix Oct 19 '11 at 15:59
x=1 gives me 1.#INF – Sean Oct 19 '11 at 16:02
Try using a long double variable type, instead of double. There is most likely stack overflow with your exponent function,like @Mystical said. May I ask what the function my_exp(); is trying to do? Perhaps that would help me make an alternate piece of code for you to use. – iKiar Oct 19 '11 at 16:11
feedback

2 Answers

You have an integer overflow in your factorial function. This causes it to output zero. 49! is divisible by 2^32, so your factorial function will return zero.

Then you divide by it causing it to go infinity. So the solution is to change prod to double:

double prod = 1;
link|improve this answer
That was it Thank you. – Sean Oct 19 '11 at 16:13
"That was it Thank you." is best expressed "by clicking on the check box outline to the left of the answer.", this will also help increase your 29% accept rate and encourage some StackOverflow users to answer your other outstanding questions. – Johnsyweb Jan 1 at 6:06
feedback

Instead of completely evaluating the power and the factorial terms for each term in your expansion, you should consider how the k'th term is related to the k-1'th term and just update each term based on this relationship. That will avoid the nasty overflows in your power and factorial functions (which you will no longer need). E.g.

double my_exp(double x)
{
    double sum = 1.0 + x;
    double term = x;                 // term for k = 1 is just x
    for (int k = 2; k < 50; k++)
    {
        term = term * x / (double)k; // term[k] = term[k-1] * x / k
        sum = sum + term;
    }
    return sum;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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