Obviously java.lang.StrictMath contains additional functions (hyperbolics etc.) which java.lang.Math doesn\'t, but is there a difference in the functions which are found in
Did you check the source code? Many methods in java.lang.Math are delegated to java.lang.StrictMath.
java.lang.Math
java.lang.StrictMath
Example:
public static double cos(double a) { return StrictMath.cos(a); // default impl. delegates to StrictMath }