Saturday, November 22, 2025
HomeLanguagesJavaJava log1p() with example

Java log1p() with example

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. 

java




// Java program to demonstrate working
// of java.lang.Math.log1p() method
import java.lang.Math;
 
class Gfg {
 
    // driver code
    public static void main(String args[])
    {
        double a = 23.45;
        double b = -145.25;
        double c = 1.0 / 0;
        double d = -1;
        double e = 0;
 
         // positive double value as argument,
        // output double value
        System.out.println(Math.log1p(a));
 
         // negative integer as argument,
        // output NAN
        System.out.println(Math.log1p(b));
 
         // positive infinity as argument,
        // output Positive Infinity
        System.out.println(Math.log1p(c));
 
        // negative one as argument,
        // output Negative Infinity
        System.out.println(Math.log1p(d));
 
        // positive zero as argument,
        // output Zero
        System.out.println(Math.log1p(e));
    }
}


Output:

3.196630215920881
NaN
Infinity
-Infinity
0.0
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS