Articles in the Math Functions Category
Excel Functions, Math Functions »
SumSQ()
This function calculates the sum of squares of the numbers provided as arguments to the function. The arguments provided to this function can be numbers, range of numbers, arrays, etc.
Syntax:
= SumSQ (Number1, Number2, Number…)
Number1, Number2, Number: These are numbers for which sum of squares is to be calculated
Example:
- = SumSQ(1, 2, 3) – result will be – 14
This function does calculation as – ((1*1) + (2*2) + (3*3))
Excel Functions, Math Functions »
RandBetween()
This function returns a random number between a given range of integer numbers
Syntax:
= Randbetween (Bottom_number, Top_number)
Bottom_number: The smallest number that the function will return
Top_number: The largest number that the function will return
Example:
= Randbetween (3,100)
Note: This function is a volatile function, i.e. this function is re-calculated whenever the worksheet gets updated. A heavy use of this function in a workbook can make your workbook calculations slow
Excel Functions, Math Functions »
Rand()
This function returns an evenly distributed random number between 0 and 1
Syntax:
= Rand ()
Note: This function is a volatile function, i.e. this function is re-calculated whenever the worksheet gets updated. A heavy use of this function in a workbook can make your workbook calculations slow.
In Excel 2007, there is also an advanced version of this function: Randbetween()
Excel Functions, Math Functions »
SQRT()
This is a simple function which is used to convert find a square root of a number
Syntax:
= SQRT (Number)
Number_text: Number for which the square root is to be returned
Example:
- = SQRT (4) – result willl be – 2
- = SQRT (49) – result willl be – 7
- = SQRT (11) – result willl be – 121
Excel Functions, Math Functions »
Sign()
This function is used determine the sign (negative or positive) of a given number. It returns -1 for negative number, 1 for a positive number and, 0 if the number provided is 0
Syntax:
= Sign (Number)
Number: Number for which sign is to be determined
Example:
- = Sign (-21) – result will be: -1
- = Sign (-1) – result will be: -1
- = Sign (21) – result will be: 1
- = Sign (0) – result will be: 0
Excel Functions, Math Functions »
- = Odd (2) – result will be: 3
- = Odd (3) – result will be: 3
- = Odd (5) – result will be: 5
- = Odd (8) – result will be: 9
- = Odd (-2) – result will be: -3
- = Odd (-3) – result will be: -3
- = Odd (-5) – result will be: -5
- = Odd (-8) – result will be: -9
Math Functions »
Math Functions »
Math Functions »
Math Functions »
- = Even (2) – result will be: 2
- = Even (3) – result will be: 4
- = Even (5) – result will be: 6
- = Even (8) – result will be: 8
- = Even (-2) – result will be: -2
- = Even (-3) – result will be: -4
- = Even (-5) – result will be: -6
- = Even (-8) – result will be: -8
Math Functions »
- = ABS (20) – result will be – 20
- = ABS (-20) – result will be – 20
