Home Answers Viewqa Java-Beginners Inverse of trigonometric functions in java.

 
 


ratna rathor
Inverse of trigonometric functions in java.
1 Answer(s)      a year ago
Posted in : Java Beginners

How to get inverse of trigonometric functions in java?

View Answers

May 18, 2012 at 2:37 PM


public class InverseTrigno {
    public static void main(String[] args) {
        double degrees = 30;
        double radians = Math.toRadians(degrees);
        double sin, cos, tan;
        sin=Math.sin(radians);
        cos=Math.cos(radians);
        tan=Math.tan(radians);
        System.out.format("Value of Sin%.0f " + "degrees is %.4f%n",
                degrees, sin);
        System.out.format("Value of Cos%.0f " + "degrees is %.4f%n",
                degrees, cos);
        System.out.format("Value of Tan%.0f " + "degrees is %.4f%n",
                degrees, tan);
        System.out.format("Inverse of Sin%.0f " + " is %.0f%n",
                degrees, Math.toDegrees(Math.asin(sin)));
        System.out.format("Inverse of Cos%.0f " + "is %.0f%n",
                degrees, Math.toDegrees(Math.acos(cos)));
        System.out.format("Inverse of tan%.0f " + "is %.0f%n",
                degrees,  Math.toDegrees(Math.atan(tan)));
    }

}

output:

Value of Sin30 degrees is 0.5000
Value of Cose30 degrees is 0.8660
Value of Tan30 degrees is 0.5774
Inverse of Sin30 is 30
Inverse of Cose30 is 30
Inverse of tan30 is 30

Description: The basic Trigonometric functions are sin, cos and tan. Inverse of these functions are called arc sine ,arc cos and arc tan.In Math library it is represented as asin(),acos(),atan().

         toRadians(angel)?It converts  an angle measured in degrees to an approximately equivalent
                           angle measured in radians.
         toDegrees(angel) ? it converts an angle measured in radians to an approximately equivalent angle measured in degrees.
         sin() : Returns the trigonometric sine of an angle.
         cos() : Returns the trigonometric cosine of an angle.
         tan() : Returns the trigonometric tangent of an angle.
         asin(): It returns the arc sine of the specified double value.
         acos(): It returns the arc cosine of the specified double value.
         atan(): It returns the arc tangent of the specified double value.









