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;
}
You have an integer overflow in your
factorial
function. This causes it to output zero.49!
is divisible by2^32
, so yourfactorial
function will return zero.Then you divide by it causing it to go infinity. So the solution is to change
prod
todouble
: