You are on page 1of 1

Functions:

Mathematical Functions:
Abs() :
It returns the absolute value of the given number i.e. number without its sign.
Syntax: =Abs(Number)
Eg:
=Abs(-89)
==>89
Ceiling():
It increases the given number to the nearest integer to the nearest multiple of
significance.
Syntax: =Ceiling(Number,Significance)
Eg:
=Ceiling(45.56,1)
==> 46
=Ceiling(52,6) ==> 54
Floor():
It decreases the given number to the nearest integer to the nearest multiple of
significance.
Syntax: =Floor(Number, Significance)
=Floor(45.56,1) ==> 45
=Floor(52,6)
==> 48
Fact() :
It returns the factorial of the given number i.e. 1 * 2 * 3 * ......* n.
Syntax: =Fact(Number)
Eg:
=Fact(5)
==> 120
GCD() :
It returns the greatest common divisor.
Syntax: =GCD(Num1,Num2,Num3,....)
Eg:
=GCD(24,48,18) ==> 6
LCM() :
It returns the least common multiplier.
Syntax: =LCM(Num1,Num2,Num3,...)
Eg:
=LCM(4,8,12)
==> 24
Log( ) :
It returns the logirithm value of the given number on the given base.
Syntax: =Log(Number,Base)
Eg:
=Log(4,5)
==> 1
Mod() :
It returns the reminder after dividing a number with a divisor.
Syntax: =Mod(Number,Divisor)
Eg:
=Mod(45,10)
==> 5
Quotient() :
It returns the quotient in a division operation.
Syntax: =Quotient(Number,Divisor)
Eg:
=Quotient(45,10)
==> 4
Power() :
It returns the result of a number raised to its power.
Syntax: =Power(Number,power)
Eg:
=Power(3,4)
==> 81

You might also like