Math Formulas and Tricks
Here we are going to discuss common math formula and tricks used in programming.
Greatest Common Divisor
GCD or Highest Common Factor(HCF) is the largest value number which can divide two given numbers. For example GCD of is as it is the largest number which can divide both and . To find a GCD of two numbers both of them must be non-zero.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
Related Problems
Lowest Common Multiple
LCM is the lowest value number (except 1) which can be divided by given two numbers. For example LCM of is . The formula of LCM requires the GCD value of two given numbers and then we can have LCM as follows:
1 2 3 4 5 |
|
Check for Prime
Prime numbers in Math are the numbers which can be divided by and the number themselves. For example etc. are all prime numbers. is not considered prime number. Negative numbers cannot be prime.
An interesting observation in natural numbers line is that prime numbers always repeat themselves at a factored length of and starting from number .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
Power of a number
The power, let's say of a number is the value which we get if get to multiple the number by itself number of times.
In programming we can use a neat trick called binary exponentiation to calculate a power of a number in time instead of time.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|
Related Problems
Permutation
A permutation is arrangement of objects in a specific order after being picked up from a set of elements. The permutation can be after picking less number of objects from the set of elements. For example, for a set of if we want permutation of two elements we will get permutation as .
There is specifc formula to calcuate the number of permutations which we can get after picking elements from a set of elements as:
where and are the factorial.
In above example we can calculate permutations as:
Combination
If we only have to count the combinations of different element without taking into account their arrangements then we calcuate the combination as follows: