ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I'm trying to calculate e^x, without any built-in functions such as Math.exp. This is what I have so far:
Code:
public static double math_ex(int iter, int x) {
double ex = 0;
int i = 1;
while(i <= iter) {
if (i == 1) {
ex += x;
} else {
ex += Math.pow(x,(double)i/factorial(i));
}
i++;
}
ex += 1;
return ex;
}
My input is:
Code:
Enter iterations:
6
Enter x:
3
e^3 = 11.989024
But when I use the calculator to figure it out, it is 20.0855........
Can you see anything thats wrong with my function?
Not a java programmer, but if Math.exp is a built=in function, I assume that Math.pow is as well.
Don't know what is wrong with your code, but is simple multiplying in a loop not easier.
something like
Code:
result=1;
while(iter--)
result *= x;
return result;
This is not bug free.
[edit]
OK, it's still vague but the factorial is probably to calculate e; so calculate e first and fill it in in place of x. Will be a bit faster as well as you only have to calculate e once.[/edit]
Last edited by Wim Sturkenboom; 07-24-2007 at 06:20 AM.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.