
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java - Math tan(double x) method
Description
The Java Math sin(double x) returns the trigonometric sine of a double value.Special cases −
If the argument is NaN or an infinity, then the result is NaN.
If the argument is zero, then the result is a zero with the same sign as the argument.
The computed result must be within 1 ulps of the exact result.
Declaration
Following is the declaration for java.lang.Math.sin() method
public static double sin(double x)
Parameters
x − The number whose trigonometric sine is to be returned.
Return Value
This method returns the trigonometric sine of x.
Exception
NA
Example: Getting Trigonometric sine value for a Positive double value
The following example shows the usage of Math sin() method to get a trigonometric sine value for a positive double value.
package com.tutorialspoint; public class MathDemo { public static void main(String[] args) { // get a double number double x = 45.0; // convert it to radian x = Math.toRadians(x); // print the trigonometric sine for this double System.out.println("Math.sin(" + x + ")=" + Math.sin(x)); } }
Output
Let us compile and run the above program, this will produce the following result −
Math.sin(0.7853981633974483)=0.7071067811865475
Example: Getting Trigonometric sine value for a Negative double value
The following example shows the usage of Math sin() method to get a trigonometric sine of a negative double value.
package com.tutorialspoint; public class MathDemo { public static void main(String[] args) { // get a double number double x = -45.0; // convert it to radian x = Math.toRadians(x); // print the trigonometric sine for this double System.out.println("Math.sin(" + x + ")=" + Math.sin(x)); } }
Output
Let us compile and run the above program, this will produce the following result −
Math.sin(-0.7853981633974483)=-0.7071067811865475
Example: Getting Trigonometric sine value for a Zero double value
The following example shows the usage of Math sin() method to get a value of a zero double values.
package com.tutorialspoint; public class MathDemo { public static void main(String[] args) { // get a double number double x = 0.0; // convert it to radian x = Math.toRadians(x); // print the trigonometric sine for this double System.out.println("Math.sin(" + x + ")=" + Math.sin(x)); } }
Output
Let us compile and run the above program, this will produce the following result −
Math.sin(0.0)=0.0