Related Pages:
Inverse of trigonometric functions in java.
Inverse of trigonometric functions in java.  How to get inverse of trigonometric functions in java?   public class InverseTrigno... Trigonometric functions are sin, cos and tan. Inverse of these functions
Inbuild functions
Inbuild functions  List all the inbuild functions in java
how to find inverse of n*n 2d array in java
how to find inverse of n*n 2d array in java  I reached upto code of printing the matrix as: Assume that matrix is square matrix where row=column code is: public class ReadContents{ public static void main(String args
Functions and Methods
Functions and Methods  Write a Java program to input the sides of a triangle. Pass the sides to a function decide(int x,int y,int z) which checks and prints whether the triangle is equilateral,isosceles or scalene.   
static functions
2. Static Functions 3. Instance Variable  Static Variables Static.... For more information, visit the following links: Java Static Variables Java Instance Variables Java Static Method   Static Variables Static variables
Functions and Methods
Functions and Methods  (1) Write a program in java to input 10... in java to input day number. Use a function daysofweek(int dysno) to accept... to print the corresponding day of the week. (3) Write a Java program to input
Even and odd functions in java
Even and odd functions in java  Even and odd functions in java   Example: import java.util.*; public class EvenOddFunction { public... have two separate functions for checking either number is even or odd. We
inverse hibernate
In this section, you will learn how to use inverse keyword in Hibernate
Hibernate inverse keyword
In this section, you will learn how to use inverse keyword in Hibernate
JDBC Functions
JDBC Functions       In this Tutorial we want to describe you a code that helps you easy to understand Jdbc Functions. The code include a class Jdbc Functions, Inside the main method, the list
Hibernate Aggregate Functions
Hibernate Aggregate Functions In this tutorial you will learn about aggregate functions in Hibernate In an aggregate functions values of columns... supports various useful Aggregate functions some of these are : avg(...), avg
Difference Between cascade and inverse Keyword
Difference Between cascade and inverse Keyword In this tutorial we are going to differentiate between the cascade option and inverse keyword. Cascade...;/set> Download Full Example of Cascade Inverse : In Hibernate an inverse
JavaScript array of functions
JavaScript array of functions       In this Tutorial we want to describe you a code that help in understanding a JavaScript array of functions. For this we are using Java Script
greatest of 3 numbers using classes and functions.
greatest of 3 numbers using classes and functions.  WAP to calculate greatest of 3 numbers using classes and functions with parameters through input in main?   Java Find Largest Number import java.util.*; class
Inverse of an array in C
() { void read(int *,int); void display(int *,int); void inverse(int *,int); int a[6],i; clrscr(); read(a,6); display(a,6); inverse(a,6); display... ",d[j]); printf("\n"); } void inverse(int x[],int k
JavaScript Functions
the JavaScript functions. What is JavaScript Function? Java script Function... click here. What is the use of JavaScript Functions: The java Script... JavaScript Functions   
How to Use Java Functions In EL
How to Use Java Functions In EL          To use a Java Functions in  EL we.... The java class: In this class the functions declared must be public
Hibernate Min() Function (Aggregate Functions)
Hibernate Min() Function (Aggregate Functions)  ... the Min() function. Hibernate supports multiple aggregate functions. When...; 2005-02-02 00:00:00 Here is the java code to retrieve the minimum value
Hibernate Avg() Function (Aggregate Functions)
Hibernate Avg() Function (Aggregate Functions)  ... to use the avg() function. Hibernate supports multiple aggregate functions. When...:00:00 Here is the java code to retrieve the average value of "
Hibernate Max() Function (Aggregate Functions)
Hibernate Max() Function (Aggregate Functions... to use the Max() function. Hibernate supports multiple aggregate functions. When...:00 Here is the java code to retrieve the maximum value of "invested
Java reverse string without using inbuilt functions
Java reverse string without using inbuilt functions In this tutorial, you will learn how to reverse string without using any inbuilt functions. Here, we have created a method to reverse the string and returns a new string with reverse
What is functions?
What is functions?  Hi, Please tell me about PHP functions? Thanks in advance
What is functions?
What is functions?  Hi, Please tell me about PHP functions? Thanks in advance
Summary: Math Class
Java Summary: Math Class In this section we will study about the Match class of Java API. Some basic math functions can be found in the Math class... .... Math Methods Trigonometric Methods All trigonometric method
What is functions?
What is functions?  Hi, Please tell me about PHP functions? Thanks in advance.   About Functions: Functions in PHP is block of code... functions and use it multiple times. In PHP there is many pre-defined functions
WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java
WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java  WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java   
Q, 12 WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java
Q, 12 WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java  Q, 12 WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java
WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java
WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java  WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java   
WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java
WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java  WAP to calculate addition of two distances in feets and inches using objects as functions arguments in java   
Summary: Math and java.util.Random Classes
Java Summary: Math and java.util.Random Classes In this section we... for generating the random numbers. Some basic math functions can be found in the Math... Trigonometric Methods All trigonometric method parameters  are measured
how to calculate addition of two distances in feets and inches using objects as functions arguments
how to calculate addition of two distances in feets and inches using objects as functions arguments  how to calculate addition of two distances in feets and inches using objects as functions arguments in java
PHP Functions, PHP Functions Tutorials
PHP Functions In this section we will understand important PHP functions with the help of example code. What is Functions? Function is a block of code...; } Functions in PHP PHP provides many built-in functions to do the real job
Boolean functions in JavaScript
Boolean functions in JavaScript  Explain about the Boolean functions present in Javascript
What are encryption functions in PHP?
What are encryption functions in PHP?  What are encryption functions in PHP
decodeURI() and encodeURI() functions in JavaScript
decodeURI() and encodeURI() functions in JavaScript  What are decodeURI() and encodeURI() functions in JavaScript
the functions unlink and unset
the functions unlink and unset  What is the difference between the functions unlink and unset
functions strstr() and stristr().
functions strstr() and stristr().  What is the functionality of the functions strstr() and stristr
Boolean functions present in Javascript
Boolean functions present in Javascript   Explain about the Boolean functions present in Javascript
php stream functions
php stream functions  what does php stream functions do
JavaScript Variadic functions
JavaScript Variadic functions  Explain about Variadic functions
php array functions
php array functions  php array functions list
What is Character Functions
What is Character Functions  What is Character Functions   Hi, Here is the answer, Character Functions are INITCAP, UPPER, LOWER, SUBSTR & LENGTH. Additional functions are GREATEST & LEAST. Group Functions
c-language pointer functions
c-language pointer functions  what is the execution process of character pointer functions with example
Confusion on Functions. Help Please?!
Confusion on Functions. Help Please?!  Write a program which has a number of functions for getting the area i.e. area of circle, area of square, area of rectangle and area of cylinder. Right, I've got some of it, but I'm just
php oop functions
php oop functions  Just a quick question... php oop functions. can i call the main class function from an instantiated object of the child class

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.