SIN |
SIN(number) |
Returns the sine of a number. |
number | The number you want the sine of. |
REMARKS |
* For an illustrated example refer to the Trigonometric Functions page. * This function returns the equivalent ratio of the opposite side divided by the hypotenuse for a given angle. * This function always returns a value between -1 and 1 (inclusive). * This function is periodic with a period of 2PI. * The "number" is the angle in radians. * If "number" is not numeric, then #VALUE! is returned. * If your argument is in degrees, multiply it by PI/180 to convert it to radians. * The inverse of this function is the ASIN function. * The sine of a number is 1/CSC. * You can use the ASIN function to return the arc-sine. * You can use the COS function to return the cosine of a number. * You can use the TAN function to return the tangent. * You can use the DEGREES function to convert from radians to degrees. * You can use the RADIANS function to convert from degrees to radians. * The equivalent VBA function is VBA.SIN * For the Microsoft documentation refer to support.microsoft.com |
|
1 - What is the sine of 0 radians. 2 - What is the sine of 0.5 radians. 3 - What is the sine of 1 radian. 4 - What is the sine of (PI/2) radians. 5 - What is the sine of 2.5 radians. 6 - What is the sine of PI radians. 7 - What is the sine of -0.5 radians. 8 - What is the sine of -1 radians. 9 - What is the sine of (-PI/2) radians. 10 - What is the sine of -2.5 radians. 11 - What is the sine of -PI radians. 12 - What is the sine of 0.5 radians in degrees. 13 - What is the sine of 45 degrees. 14 - What is the sine of 60 degrees. |
© 2025 Better Solutions Limited. All Rights Reserved. © 2025 Better Solutions Limited Top