fbpx
Wikipedia

Trachtenberg system

The Trachtenberg system is a system of rapid mental calculation. The system consists of a number of readily memorized operations that allow one to perform arithmetic computations very quickly. It was developed by the Russian engineer Jakow Trachtenberg in order to keep his mind occupied while being in a Nazi concentration camp.

The rest of this article presents some methods devised by Trachtenberg. Some of the algorithms Trachtenberg developed are ones for general multiplication, division and addition. Also, the Trachtenberg system includes some specialised methods for multiplying small numbers between 5 and 13 (but shown here is 2–12).

The section on addition demonstrates an effective method of checking calculations that can also be applied to multiplication.

General multiplication edit

The method for general multiplication is a method to achieve multiplications   with low space complexity, i.e. as few temporary results as possible to be kept in memory. This is achieved by noting that the final digit is completely determined by multiplying the last digit of the multiplicands. This is held as a temporary result. To find the next to last digit, we need everything that influences this digit: The temporary result, the last digit of   times the next-to-last digit of  , as well as the next-to-last digit of   times the last digit of  . This calculation is performed, and we have a temporary result that is correct in the final two digits.

In general, for each position   in the final result, we sum for all  :

 

People can learn this algorithm and thus multiply four-digit numbers in their head – writing down only the final result. They would write it out starting with the rightmost digit and finishing with the leftmost.

Trachtenberg defined this algorithm with a kind of pairwise multiplication where two digits are multiplied by one digit, essentially only keeping the middle digit of the result. By performing the above algorithm with this pairwise multiplication, even fewer temporary results need to be held.

Example:  

To find the first (rightmost) digit of the answer, start at the first digit of the multiplicand

The units digit of   is  
The first digit of the answer is  . The tens digit   is ignored.
 
Pointers for the first digit

To find the second digit of the answer, start at the second digit of the multiplicand:

The units digit of   plus the tens digit of   plus
The units digit of  .
 .
The second digit of the answer is   and carry   to the third digit.
 
Pointers for the second digit

To find the third digit of the answer, start at the third digit of the multiplicand:

The units digit of   plus the tens digit of   plus
The units digit of   plus the tens digit of   plus
The units digit of  
 
The third digit of the answer is   and carry   to the next digit.
 
Pointers for the third digit

To find the fourth digit of the answer, start at the fourth digit of the multiplicand:

The units digit of   plus the tens digit of   plus
The units digit of   plus the tens digit of   plus
The units digit of   plus the tens digit of  .
  carried from the third digit.
The fourth digit of the answer is   and carry   to the next digit.

Continue with the same method to obtain the remaining digits.

 
2 Finger method

Trachtenberg called this the 2 Finger Method. The calculations for finding the fourth digit from the example above are illustrated at right. The arrow from the nine will always point to the digit of the multiplicand directly above the digit of the answer you wish to find, with the other arrows each pointing one digit to the right. Each arrow head points to a UT Pair, or Product Pair. The vertical arrow points to the product where we will get the Units digit, and the sloping arrow points to the product where we will get the Tens digits of the Product Pair. If an arrow points to a space with no digit there is no calculation for that arrow. As you solve for each digit you will move each of the arrows over the multiplicand one digit to the left until all of the arrows point to prefixed zeros.

 
Setting up for Division

Division in the Trachtenberg System is done much the same as in multiplication but with subtraction instead of addition. Splitting the dividend into smaller Partial Dividends, then dividing this Partial Dividend by only the left-most digit of the divisor will provide the answer one digit at a time. As you solve each digit of the answer you then subtract Product Pairs (UT pairs) and also NT pairs (Number-Tens) from the Partial Dividend to find the next Partial Dividend. The Product Pairs are found between the digits of the answer so far and the divisor. If a subtraction results in a negative number you have to back up one digit and reduce that digit of the answer by one. With enough practice this method can be done in your head.

General addition edit

A method of adding columns of numbers and accurately checking the result without repeating the first operation. An intermediate sum, in the form of two rows of digits, is produced. The answer is obtained by taking the sum of the intermediate results with an L-shaped algorithm. As a final step, the checking method that is advocated both removes the risk of repeating any original errors and identifies the precise column in which an error occurs all at once. It is based on check (or digit) sums, such as the nines-remainder method.

For the procedure to be effective, the different operations used in each stage must be kept distinct, otherwise there is a risk of interference.

Other multiplication algorithms edit

When performing any of these multiplication algorithms the following "steps" should be applied.

The answer must be found one digit at a time starting at the least significant digit and moving left. The last calculation is on the leading zero of the multiplicand.

Each digit has a neighbor, i.e., the digit on its right. The rightmost digit's neighbor is the trailing zero.

The 'halve' operation has a particular meaning to the Trachtenberg system. It is intended to mean "half the digit, rounded down" but for speed reasons people following the Trachtenberg system are encouraged to make this halving process instantaneous. So instead of thinking "half of seven is three and a half, so three" it's suggested that one thinks "seven, three". This speeds up calculation considerably. In this same way the tables for subtracting digits from 10 or 9 are to be memorized.

And whenever the rule calls for adding half of the neighbor, always add 5 if the current digit is odd. This makes up for dropping 0.5 in the next digit's calculation.

Numbers and digits (base 10) edit

Digits and numbers are two different notions. The number T consists of n digits cn ... c1.

 

Multiplying by 2 edit

Proof

 

Rule:

  1. Multiply each digit by 2 (with carrying).

Example: 8624 × 2

Working from left to right:

8+8=16,
6+6=12 (carry the 1),
2+2=4
4+4=8;
8624 × 2 = 17248

Example: 76892 × 2

Working from left to right:

7+7=14
6+6=12
8+8=16
9+9=18
2+2=4;
76892 × 2 =153784

Multiplying by 3 edit

Proof

 

Rule:

  1. Subtract the rightmost digit from 10.
  2. Subtract the remaining digits from 9.
  3. Double the result.
  4. Add half of the neighbor to the right, plus 5 if the digit is odd.
  5. For the leading zero, subtract 2 from half of the neighbor.

Example: 492 × 3 = 1476

Working from right to left:

(10 − 2) × 2 + Half of 0 (0) = 16. Write 6, carry 1.
(9 − 9) × 2 + Half of 2 (1) + 5 (since 9 is odd) + 1 (carried) = 7. Write 7.
(9 − 4) × 2 + Half of 9 (4) = 14. Write 4, carry 1.
Half of 4 (2) − 2 + 1 (carried) = 1. Write 1.

Multiplying by 4 edit

Proof

 

Rule:

  1. Subtract the right-most digit from 10.
  2. Subtract the remaining digits from 9.
  3. Add half of the neighbor, plus 5 if the digit is odd.
  4. For the leading 0, subtract 1 from half of the neighbor.

Example: 346 × 4 = 1384

Working from right to left:

(10 − 6) + Half of 0 (0) = 4. Write 4.
(9 − 4) + Half of 6 (3) = 8. Write 8.
(9 − 3) + Half of 4 (2) + 5 (since 3 is odd) = 13. Write 3, carry 1.
Half of 3 (1) − 1 + 1 (carried) = 1. Write 1.

Multiplying by 5 edit

Proof

 

Rule:

  1. Take half of the neighbor, then, if the current digit is odd, add 5.

Example: 42×5=210

Half of 2's neighbor, the trailing zero, is 0.
Half of 4's neighbor is 1.
Half of the leading zero's neighbor is 2.
43×5 = 215
Half of 3's neighbor is 0, plus 5 because 3 is odd, is 5.
Half of 4's neighbor is 1.
Half of the leading zero's neighbor is 2.
93×5=465
Half of 3's neighbor is 0, plus 5 because 3 is odd, is 5.
Half of 9's neighbor is 1, plus 5 because 9 is odd, is 6.
Half of the leading zero's neighbor is 4.

Multiplying by 6 edit

Proof

 

Rule:

  1. Add half of the neighbor to each digit. If the current digit is odd, add 5.

Example: 357 × 6 = 2142

Working right to left:

7 has no neighbor, add 5 (since 7 is odd) = 12. Write 2, carry the 1.
5 + half of 7 (3) + 5 (since the starting digit 5 is odd) + 1 (carried) = 14. Write 4, carry the 1.
3 + half of 5 (2) + 5 (since 3 is odd) + 1 (carried) = 11. Write 1, carry 1.
0 + half of 3 (1) + 1 (carried) = 2. Write 2.

Multiplying by 7 edit

Proof

 

Rule:

  1. Double each digit.
  2. Add half of its neighbor to the right (dropping decimals, if any). The neighbor of the units position is 0.
  3. If the base-digit is even add 0 otherwise add 5.
  4. Add in any carryover from the previous step.

Example: 693 × 7 = 4,851

Working from right to left:

(3×2) + 0 + 5 + 0 = 11 = carryover 1, result 1.
(9×2) + 1 + 5 + 1 = 25 = carryover 2, result 5.
(6×2) + 4 + 0 + 2 = 18 = carryover 1, result 8.
(0×2) + 3 + 0 + 1 = 4 = result 4.

Multiplying by 8 edit

Proof

 

Rule:

  1. Subtract right-most digit from 10.
    1. Subtract the remaining digits from 9.
  2. Double the result.
  3. Add the neighbor.
  4. For the leading zero, subtract 2 from the neighbor.

Example: 456 × 8 = 3648

Working from right to left:

(10 − 6) × 2 + 0 = 8. Write 8.
(9 − 5) × 2 + 6 = 14, Write 4, carry 1.
(9 − 4) × 2 + 5 + 1 (carried) = 16. Write 6, carry 1.
4 − 2 + 1 (carried) = 3. Write 3.

Multiplying by 9 edit

Proof

 

Rule:

  1. Subtract the right-most digit from 10.
    1. Subtract the remaining digits from 9.
  2. Add the neighbor to the sum
  3. For the leading zero, subtract 1 from the neighbor.

For rules 9, 8, 4, and 3 only the first digit is subtracted from 10. After that each digit is subtracted from nine instead.

Example: 2,130 × 9 = 19,170

Working from right to left:

(10 − 0) + 0 = 10. Write 0, carry 1.
(9 − 3) + 0 + 1 (carried) = 7. Write 7.
(9 − 1) + 3 = 11. Write 1, carry 1.
(9 − 2) + 1 + 1 (carried) = 9. Write 9.
2 − 1 = 1. Write 1.

Multiplying by 10 edit

Add 0 (zero) as the rightmost digit.

Proof

 

Multiplying by 11 edit

Proof

 

Rule:

  1. Add the digit to its neighbor. (By "neighbor" we mean the digit on the right.)

Example:  

(0 + 3) (3 + 4) (4 + 2) (2 + 5) (5 + 0)
3 7 6 7 5

To illustrate:

11=10+1

Thus,

 
 

Multiplying by 12 edit

Proof

 

Rule: to multiply by 12:
Starting from the rightmost digit, double each digit and add the neighbor. (The "neighbor" is the digit on the right.)

If the answer is greater than a single digit, simply carry over the extra digit (which will be a 1 or 2) to the next operation. The remaining digit is one digit of the final result.

Example:  

Determine neighbors in the multiplicand 0316:

  • digit 6 has no right neighbor
  • digit 1 has neighbor 6
  • digit 3 has neighbor 1
  • digit 0 (the prefixed zero) has neighbor 3
 

Multiplying by 13 edit

Proof

 

Publications edit

  • Rushan Ziatdinov, Sajid Musa. Rapid mental computation system as a tool for algorithmic thinking of elementary school students development. European Researcher 25(7): 1105–1110, 2012 [1].
  • The Trachtenberg Speed System of Basic Mathematics by Jakow Trachtenberg, A. Cutler (Translator), R. McShane (Translator), was published by Doubleday and Company, Inc. Garden City, New York in 1960.[1]

The book contains specific algebraic explanations for each of the above operations.

Most of the information in this article is from the original book.

The algorithms/operations for multiplication, etc., can be expressed in other more compact ways that the book does not specify, despite the chapter on algebraic description.[a]

In popular culture edit

The 2017 American film Gifted revolves around a child prodigy who at the age of 7 impresses her teacher by doing calculations in her head using the Trachtenberg system.[2]

Other systems edit

There are many other methods of calculation in mental mathematics. The list below shows a few other methods of calculating, though they may not be entirely mental.

Notes edit

  1. ^ All of this information is from an original book published and printed in 1960. The original book has seven full Chapters and is 270 pages long. The chapter titles are as follows. The numerous sub-categories in each chapter are not listed. The Trachtenberg speed system of basic mathematics
    • Chapter 1 Tables or no tables
    • Chapter 2 Rapid multiplication by the direct method
    • Chapter 3 Speed multiplication-"two-finger" method
    • Chapter 4 Addition and the right answer
    • Chapter 5 Division – Speed and accuracy
    • Chapter 6 Squares and square roots
    • Chapter 7 Algebraic description of the method
    Quotes:
    • "A revolutionary new method for high-speed multiplication, division, addition, subtraction and square root." (1960)
    • "The best selling method for high-speed multiplication, division, addition, subtraction and square root – without a calculator." (Reprinted 2009)
    • Multiplication is done without multiplication tables
    • "Can you multiply 5132437201 times 4522736502785 in seventy seconds?" "One young boy (grammar school-no calculator) did--successfully--by using The Trachtenberg Speed System of Basic Mathematics"
    • Jakow Trachtenberg (its founder) escaped from Hitler's Germany from an active institution toward the close of WWII. Professor Trachtenberg fled to Germany when the czarist regime was overthrown in his homeland, Russia, and lived there peacefully until his mid-thirties when his anti-Hitler attitudes forced him to flee again. He was a fugitive and when captured spent a total of seven years in various concentration camps. It was during these years that Professor Trachtenberg devised the system of speed mathematics. Most of his work was done without pen or paper. Therefore most of the techniques can be performed mentally.

References edit

  1. ^ Trachtenberg, Jakow (1960). Cutler, Ann (ed.). The Trachtenberg Speed System of Basic Mathematics. Translated by A. Cutler, R. McShane. Doubleday and Company, Inc. p. 270. 1962 edition: ISBN 9780285629165.
  2. ^ @GiftedtheMovie (March 9, 2017). "Hobbies include playing with legos and learning the Trachtenberg system 👷‍♀️📚✏️ @McKennaGraceful is Mary // #GiftedMovie" (Tweet) – via Twitter.

Further reading edit

  • Trachtenberg, J. (1960). The Trachtenberg Speed System of Basic Mathematics. Doubleday and Company, Inc., Garden City, NY, USA.
  • Катлер Э., Мак-Шейн Р.Система быстрого счёта по Трахтенбергу, 1967 (in Russian).
  • Rushan Ziatdinov, Sajid Musa. "Rapid Mental Computation System as a Tool for Algorithmic Thinking of Elementary School Students Development", European Researcher 25(7): 1105–1110, 2012.

External links edit

  • Chandrashekhar, Kiran. at the Wayback Machine (archived 30 May 2018)
  • Gifted (2017 film), This film is more about the Trachtenberg system, with Mckenna Grace, a young artist who has learned this technique, playing the lead role.

