LongMath is used to perform mathematical operations on Long values. Basic standalone math functions are divided into the classes IntMath, LongMath, DoubleMath, and BigIntegerMath based on the primary numeric type involved. These classes have parallel structure, but each supports only the relevant subset of functions.
Declaration : The declaration for com.google.common.math.LongMath class is :
@GwtCompatible(emulated = true)
public final class LongMath
extends Object
Below table shows some of the methods provided by LongMath Class of Guava :

Exceptions :
- log2 : IllegalArgumentException if x <= 0
- log10 : IllegalArgumentException if x <= 0
- pow : IllegalArgumentException if k < 0
- sqrt : IllegalArgumentException if x < 0
- divide : ArithmeticException if q == 0, or if mode == UNNECESSARY and a is not an integer multiple of b
- mod : ArithmeticException if m <= 0
- gcd : IllegalArgumentException if a < 0 or b < 0
- checkedAdd : ArithmeticException if a + b overflows in signed long arithmetic
- checkedSubtract : ArithmeticException if a – b overflows in signed long arithmetic
- checkedMultiply : ArithmeticException if a * b overflows in signed long arithmetic
- checkedPow : ArithmeticException if b to the kth power overflows in signed long arithmetic
- factorial : IllegalArgumentException if n < 0
- binomial : IllegalArgumentException if n < 0, k < 0 or k > n
Some other methods provided by LongMath Class of Guava are :

Example 1 :
import java.math.RoundingMode;
import com.google.common.math.LongMath;
class GFG {
public static void main(String args[])
{
GFG obj = new GFG();
obj.examples();
}
private void examples()
{
try {
System.out.println(LongMath.divide( 80 , 3 , RoundingMode.UNNECESSARY));
}
catch (ArithmeticException ex) {
System.out.println( "Error Message is : " + ex.getMessage());
}
}
}
|
Output :
Error Message is : mode was UNNECESSARY, but rounding was necessary
Example 2 :
import java.math.RoundingMode;
import com.google.common.math.LongMath;
class GFG {
public static void main(String args[])
{
GFG obj = new GFG();
obj.examples();
}
private void examples()
{
System.out.println(LongMath.divide( 120 , 4 , RoundingMode.UNNECESSARY));
System.out.println( "GCD is : " + LongMath.gcd( 70 , 14 ));
System.out.println( "Log10 is : " + LongMath.log10( 1000 , RoundingMode.HALF_EVEN));
System.out.println( "modulus is : " + LongMath.mod( 125 , 5 ));
System.out.println( "factorial is : " + LongMath.factorial( 7 ));
System.out.println( "Log2 is : " + LongMath.log2( 8 , RoundingMode.HALF_EVEN));
System.out.println( "sqrt is : " + LongMath.sqrt(LongMath.pow( 12 , 2 ), RoundingMode.HALF_EVEN));
}
}
|
Output :
30
GCD is : 14
Log10 is : 3
modulus is : 0
factorial is : 5040
Log2 is : 3
sqrt is : 12
Reference : Google Guava