VOOZH about

URL: https://www.geeksforgeeks.org/java/java-log1p-example/

⇱ Java log1p() with example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java log1p() with example

Last Updated : 12 Apr, 2023

The java.lang.Math.log1p() is one of the Java Math Library method which is used to return the natural logarithm of the sum of the arguments and 1.For the small values, the result of log1p(a) is much closer to the true result of ln(1 + a) than the floating-point evaluation of log(1.0 + a).There are various cases :

  • If the argument is positive double value, Math.log1p() method will return the logarithm of the given value.
  • If the argument is NaN or less than -1, Math.log1p() method will return NaN.
  • If the argument is positive infinity, Math.log1p() method will return the result as Positive Infinity
  • If the argument is negative one, Math.log1p() method will return Negative Infinity
  • If the argument is positive or negative zero, Math.log1p() method will return Zero

Syntax :

public static double log1p(double a)

Parameter :

a : User input

Return :

This method returns the value ln(x + 1), the natural log of x + 1.

Example :To show working of java.lang.Math.log1p() method. 

Output:
3.196630215920881
NaN
Infinity
-Infinity
0.0
Comment
Article Tags:
Article Tags: