vote up 1 vote down star
>>> import math
>>> math.sin(68)
-0.897927680689

sin(68)=0.927(3dp)

Any ideas about why I am getting this result? Thanks.

flag

1 Answer

vote up 16 vote down check
>>> import math
>>> print math.sin.__doc__
sin(x)

Return the sine of x (measured in radians).

math.sin expects its argument to be in radians, not degrees, so:

>>> import math
>>> print math.sin(math.radians(68))
0.927183854567
link|flag
The docstring is poorly written. It says: "Returns the sign of x, the return value is measured in radians.". – too much php Aug 6 at 5:24
3  
@too much php: that's a matter of interpretation. The return value is a ratio, not a measurement in any particular unit, so "(measured in radians)" clearly refers to x - the argument. – mhawke Aug 6 at 5:41
4  
@too much php: No it doesn't. It says: 'sin(x)\n\nReturn the sine of x (measured in radians).' sine(angle) produces number (not angle) ranging from -1 to 1. All angles in everybody's trig library are measured in radians. Your interpretation is unjustifiable. – John Machin Aug 6 at 6:12
1  
just fyi. help(math.sin) also provides the docstring on math.sin. – monkut Aug 6 at 6:30

Your Answer

Get an OpenID
or

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