I have a problem with Math.sin. I thought it would output the sinus of the given integer. So I tried Math.sin(30) and my output was -0.9880316240928618 and then I checked with my calculator and it was 0.5.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Parameters are assumed to be in radians, not degrees.

Try

Math.sin(Math.PI * (30/180));
link|improve this answer
1  
+1, precalculating Math.PI / 180 has proven itself to be a great performance boost if used often. – pimvdb Nov 16 '11 at 16:30
Thanks, that's good to know, though I don't think I've ever used the trig functions in JavaScript other than for fun :-) – Pointy Nov 16 '11 at 16:31
I was looking at it from a game perspective; I was able to obtain one extra frame per second from precalculating so I'd really recommend it. – pimvdb Nov 16 '11 at 16:33
feedback

Math.sin works in radians, I guess your calculator is in degrees.

link|improve this answer
feedback

Math.sin accepts values in radians, while your calculator is set to degrees.

link|improve this answer
feedback

As was said above, Math.sin() requires the use of radians as input. To convert degrees to radians, use:

Radians = (Degrees * (Math.PI/180))
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.