trachtenberg, system, system, rapid, mental, calculation, system, consists, number, readily, memorized, operations, that, allow, perform, arithmetic, computations, very, quickly, developed, russian, engineer, jakow, trachtenberg, order, keep, mind, occupied, w. The Trachtenberg system is a system of rapid mental calculation The system consists of a number of readily memorized operations that allow one to perform arithmetic computations very quickly It was developed by the Russian engineer Jakow Trachtenberg in order to keep his mind occupied while being in a Nazi concentration camp The rest of this article presents some methods devised by Trachtenberg Some of the algorithms Trachtenberg developed are ones for general multiplication division and addition Also the Trachtenberg system includes some specialised methods for multiplying small numbers between 5 and 13 but shown here is 2 12 The section on addition demonstrates an effective method of checking calculations that can also be applied to multiplication Contents 1 General multiplication 2 General addition 3 Other multiplication algorithms 3 1 Numbers and digits base 10 3 2 Multiplying by 2 3 3 Multiplying by 3 3 4 Multiplying by 4 3 5 Multiplying by 5 3 6 Multiplying by 6 3 7 Multiplying by 7 3 8 Multiplying by 8 3 9 Multiplying by 9 3 10 Multiplying by 10 3 11 Multiplying by 11 3 12 Multiplying by 12 3 13 Multiplying by 13 4 Publications 5 In popular culture 6 Other systems 7 Notes 8 References 9 Further reading 10 External linksGeneral multiplication editThe method for general multiplication is a method to achieve multiplications a b displaystyle a times b nbsp with low space complexity i e as few temporary results as possible to be kept in memory This is achieved by noting that the final digit is completely determined by multiplying the last digit of the multiplicands This is held as a temporary result To find the next to last digit we need everything that influences this digit The temporary result the last digit of a displaystyle a nbsp times the next to last digit of b displaystyle b nbsp as well as the next to last digit of a displaystyle a nbsp times the last digit of b displaystyle b nbsp This calculation is performed and we have a temporary result that is correct in the final two digits In general for each position n displaystyle n nbsp in the final result we sum for all i displaystyle i nbsp a digit at i b digit at n i displaystyle a text digit at i text times b text digit at n i text nbsp People can learn this algorithm and thus multiply four digit numbers in their head writing down only the final result They would write it out starting with the rightmost digit and finishing with the leftmost Trachtenberg defined this algorithm with a kind of pairwise multiplication where two digits are multiplied by one digit essentially only keeping the middle digit of the result By performing the above algorithm with this pairwise multiplication even fewer temporary results need to be held Example 123456 789 displaystyle 123456 times 789 nbsp To find the first rightmost digit of the answer start at the first digit of the multiplicand The units digit of 9 6 displaystyle 9 times 6 nbsp is 4 displaystyle 4 nbsp The first digit of the answer is 4 displaystyle 4 nbsp The tens digit 5 displaystyle 5 nbsp is ignored nbsp Pointers for the first digit To find the second digit of the answer start at the second digit of the multiplicand The units digit of 9 5 displaystyle 9 times 5 nbsp plus the tens digit of 9 6 displaystyle 9 times 6 nbsp plus The units digit of 8 6 displaystyle 8 times 6 nbsp 5 5 8 18 displaystyle 5 5 8 18 nbsp The second digit of the answer is 8 displaystyle 8 nbsp and carry 1 displaystyle 1 nbsp to the third digit nbsp Pointers for the second digit To find the third digit of the answer start at the third digit of the multiplicand The units digit of 9 4 displaystyle 9 times 4 nbsp plus the tens digit of 9 5 displaystyle 9 times 5 nbsp plus The units digit of 8 5 displaystyle 8 times 5 nbsp plus the tens digit of 8 6 displaystyle 8 times 6 nbsp plus The units digit of 7 6 displaystyle 7 times 6 nbsp 1 6 4 0 4 2 17 displaystyle 1 6 4 0 4 2 17 nbsp The third digit of the answer is 7 displaystyle 7 nbsp and carry 1 displaystyle 1 nbsp to the next digit nbsp Pointers for the third digit To find the fourth digit of the answer start at the fourth digit of the multiplicand The units digit of 9 3 displaystyle 9 times 3 nbsp plus the tens digit of 9 4 displaystyle 9 times 4 nbsp plus The units digit of 8 4 displaystyle 8 times 4 nbsp plus the tens digit of 8 5 displaystyle 8 times 5 nbsp plus The units digit of 7 5 displaystyle 7 times 5 nbsp plus the tens digit of 7 6 displaystyle 7 times 6 nbsp 1 7 3 2 4 5 4 26 displaystyle 1 7 3 2 4 5 4 26 nbsp carried from the third digit The fourth digit of the answer is 6 displaystyle 6 nbsp and carry 2 displaystyle 2 nbsp to the next digit Continue with the same method to obtain the remaining digits nbsp 2 Finger method Trachtenberg called this the 2 Finger Method The calculations for finding the fourth digit from the example above are illustrated at right The arrow from the nine will always point to the digit of the multiplicand directly above the digit of the answer you wish to find with the other arrows each pointing one digit to the right Each arrow head points to a UT Pair or Product Pair The vertical arrow points to the product where we will get the Units digit and the sloping arrow points to the product where we will get the Tens digits of the Product Pair If an arrow points to a space with no digit there is no calculation for that arrow As you solve for each digit you will move each of the arrows over the multiplicand one digit to the left until all of the arrows point to prefixed zeros nbsp Setting up for Division Division in the Trachtenberg System is done much the same as in multiplication but with subtraction instead of addition Splitting the dividend into smaller Partial Dividends then dividing this Partial Dividend by only the left most digit of the divisor will provide the answer one digit at a time As you solve each digit of the answer you then subtract Product Pairs UT pairs and also NT pairs Number Tens from the Partial Dividend to find the next Partial Dividend The Product Pairs are found between the digits of the answer so far and the divisor If a subtraction results in a negative number you have to back up one digit and reduce that digit of the answer by one With enough practice this method can be done in your head General addition editA method of adding columns of numbers and accurately checking the result without repeating the first operation An intermediate sum in the form of two rows of digits is produced The answer is obtained by taking the sum of the intermediate results with an L shaped algorithm As a final step the checking method that is advocated both removes the risk of repeating any original errors and identifies the precise column in which an error occurs all at once It is based on check or digit sums such as the nines remainder method For the procedure to be effective the different operations used in each stage must be kept distinct otherwise there is a risk of interference Other multiplication algorithms editWhen performing any of these multiplication algorithms the following steps should be applied The answer must be found one digit at a time starting at the least significant digit and moving left The last calculation is on the leading zero of the multiplicand Each digit has a neighbor i e the digit on its right The rightmost digit s neighbor is the trailing zero The halve operation has a particular meaning to the Trachtenberg system It is intended to mean half the digit rounded down but for speed reasons people following the Trachtenberg system are encouraged to make this halving process instantaneous So instead of thinking half of seven is three and a half so three it s suggested that one thinks seven three This speeds up calculation considerably In this same way the tables for subtracting digits from 10 or 9 are to be memorized And whenever the rule calls for adding half of the neighbor always add 5 if the current digit is odd This makes up for dropping 0 5 in the next digit s calculation Numbers and digits base 10 edit Digits and numbers are two different notions The number T consists of n digits cn c1 T 10 n 1 c n 10 0 c 1 displaystyle T 10 n 1 c n 10 0 c 1 nbsp Multiplying by 2 edit Proof R T 2 R 2 10 n 1 c n 10 0 c 1 R 10 n 1 2 c n 10 0 2 c 1 Q E D textstyle begin aligned R amp T 2 Leftrightarrow R amp 2 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 n 1 2 c n ldots 10 0 2 c 1 amp QED end aligned nbsp Rule Multiply each digit by 2 with carrying Example 8624 2Working from left to right 8 8 16 6 6 12 carry the 1 2 2 4 4 4 8 8624 2 17248 Example 76892 2Working from left to right 7 7 14 6 6 12 8 8 16 9 9 18 2 2 4 76892 2 153784 Multiplying by 3 edit Proof R T 3 R 3 10 n 1 c n 10 0 c 1 R 10 2 2 10 n 1 c n 10 n 2 c n 1 10 0 c 1 R 10 n c n 2 2 10 n 2 10 n 1 c n 1 2 2 10 n 1 2 10 1 c 1 2 2 10 1 2 2 10 n 1 c n 10 n 2 c n 1 10 1 c 2 10 0 c 1 R 10 n c n 2 2 10 n 1 c n 1 2 20 2 2 c n 10 n 2 c n 2 2 20 2 2 c n 1 10 1 c 1 2 20 2 2 c 2 10 0 20 2 c 1 R 10 n c n 2 2 10 n 1 2 9 c n c n 1 2 10 n 2 2 9 c n 1 c n 2 2 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 ℜ ℵ a a div b b a mod b R 10 n c n div 2 2 c n mod 2 2 2 10 n 1 2 9 c n c n 1 2 10 n 2 2 9 c n 1 c n 2 2 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 R 10 n c n div 2 2 10 n 1 10 c n mod 2 2 2 9 c n c n 1 2 10 n 2 2 9 c n 1 c n 2 2 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 R 10 n c n div 2 2 10 n 1 2 9 c n c n 1 2 c n mod 2 5 10 n 2 2 9 c n 1 c n 2 2 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 R 10 n c n div 2 2 10 n 1 2 9 c n c n 1 div 2 if c n mod 2 lt gt 0 5 0 10 1 2 9 c 2 c 1 div 2 if c 2 mod 2 lt gt 0 5 0 10 0 2 10 c 1 if c 1 mod 2 lt gt 0 5 0 Q E D displaystyle begin aligned R amp T 3 Leftrightarrow R amp 3 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 2 2 10 n 1 c n 10 n 2 c n 1 ldots 10 0 c 1 Leftrightarrow R amp 10 n c n 2 2 10 n 2 10 n 1 c n 1 2 2 10 n 1 2 ldots 10 1 c 1 2 2 10 1 2 amp 2 10 n 1 c n 10 n 2 c n 1 ldots 10 1 c 2 10 0 c 1 Leftrightarrow R amp 10 n c n 2 2 10 n 1 c n 1 2 20 2 2 c n 10 n 2 c n 2 2 20 2 2 c n 1 amp ldots 10 1 c 1 2 20 2 2 c 2 10 0 20 2 c 1 Leftrightarrow R amp 10 n c n 2 2 10 n 1 2 9 c n c n 1 2 10 n 2 2 9 c n 1 c n 2 2 amp ldots 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 Leftrightarrow vdots Re to aleph text a a text div b b a bmod b R amp 10 n c n text div 2 2 c n bmod 2 2 2 10 n 1 2 9 c n c n 1 2 10 n 2 2 9 c n 1 c n 2 2 amp ldots 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 Leftrightarrow R amp 10 n c n text div 2 2 10 n 1 10 c n bmod 2 2 2 9 c n c n 1 2 10 n 2 2 9 c n 1 c n 2 2 amp ldots 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 Leftrightarrow R amp 10 n c n text div 2 2 10 n 1 2 9 c n c n 1 2 c n bmod 2 5 10 n 2 2 9 c n 1 c n 2 2 amp ldots 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 Leftrightarrow R amp 10 n c n text div 2 2 10 n 1 2 9 c n c n 1 text div 2 text if c n bmod 2 lt gt 0 5 0 amp ldots 10 1 2 9 c 2 c 1 text div 2 text if c 2 bmod 2 lt gt 0 5 0 amp 10 0 2 10 c 1 text if c 1 bmod 2 lt gt 0 5 0 amp QED end aligned nbsp Rule Subtract the rightmost digit from 10 Subtract the remaining digits from 9 Double the result Add half of the neighbor to the right plus 5 if the digit is odd For the leading zero subtract 2 from half of the neighbor Example 492 3 1476Working from right to left 10 2 2 Half of 0 0 16 Write 6 carry 1 9 9 2 Half of 2 1 5 since 9 is odd 1 carried 7 Write 7 9 4 2 Half of 9 4 14 Write 4 carry 1 Half of 4 2 2 1 carried 1 Write 1 Multiplying by 4 edit Proof R T 4 R 4 10 n 1 c n 10 0 c 1 R 10 2 1 10 n 1 c n 10 n 2 c n 1 10 0 c 1 see proof of method 3 R 10 n c n div 2 1 10 n 1 9 c n c n 1 div 2 if c n mod 2 lt gt 0 5 0 10 1 9 c 2 c 1 div 2 if c 2 mod 2 lt gt 0 5 0 10 0 10 c 1 if c 1 mod 2 lt gt 0 5 0 Q E D displaystyle begin aligned R amp T 4 Leftrightarrow R amp 4 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 2 1 10 n 1 c n 10 n 2 c n 1 ldots 10 0 c 1 Leftrightarrow vdots mbox see proof of method 3 R amp 10 n c n text div 2 1 10 n 1 9 c n c n 1 text div 2 text if c n bmod 2 lt gt 0 5 0 amp ldots 10 1 9 c 2 c 1 text div 2 text if c 2 bmod 2 lt gt 0 5 0 amp 10 0 10 c 1 text if c 1 bmod 2 lt gt 0 5 0 amp QED end aligned nbsp Rule Subtract the right most digit from 10 Subtract the remaining digits from 9 Add half of the neighbor plus 5 if the digit is odd For the leading 0 subtract 1 from half of the neighbor Example 346 4 1384Working from right to left 10 6 Half of 0 0 4 Write 4 9 4 Half of 6 3 8 Write 8 9 3 Half of 4 2 5 since 3 is odd 13 Write 3 carry 1 Half of 3 1 1 1 carried 1 Write 1 Multiplying by 5 edit Proof R T 5 R 5 10 n 1 c n 10 0 c 1 R 10 2 10 n 1 c n 10 n 2 c n 1 10 0 c 1 R 10 n c n 2 10 n 1 c n 1 2 10 1 c 1 2 ℜ ℵ a a div b b a mod b R 10 n c n div 2 2 c n mod 2 2 10 n 1 c n 1 div 2 2 c n 1 mod 2 2 10 2 c 2 div 2 2 c 2 mod 2 2 10 1 c 1 div 2 2 c 1 mod 2 2 R 10 n c n div 2 c n mod 2 2 10 n 1 c n 1 div 2 c n 1 mod 2 2 10 2 c 2 div 2 c 2 mod 2 2 10 1 c 1 div 2 c 1 mod 2 2 R 10 n c n div 2 10 n 1 10 c n mod 2 2 10 n 1 c n 1 div 2 10 n 2 10 c n 1 mod 2 2 10 n 2 c n 2 div 2 10 2 c 2 div 2 10 1 10 c 2 mod 2 2 c 1 div 2 10 0 10 c 1 mod 2 2 R 10 n c n div 2 10 n 1 c n 1 div 2 10 n 1 c n mod 2 5 10 n 2 c n 2 div 2 10 n 2 c n 1 mod 2 5 10 2 c 2 div 2 10 2 c 3 mod 2 5 10 1 c 1 div 2 10 1 c 2 mod 2 5 10 0 c 1 mod 2 5 R 10 n c n div 2 10 n 1 c n 1 div 2 if c n mod 2 lt gt 0 5 0 10 n 2 c n 2 div 2 if c n 1 mod 2 lt gt 0 5 0 10 2 c 2 div 2 if c 3 mod 2 lt gt 0 5 0 10 1 c 1 div 2 if c 2 mod 2 lt gt 0 5 0 10 0 if c 1 mod 2 lt gt 0 5 0 Q E D displaystyle begin aligned R amp T 5 Leftrightarrow R amp 5 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 2 10 n 1 c n 10 n 2 c n 1 ldots 10 0 c 1 Leftrightarrow R amp 10 n c n 2 10 n 1 c n 1 2 ldots 10 1 c 1 2 Leftrightarrow vdots Re to aleph text a a text div b b a bmod b R amp 10 n c n text div 2 2 c n bmod 2 2 10 n 1 c n 1 text div 2 2 c n 1 bmod 2 2 amp ldots 10 2 c 2 text div 2 2 c 2 bmod 2 2 10 1 c 1 text div 2 2 c 1 bmod 2 2 Leftrightarrow R amp 10 n c n text div 2 c n bmod 2 2 10 n 1 c n 1 text div 2 c n 1 bmod 2 2 amp ldots 10 2 c 2 text div 2 c 2 bmod 2 2 10 1 c 1 text div 2 c 1 bmod 2 2 Leftrightarrow R amp 10 n c n text div 2 10 n 1 10 c n bmod 2 2 10 n 1 c n 1 text div 2 10 n 2 10 c n 1 bmod 2 2 10 n 2 c n 2 text div 2 amp ldots 10 2 c 2 text div 2 10 1 10 c 2 bmod 2 2 c 1 text div 2 10 0 10 c 1 bmod 2 2 Leftrightarrow R amp 10 n c n text div 2 10 n 1 c n 1 text div 2 10 n 1 c n bmod 2 5 10 n 2 c n 2 text div 2 10 n 2 c n 1 bmod 2 5 amp ldots 10 2 c 2 text div 2 10 2 c 3 bmod 2 5 10 1 c 1 text div 2 10 1 c 2 bmod 2 5 10 0 c 1 bmod 2 5 Leftrightarrow R amp 10 n c n text div 2 10 n 1 c n 1 text div 2 text if c n bmod 2 lt gt 0 5 0 10 n 2 c n 2 text div 2 text if c n 1 bmod 2 lt gt 0 5 0 amp ldots 10 2 c 2 text div 2 text if c 3 bmod 2 lt gt 0 5 0 10 1 c 1 text div 2 text if c 2 bmod 2 lt gt 0 5 0 10 0 text if c 1 bmod 2 lt gt 0 5 0 amp QED end aligned nbsp Rule Take half of the neighbor then if the current digit is odd add 5 Example 42 5 210 Half of 2 s neighbor the trailing zero is 0 Half of 4 s neighbor is 1 Half of the leading zero s neighbor is 2 43 5 215 Half of 3 s neighbor is 0 plus 5 because 3 is odd is 5 Half of 4 s neighbor is 1 Half of the leading zero s neighbor is 2 93 5 465 Half of 3 s neighbor is 0 plus 5 because 3 is odd is 5 Half of 9 s neighbor is 1 plus 5 because 9 is odd is 6 Half of the leading zero s neighbor is 4 Multiplying by 6 edit Proof R T 6 R 6 10 n 1 c n 10 0 c 1 R 10 2 1 10 n 1 c n 10 n 2 c n 1 10 0 c 1 R 10 n c n 2 1 10 n 1 c n 10 n 1 c n 1 2 1 10 n 2 c n 1 10 1 c 1 2 1 10 0 c 1 R 10 n c n 2 10 n 1 c n c n 1 2 10 1 c 1 2 c 1 ℜ ℵ a a div b b a mod b R 10 n c n div 2 2 c n mod 2 2 10 n 1 c n c n 1 2 10 1 c 1 2 c 1 R 10 n c n div 2 10 n 1 c n mod 2 5 10 n 1 c n 10 n 1 c n 1 div 2 2 c n 1 mod 2 2 10 1 c 1 2 c 1 R 10 n c n div 2 10 n 1 c n c n 1 div 2 if c n mod 2 lt gt 0 5 0 10 n 2 c n 1 mod 2 5 10 1 c 1 2 c 1 R 10 n c n div 2 10 n 1 c n c n 1 div 2 if c n mod 2 lt gt 0 5 0 10 n 2 c n 1 c n 2 div 2 if c n 1 mod 2 lt gt 0 5 0 10 0 c 1 if c 1 mod 2 lt gt 0 5 0 Q E D displaystyle begin aligned R amp T 6 Leftrightarrow R amp 6 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 2 1 10 n 1 c n 10 n 2 c n 1 ldots 10 0 c 1 Leftrightarrow R amp 10 n c n 2 1 10 n 1 c n 10 n 1 c n 1 2 1 10 n 2 c n 1 ldots 10 1 c 1 2 1 10 0 c 1 Leftrightarrow R amp 10 n c n 2 10 n 1 c n c n 1 2 ldots 10 1 c 1 2 c 1 Leftrightarrow vdots Re to aleph text a a text div b b a bmod b R amp 10 n c n text div 2 2 c n bmod 2 2 10 n 1 c n c n 1 2 ldots 10 1 c 1 2 c 1 Leftrightarrow R amp 10 n c n text div 2 10 n 1 c n bmod 2 5 10 n 1 c n 10 n 1 c n 1 text div 2 2 c n 1 bmod 2 2 ldots 10 1 c 1 2 c 1 Leftrightarrow R amp 10 n c n text div 2 10 n 1 c n c n 1 text div 2 text if c n bmod 2 lt gt 0 5 0 10 n 2 c n 1 bmod 2 5 ldots 10 1 c 1 2 c 1 Leftrightarrow R amp 10 n c n text div 2 10 n 1 c n c n 1 text div 2 text if c n bmod 2 lt gt 0 5 0 amp 10 n 2 c n 1 c n 2 text div 2 text if c n 1 bmod 2 lt gt 0 5 0 amp ldots 10 0 c 1 text if c 1 bmod 2 lt gt 0 5 0 amp QED end aligned nbsp Rule Add half of the neighbor to each digit If the current digit is odd add 5 Example 357 6 2142Working right to left 7 has no neighbor add 5 since 7 is odd 12 Write 2 carry the 1 5 half of 7 3 5 since the starting digit 5 is odd 1 carried 14 Write 4 carry the 1 3 half of 5 2 5 since 3 is odd 1 carried 11 Write 1 carry 1 0 half of 3 1 1 carried 2 Write 2 Multiplying by 7 edit Proof R T 7 R 7 10 n 1 c n 10 0 c 1 R 10 2 2 10 n 1 c n 10 0 c 1 see proof of method 6 R 10 n c n div 2 10 n 1 2 c n c n 1 div 2 if c n mod 2 lt gt 0 5 0 10 n 2 2 c n 1 c n 2 div 2 if c n 1 mod 2 lt gt 0 5 0 10 1 2 c 2 c 1 div 2 if c 2 mod 2 lt gt 0 5 0 2 c 1 if c 1 mod 2 lt gt 0 5 0 Q E D displaystyle begin aligned R amp T 7 Leftrightarrow R amp 7 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 2 2 10 n 1 c n ldots 10 0 c 1 Leftrightarrow vdots mbox see proof of method 6 R amp 10 n c n text div 2 10 n 1 2 c n c n 1 text div 2 text if c n bmod 2 lt gt 0 5 0 amp 10 n 2 2 c n 1 c n 2 text div 2 text if c n 1 bmod 2 lt gt 0 5 0 amp ldots 10 1 2 c 2 c 1 text div 2 text if c 2 bmod 2 lt gt 0 5 0 2 c 1 text if c 1 bmod 2 lt gt 0 5 0 amp QED end aligned nbsp Rule Double each digit Add half of its neighbor to the right dropping decimals if any The neighbor of the units position is 0 If the base digit is even add 0 otherwise add 5 Add in any carryover from the previous step Example 693 7 4 851Working from right to left 3 2 0 5 0 11 carryover 1 result 1 9 2 1 5 1 25 carryover 2 result 5 6 2 4 0 2 18 carryover 1 result 8 0 2 3 0 1 4 result 4 Multiplying by 8 edit Proof R T 8 R T 4 2 see proof of method 4 R 10 n 2 c n 2 1 10 n 1 2 9 c n c n 1 2 10 n 2 2 9 c n 1 c n 2 2 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 R 10 n c n 2 10 n 1 2 9 c n c n 1 10 2 2 9 c 3 c 2 10 1 2 9 c 2 c 1 2 10 c 1 Q E D displaystyle begin aligned R amp T 8 Leftrightarrow R amp T 4 2 Leftrightarrow vdots mbox see proof of method 4 R amp 10 n 2 c n 2 1 10 n 1 2 9 c n c n 1 2 10 n 2 2 9 c n 1 c n 2 2 amp ldots 10 1 2 9 c 2 c 1 2 10 0 2 10 c 1 Leftrightarrow R amp 10 n c n 2 10 n 1 2 9 c n c n 1 ldots 10 2 2 9 c 3 c 2 10 1 2 9 c 2 c 1 2 10 c 1 amp QED end aligned nbsp Rule Subtract right most digit from 10 Subtract the remaining digits from 9 Double the result Add the neighbor For the leading zero subtract 2 from the neighbor Example 456 8 3648Working from right to left 10 6 2 0 8 Write 8 9 5 2 6 14 Write 4 carry 1 9 4 2 5 1 carried 16 Write 6 carry 1 4 2 1 carried 3 Write 3 Multiplying by 9 edit Proof R T 9 R 10 1 T R 10 n c n 1 10 n 10 n 1 c n 1 1 10 n 1 10 1 c 1 1 10 1 10 n 1 c n 10 n 2 c n 1 10 1 c 2 10 0 c 1 see proof of method 4 R 10 n c n 1 10 n 1 9 c n c n 1 10 n 2 9 c n 1 c n 2 10 1 9 c 2 c 1 10 0 10 c 1 Q E D displaystyle begin aligned R amp T 9 Leftrightarrow R amp 10 1 T Leftrightarrow R amp 10 n c n 1 10 n 10 n 1 c n 1 1 10 n 1 ldots 10 1 c 1 1 10 1 amp 10 n 1 c n 10 n 2 c n 1 ldots 10 1 c 2 10 0 c 1 Leftrightarrow vdots mbox see proof of method 4 R amp 10 n c n 1 10 n 1 9 c n c n 1 10 n 2 9 c n 1 c n 2 ldots 10 1 9 c 2 c 1 10 0 10 c 1 amp QED end aligned nbsp Rule Subtract the right most digit from 10 Subtract the remaining digits from 9 Add the neighbor to the sum For the leading zero subtract 1 from the neighbor For rules 9 8 4 and 3 only the first digit is subtracted from 10 After that each digit is subtracted from nine instead Example 2 130 9 19 170Working from right to left 10 0 0 10 Write 0 carry 1 9 3 0 1 carried 7 Write 7 9 1 3 11 Write 1 carry 1 9 2 1 1 carried 9 Write 9 2 1 1 Write 1 Multiplying by 10 edit Add 0 zero as the rightmost digit Proof R T 10 R 10 10 n 1 c n 10 0 c 1 R 10 n c n 10 1 c 1 Q E D displaystyle begin aligned R amp T 10 Leftrightarrow R amp 10 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 n c n ldots 10 1 c 1 amp QED end aligned nbsp Multiplying by 11 edit Proof R T 11 R T 10 1 R 10 10 n 1 c n 10 0 c 1 10 n 1 c n 10 0 c 1 R 10 n c n 10 n 1 c n c n 1 10 1 c 2 c 1 c 1 Q E D displaystyle begin aligned R amp T 11 Leftrightarrow R amp T 10 1 R amp 10 10 n 1 c n ldots 10 0 c 1 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 n c n 10 n 1 c n c n 1 ldots 10 1 c 2 c 1 c 1 amp QED end aligned nbsp Rule Add the digit to its neighbor By neighbor we mean the digit on the right Example 3 425 11 37 675 displaystyle 3 425 times 11 37 675 nbsp 0 3 3 4 4 2 2 5 5 0 3 7 6 7 5 To illustrate 11 10 1 Thus 3425 11 3425 10 1 displaystyle 3425 times 11 3425 times 10 1 nbsp 37675 34250 3425 displaystyle rightarrow 37675 34250 3425 nbsp Multiplying by 12 edit Proof R T 12 R T 10 2 R 10 10 n 1 c n 10 0 c 1 2 10 n 1 c n 10 0 c 1 R 10 n c n 10 n 1 2 c n c n 1 10 1 2 c 2 c 1 2 c 1 Q E D displaystyle begin aligned R amp T 12 Leftrightarrow R amp T 10 2 R amp 10 10 n 1 c n ldots 10 0 c 1 2 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 n c n 10 n 1 2 c n c n 1 ldots 10 1 2 c 2 c 1 2 c 1 amp QED end aligned nbsp Rule to multiply by 12 Starting from the rightmost digit double each digit and add the neighbor The neighbor is the digit on the right If the answer is greater than a single digit simply carry over the extra digit which will be a 1 or 2 to the next operation The remaining digit is one digit of the final result Example 316 12 displaystyle 316 times 12 nbsp Determine neighbors in the multiplicand 0316 digit 6 has no right neighbor digit 1 has neighbor 6 digit 3 has neighbor 1 digit 0 the prefixed zero has neighbor 3 6 2 12 2 carry 1 1 2 6 1 9 3 2 1 7 0 2 3 3 0 2 0 0 316 12 3 792 displaystyle begin aligned 6 times 2 amp 12 text 2 carry 1 1 times 2 6 1 amp 9 3 times 2 1 amp 7 0 times 2 3 amp 3 0 times 2 0 amp 0 10pt 316 times 12 amp 3 792 end aligned nbsp Multiplying by 13 edit Proof R T 13 R T 10 3 R 10 10 n 1 c n 10 0 c 1 3 10 n 1 c n 10 0 c 1 R 10 n c n 10 n 1 3 c n c n 1 10 1 3 c 2 c 1 3 c 1 Q E D displaystyle begin aligned R amp T 13 Leftrightarrow R amp T 10 3 R amp 10 10 n 1 c n ldots 10 0 c 1 3 10 n 1 c n ldots 10 0 c 1 Leftrightarrow R amp 10 n c n 10 n 1 3 c n c n 1 ldots 10 1 3 c 2 c 1 3 c 1 amp QED end aligned nbsp Publications editRushan Ziatdinov Sajid Musa Rapid mental computation system as a tool for algorithmic thinking of elementary school students development European Researcher 25 7 1105 1110 2012 1 The Trachtenberg Speed System of Basic Mathematics by Jakow Trachtenberg A Cutler Translator R McShane Translator was published by Doubleday and Company Inc Garden City New York in 1960 1 The book contains specific algebraic explanations for each of the above operations Most of the information in this article is from the original book The algorithms operations for multiplication etc can be expressed in other more compact ways that the book does not specify despite the chapter on algebraic description a In popular culture editThe 2017 American film Gifted revolves around a child prodigy who at the age of 7 impresses her teacher by doing calculations in her head using the Trachtenberg system 2 Other systems editThere are many other methods of calculation in mental mathematics The list below shows a few other methods of calculating though they may not be entirely mental Bharati Krishna Tirtha s book Vedic Mathematics Mental abacus As students become used to manipulating the abacus with their fingers they are typically asked to do calculation by visualizing abacus in their head Almost all proficient abacus users are adept at doing arithmetic mentally citation needed ChisanbopNotes edit All of this information is from an original book published and printed in 1960 The original book has seven full Chapters and is 270 pages long The chapter titles are as follows The numerous sub categories in each chapter are not listed The Trachtenberg speed system of basic mathematics Chapter 1 Tables or no tables Chapter 2 Rapid multiplication by the direct method Chapter 3 Speed multiplication two finger method Chapter 4 Addition and the right answer Chapter 5 Division Speed and accuracy Chapter 6 Squares and square roots Chapter 7 Algebraic description of the method Quotes A revolutionary new method for high speed multiplication division addition subtraction and square root 1960 The best selling method for high speed multiplication division addition subtraction and square root without a calculator Reprinted 2009 Multiplication is done without multiplication tables Can you multiply 5132437201 times 4522736502785 in seventy seconds One young boy grammar school no calculator did successfully by using The Trachtenberg Speed System of Basic Mathematics Jakow Trachtenberg its founder escaped from Hitler s Germany from an active institution toward the close of WWII Professor Trachtenberg fled to Germany when the czarist regime was overthrown in his homeland Russia and lived there peacefully until his mid thirties when his anti Hitler attitudes forced him to flee again He was a fugitive and when captured spent a total of seven years in various concentration camps It was during these years that Professor Trachtenberg devised the system of speed mathematics Most of his work was done without pen or paper Therefore most of the techniques can be performed mentally References edit Trachtenberg Jakow 1960 Cutler Ann ed The Trachtenberg Speed System of Basic Mathematics Translated by A Cutler R McShane Doubleday and Company Inc p 270 1962 edition ISBN 9780285629165 GiftedtheMovie March 9 2017 Hobbies include playing with legos and learning the Trachtenberg system McKennaGraceful is Mary GiftedMovie Tweet via Twitter Further reading editTrachtenberg J 1960 The Trachtenberg Speed System of Basic Mathematics Doubleday and Company Inc Garden City NY USA Katler E Mak Shejn R Sistema bystrogo schyota po Trahtenbergu 1967 in Russian Rushan Ziatdinov Sajid Musa Rapid Mental Computation System as a Tool for Algorithmic Thinking of Elementary School Students Development European Researcher 25 7 1105 1110 2012 External links editThis section s use of external links may not follow Wikipedia s policies or guidelines Please improve this article by removing excessive or inappropriate external links and converting useful links where appropriate into footnote references July 2022 Learn how and when to remove this message Chandrashekhar Kiran Learn All about Mathematical Shortcuts SapnaEdu in at the Wayback Machine archived 30 May 2018 Gifted 2017 film This film is more about the Trachtenberg system with Mckenna Grace a young artist who has learned this technique playing the lead role Vedic Mathematics Academy Retrieved from https en wikipedia org w index php title Trachtenberg system amp oldid 1217557748, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.