Java - Math pow() Method



Description

The Java Math pow(double a, double b) returns the value of the first argument raised to the power of the second argument. Special cases −

  • If the second argument is positive or negative zero, then the result is 1.0.
  • If the second argument is 1.0, then the result is the same as the first argument.

  • If the second argument is NaN, then the result is NaN.

  • If the first argument is NaN and the second argument is nonzero, then the result is NaN.

  • If

    • the absolute value of the first argument is greater than 1 and the second argument is positive infinity, or

    • the absolute value of the first argument is less than 1 and the second argument is negative infinity,

  • then the result is positive infinity.

  • If

    • the absolute value of the first argument is greater than 1 and the second argument is negative infinity, or

    • the absolute value of the first argument is less than 1 and the second argument is positive infinity,

  • then the result is positive zero.

  • If the absolute value of the first argument equals 1 and the second argument is infinite, then the result is NaN.

  • If

    • the first argument is positive zero and the second argument is greater than zero, or

    • the first argument is positive infinity and the second argument is less than zero,

  • then the result is positive zero.

  • If

    • the first argument is positive zero and the second argument is less than zero, or

    • the first argument is positive infinity and the second argument is greater than zero,

  • then the result is positive infinity.

  • If

    • the first argument is negative zero and the second argument is greater than zero but not a finite odd integer, or

    • the first argument is negative infinity and the second argument is less than zero but not a finite odd integer,

  • then the result is positive zero.

  • If

    • the first argument is negative zero and the second argument is a positive finite odd integer, or

    • the first argument is negative infinity and the second argument is a negative finite odd integer,

  • then the result is negative zero.

  • If

    • the first argument is negative zero and the second argument is less than zero but not a finite odd integer, or

    • the first argument is negative infinity and the second argument is greater than zero but not a finite odd integer,

  • then the result is positive infinity.

  • If

    • the first argument is negative zero and the second argument is a negative finite odd integer, or

    • the first argument is negative infinity and the second argument is a positive finite odd integer,

  • then the result is negative infinity.

  • If the first argument is finite and less than zero

    • if the second argument is a finite even integer, the result is equal to the result of raising the absolute value of the first argument to the power of the second argument

    • if the second argument is a finite odd integer, the result is equal to the negative of the result of raising the absolute value of the first argument to the power of the second argument

    • if the second argument is finite and not an integer, then the result is NaN.

  • If both arguments are integers, then the result is exactly equal to the mathematical result of raising the first argument to the power of the second argument if that result can in fact be represented exactly as a double value.

(In the foregoing descriptions, a floating-point value is considered to be an integer if and only if it is finite and a fixed point of the method ceil or, equivalently, a fixed point of the method floor. A value is a fixed point of a one-argument method if and only if the result of applying the method to the value is equal to the value.)

The computed result must be within 1 ULP of the exact result. Results must be semi-monotonic.

Syntax

public static double pow(double base, double exponent)

Parameters

Here is the detail of parameters −

  • base − Any primitive data type.

  • exponenet − Any primitive data type.

Return Value

  • This method returns the value of the first argument raised to the power of the second argument.

Example 1

In this example, we're showing the usage of Math.pow() method to get the power of a double value using another double value. We've created two double variables x, y and initialized them with different values. Then using Math.pow() method we're printing the Power value of the given double.

public class Test { 
   public static void main(String args[]) {
      double x = 11.635;
      double y = 2.76;

      System.out.printf("pow(%.3f, %.3f) is %.3f%n", x, y, Math.pow(x, y));
   }
}

This will produce the following result −

Output

pow(11.635, 2.760) is 874.008

Example 2

In this example, we're showing the usage of Math.pow() method to get the power of a float value using another float value. We've created two float variables x, y and initialized them with different values. Then using Math.pow() method we're printing the Power value of the given float.

public class Test { 
   public static void main(String args[]) {
      float x = (float)11.635;
      float y = (float)2.76;

      System.out.printf("pow(%.3f, %.3f) is %.3f%n", x, y, Math.pow(x, y));
   }
}

This will produce the following result −

Output

pow(11.635, 2.760) is 874.008

Example 3

In this example, we're showing the usage of Math.pow() method to get the power of a float value using zero value. We've created two float variables x, y and initialized them with different values. Then using Math.pow() method we're printing the Power value of the given float.

public class Test { 
   public static void main(String args[]) {
      float x = (float)11.635;
      float y = (float)0;

      System.out.printf("pow(%.3f, %.3f) is %.3f%n", x, y, Math.pow(x, y));
   }
}

This will produce the following result −

Output

pow(11.635, 0.000) is 1.000
java_numbers.htm
Advertisements