Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Science News

Math Whiz Breaks Calculation Record 391

keyshawn632 writes "The Associated Press reports that Gert Mittring, 38, needed only 11.8 seconds to calculate the 13th root of a 100-digit number in his head at a math museum in Giessen, a small town, located in western Germany. It's worth noting though that his feat will not be recognized by The Guinness Book Of World Records because of the difficulty of standardizing such mathematical challenges."
This discussion has been archived. No new comments can be posted.

Math Whiz Breaks Calculation Record

Comments Filter:
  • by Anonymous Coward on Wednesday November 24, 2004 @09:40PM (#10914900)
    no no no, it's because it's http://apnews.myway.com//article/20041124/D86IDI10 0.html [myway.com] Gert Mittring, 38. That is why it is a record ;)
  • Re:That's easy. (Score:5, Informative)

    by wildsurf ( 535389 ) on Wednesday November 24, 2004 @10:20PM (#10915141) Homepage
    Just memorize the 13th root of every 100-digit number in existence. Sheesh.

    Let's just think about this for a minute.

    100-digit numbers will fall between 10^99 and 10^100. Thirteenth-roots of such numbers will lie between 10^(99 / 13) and 10^(100 / 13), or in the range [41246264 .. 49238826]. That's about 8 million possibilities, and the distribution is far from linear.

    But it's linear enough that the first nine digits of the 100-digit number yield a unique possibility for a root. And the last digit of the root will be the same as the last digit of the 100-digit number, because (N mod 10) always equals (N^13 mod 10). So the problem can be tackled from both ends, with the middle digits of the root being the hardest.

    Of course, if the audience members are clued in, they can still beat the mental calculator hands down. Type the first nine digits, take the thirteenth root, and start reading off the digits; round up slightly to make the eighth significant digit match the final digit of the 100-digit number. Done.

    A college professor of mine taught us how to square 3-digit numbers in our head in seconds using tricks like this; he was able to multiply arbitrary 5-digit numbers in his head, and often performed this onstage. And for the curious, yes, I do actually have a life outside slashdot. :-)
  • by Magickcat ( 768797 ) on Wednesday November 24, 2004 @10:24PM (#10915164)
    A photo of Gert Mittring can be found here. [recordholders.org]

    Please note his rather tasteful attire.

    The page also has information on the actual rules on calculating the 13th root of a 100 digit number.
  • Re:Bounds (Score:2, Informative)

    by Atealtha ( 752341 ) on Wednesday November 24, 2004 @10:24PM (#10915170)
    maybe he just memorized 13th root of all 3 digit numbers? The range is now 899, sort of.

    Someone already mentioned his memorization skills. I think this was the trick. Someone memorized tons and tons of digits of pi. So when someone starts reading a random section of digits he can recite the next hundred or so. Doesn't mean he calculates pi every time.
  • by Highpriest ( 758004 ) on Wednesday November 24, 2004 @10:31PM (#10915207)
    This is a 100 digit number: 19283740592837485932081293847560293618273458192031 17346932745397452409864082460814617651293753975329 Now. Get the 13th root of it..... In 11 seconds...
  • Re:What? (Score:4, Informative)

    by jsprat ( 442568 ) on Wednesday November 24, 2004 @10:36PM (#10915236)
    Here [recordholders.org] is a list of two other records he holds. It hasn't been updated for the one mentioned in the myway article.

    Notice it took him 44.7 seconds to calculate the square root of a six digit number, but only 11.8 seconds to calculate the 13th root of a 100 digit number!!!!

    He also calculated the 23rd root of a 200 digit number in 40.83 seconds.
  • Simpler than that (Score:5, Informative)

    by Clueless Moron ( 548336 ) on Wednesday November 24, 2004 @10:44PM (#10915275)
    The root is not allowed to end in a zero, because that would have the result end in thirteen zeroes which makes it, um, so much simpler I guess.

    That leaves you with a mere... 7,193,306 possible roots to memorize.

    I don't know how they do it, but I am familiar with modulo-10 math "tricks". For example, did you know that if you add up the individial digits in any number and the result is divisible by 3, then the original number is divisible by 3? For example "621". 6+2+1=9, and so 621 is divisible by 3 (Try it: 621/3=207).

    13th root has similar magic: the 13th root of any number will have the same last digit as the number you are trying to take the root of. For example, the 13th root of 2235879388560037062539773567 is 127. Notice that they both end in 7. An integer and its 13th power always ends in the same digit. Try it.

    The point is, that little trick itself reduces the problem space by a factor of 10 right there. So I'm assuming they've studied and learned further tricks like these. Ask them for the 11th root of the same number and they'll probably come up completely blank.

  • by Spoing ( 152917 ) on Wednesday November 24, 2004 @10:48PM (#10915300) Homepage
    This is an amazing book. It will make you a math wiz even if you are an ace or suck at math. Just put in the time. It will even give you some appreciation for how numbers 'feel'.

    Cheap new. Even cheaper used (check Amazon).

    The book is thin and has a white cover with blue and red lettering.

  • by Smurf ( 7981 ) on Wednesday November 24, 2004 @10:51PM (#10915312)
    I practiced and could calculate 43rd root of a 100 digit number 1 to 3 seconds.

    Well, I guess that's not so outrageous depending on the precision you need. All the 43rd roots of 100 digit numbers are greater than 200 and less than 212, so if you only need integer precision you only have 13 choices. And memorizing 12 thresholds is not that hard.
  • by e_lehman ( 143896 ) on Wednesday November 24, 2004 @10:51PM (#10915315)
    The 13th root of a 100-digit number is an 8-digit number. Here's how YOU can find TWO of those 8 digits in an instant.

    1. The leading digit is ALWAYS 4.

    2. The last digit of the 13-th root of N is always the same as the last digit of N.

    (The first fact follows because Floor[N[(10^100 - 1)^(1/13)]] = 49238826 and Floor[N[(10^99 - 1)^(1/13)]] = 41246263. The second holds because N^13 is congruent to N modulo 10.)

    With minimal practice, you can get the second-highest digit from the magnitude. Beyond that I can only speculate what he's doing. But by taking an alternating sum of the digits, you get its value mod 11, which gives you the value of the root mod 11, which buys you another digit. Now you're halfway there...
  • Re:That's easy. (Score:3, Informative)

    by Anonymous Coward on Wednesday November 24, 2004 @10:52PM (#10915322)
    if you're going to mention Professor Benjamin [hmc.edu] you mind as well use his name :)
  • by pvg ( 152136 ) on Wednesday November 24, 2004 @11:02PM (#10915402)
    Are described here. Rest of the site is also informative and insane.

    http://racine13eme.site.voila.fr/100digang.htm [voila.fr]

    -pvg
  • Re:That's easy. (Score:3, Informative)

    by wildsurf ( 535389 ) on Wednesday November 24, 2004 @11:10PM (#10915457) Homepage
    if you're going to mention Professor Benjamin you mind as well use his name :)

    You beat me to it. (Retroactively.) Sorry Art. :-)

    P.S. Try solving one of these [olympicube.com] in eleven seconds. :-)
  • Re:That's easy. (Score:5, Informative)

    by stoborrobots ( 577882 ) on Thursday November 25, 2004 @02:36AM (#10916416)
    it isn't always - it's only true for numbers which are not even and not multiples of 5...

    As for why it's true otherwise, it's because of Fermat's Little Theorem [wikipedia.org] and Euler's Totient Function [wikipedia.org]...

    Specifically, since the Totient of 10 is 4, any number which is coprime to 10 (i.e. not even and not a multiple of 5) when raised to a power of 4, yields a 1 in the units place, (i.e. N^4 = 1 mod 10 if gcd(N,10) = 1).

    Since if a number is coprime to 10, then all its powers are coprime to 10, N^12 = (N^3)^4 also has a 1 in its units place.

    Now N^13 = N*(N^12) will always have the same last digit as N, if N is coprime to 10.
  • Re:That's easy. (Score:5, Informative)

    by kylemonger ( 686302 ) on Thursday November 25, 2004 @02:58AM (#10916485)
    (n mod 10) = (n^k mod 10) iff (k mod 4) = 1. (n > 0, k > 0)

    Since we use base 10 arithmetic (n mod 10) means we just look at the last digit. Digits repeat every fourth iteration when computing the powers of a natural number.

    Numbers ending with:
    1 -> 1,1,1,1,1,1,1,1,1,...
    2 -> 2,4,8,6,2,4,8,6,2,...
    3 -> 3,9,7,1,3,9,7,1,3,...
    5 -> 5,5,5,5,5,5,5,5,5,...

    You can see the period 4 cycles for 4, 6, 7, 8, and 9 as well. Since the digits repeat, the value of (n^k mod 10) must also repeat as k increases.
  • by Alsee ( 515537 ) on Thursday November 25, 2004 @11:19AM (#10918043) Homepage
    Actually he was probably telling the truth. It would be fairly easy to train to find the 43rd root of a 100 digit number in under 3 seconds.

    There are only about dozen perfect 43rd powers with exactly 100 digits. You only need to memorize the first 2 digits of those perfect powers to be able to spit out the right root instantly.

    -
  • Re:What? (Score:4, Informative)

    by RichardX ( 457979 ) on Thursday November 25, 2004 @12:31PM (#10918419) Homepage
    I just found a good little example of some of the concepts in the trachtenberg system here [mathforum.org]

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...