Skip to main content

Vedic Maths multiplication method

    Shree Ganeshay Namah



Good morning friends ... 
Today I start my blog  where I represent some maths tricks for you.
 
Now I am starting my first trick


1. Condition :  This trick is used when we multiply quickly two numbers near  a power of 10.            Example.  113×112 , 91×87 ,1005×1011 , 109×96


Illustration 1 :   
107×109
   Numbers    Base    Difference    
    107            100          +7
 ×109            100          +9

Solution:     
1st part / 2nd part (2 digits)
(Number of digits in the 2nd part =Number of 0s in the base)
                          
step 1→107+9  or  109+7 7×9
step 2→116 63

Answer is 11663


Illustration 2 :   
112×109

  Numbers   Base   Difference    
    112          100        +12
 ×109          100        +9

Solution:     
1st part / 2nd part (2 digits)
(Number of digits in the 2nd part =Number of 0s in the base)
                          
step 1→112+9  or  109+12 12×9
step 2→121 108
step 3→121+1(carry) 08   
step 4→122 08

Answer is 12208 


Illustration 3:   
98×93

Numbers    Base    Difference    
   98            100         -2
×93            100         -7

Solution:       
1st part / 2nd part (2 digits)
(Number of digits in the 2nd part =Number of 0s in the base)
                          
step 1→98-7  or  93-2 / 2×7
step 2→91 / 14
                         
Answer is 9114 


Illustration 4:   
87×89
 Numbers   Base   Difference    
   87            100       -13
×89            100       -11

Solution:     
1st part / 2nd part (2 digits)
(Number of digits in the 2nd part =Number of 0s in the base)
                          
step 1→87-11  or  89-13 13×11
step 2→76 143
step 3→76+1(carry) 43 
step 4→77 43

Answer is 7743 


                         
                         

Comments

Post a Comment

Popular posts from this blog

Complement of a Number

Subtraction of Binary Numbers  ;  Octal and Hexadecimal Number  ;  Convert Decimal to Binary Complements Complements are used in digital computers for simplifying the subtraction operation and for logical manipulations. There are two types of complements for each base-r system: (1) the r’s complement and (2) the (r-1)’s complement. When the value of the base is substituted, the two types receive the names 2’s and 1’s complement for binary numbers,  10’s and 9’s complement for decimal numbers. The r’s Complement Given a positive number N in base r with an integer part of n digits, the r’s complement of N is defined as r n   - N for N is not equal to 0 and 0 for N = 0. The following numerical example will help clarify the definition. The 10’s complement of (52520) 10 is 10 5 – 52520 = 47480 The number of digits in the number is n= 5 The 10’s complement of (0.3267) 10 is 1 – 0.3267 = 0.6733 No integer part, so 10 n = 10 0 = 1 The 10’s...

Rules of divisibility part -1

Rules of divisibility In Vedic mathematics, it can be determined whether any part of any other number can be given completely without dividing it by several methods. These methods are based on the law of divisibility. By using these rules, calculations related to factors, parts etc. are simplified. Law of divisibility by number 2 :- If unit digit of given number is divisible by 2 then the given number is divisible by 2 also.                                                                 or  If unit digit of given number is 0,2,4,6 or 8 , then given number is divisible by 2. Example :- 10 ,32 ,74 ,108 ,2058 etc. Law of divisibility by number 3 :- If the sum of digits of given number is divisible by 3, then the number is divisible by 3 also. Illustration 1:-  In 546532 sum of digits=5+4+6+5+3+2=25 25 is not divisible...

Octal and Hexadecimal Number

Complement of a Number    Types of Number system    Convert Decimal to Binary If you are new to this article, I strongly recommend to read our previous article before preceding this. In our previous article, we had already seen that binary number has a base of 2. It means that binary number contains 2 1 = 2 combinations which are 0 and 1. Similarly, Octal and Hexadecimal number has a fixed number of combinations. As we earlier know that octal has a base 8, then it contains 8 digits through 0 to 7 which means 2 3 =8 combinations and Hexadecimal has a base 16 which means it has 2 4 =16 combinations.                 If you are focusing on a sequence i.e. octal, hexadecimal. They are the combinations of increasing power of 2. Octal – 2 3 , Hexadecimal - 2 4 This power indicates how many bits are in a number for a particular number system Octal has 3 bits Hexadecimal has 4 bits T...