Skip to main content

Multiplication Trick 4


 Condition :  This trick is used when we multiply quickly two  numbers with 5 as the unit digit.       Example.  75×95 , 95×85 ,115×145 , 125×105


Illustration 1 :   
75×95

Solution:   
Numbers                 Split   as
     75                       7    /    5
 × 95                       9    /    5

[Split the numbers keeping the last digit (5) aside]
                       
1st part 2nd part 

Product +Sum ÷ 2 25       
[Product and Sum of no. other then unit digits]

[The 2nd part would be 25 as the sum 7+9=16 is even, if sum is odd , it would have become 75].
                         
step 1→     7×9 +16÷/  25
step 2→     63+8          /  25
step 3→     71              /  25
Answer is 7125



Illustration 2 :   
175×105

Solution:   
Numbers              Split as
    175                   17  /  5
× 105                   10  /  5

[Split the numbers keeping the last digit (5) aside]
                       
1st part 2nd part 

Product +Sum ÷ 2 / 75     
[Product and Sum of no. other then unit digits]

[The 2nd part would be 75 as the sum 17+10=27 is odd, if sum is even , it would have become 25].
                         
step 1→     17×10+(27-1)÷/  75  (Subtract 1 if sum is odd)
step 2→     170+13                /  75
step 3→     183                      /  75
Answer is  18375

.

Comments

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...

Convert Decimal to Binary and Octal

Complement of a Number    Number System    Types of Number system In our previous article, we had discussed Convert any number into Decimal Number. Now, In this article we can easily understand how to convert Decimal Number into other Number Note : The Rule is very simple. Any number which you want convert Decimal to required format. Just divide by its base to this number and remainder is taken from bottom to top. Let’s understand with some examples Convert Decimal to Binary Ex 1. Convert (41) 10 into Binary Number Sol. 41 is divide by 2 because the base of binary number is 2       Integer quotient    Quotient      Remainder        41 / 2                       20                 ...