Can anybody tell me how to solve polynomial equation of n degrees in JavaScript? Also how can I find antilogs in JavaScript? Is there any function by which I can find the antilog of any number?

link|improve this question

67% accept rate
eh? Why the change of heart. The now accepted answer is wrong... – Neal Apr 19 at 12:54
i posted one question nobody is giving me answer saying you have less accepted rate. i am very much frustrated with this community seems like this place is only for those who have brilliant skills in computer science not the person like me who are no-voice in this field – yashprit Apr 19 at 16:36
You had already selected an accepted answer on this one. I was just curious as to why you changed your mind. I dont have a care in the world abt your accept rate. – Neal Apr 19 at 16:40
feedback

2 Answers

up vote 0 down vote accepted
Math.pow(x,y);// x^y

Thats for polynomials

Math.log(x);

Thats for logs.

Math.pow(10,x); Thats for antilog

You have to come up with some function to solve antilog

link|improve this answer
feedback

To find the antilog(x) you just raise your base (usually 10) to the power of x. In JavaScript:

Math.pow(10, x); // 10^x

If you have another base, just put it in place of 10 in the above code snippet.

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.