{"id":3023,"date":"2012-01-06T14:11:26","date_gmt":"2012-01-06T19:11:26","guid":{"rendered":"http:\/\/www.decisionsciencenews.com\/?p=3023"},"modified":"2012-01-07T10:13:24","modified_gmt":"2012-01-07T15:13:24","slug":"how-to-remember-numbers","status":"publish","type":"post","link":"https:\/\/www.decisionsciencenews.com\/?p=3023","title":{"rendered":"How to remember numbers"},"content":{"rendered":"<p>RESOLVE TO MEMORIZE NUMBERS WITH THE DIGIT-SOUND METHOD<\/p>\n<p style=\"text-align: center;\"><a href=\"http:\/\/www.decisionsciencenews.com\/wp-content\/uploads\/2012\/01\/dgtsnd1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3025\" title=\"dgtsnd\" src=\"http:\/\/www.decisionsciencenews.com\/wp-content\/uploads\/2012\/01\/dgtsnd1.png\" alt=\"\" width=\"489\" height=\"269\" \/><\/a><\/p>\n<p>At Decision Science News, we have all kinds of numbers memorized: IP addresses, passport numbers, phone numbers, bank account numbers, logarithms, etc. Once you have stuff like this memorized, you&#8217;ll\u00a0 realize how much of a hassle it was to look all this stuff up all the time. Besides, it&#8217;s fun.<\/p>\n<p>But how is it done?<\/p>\n<p>It is done with the <a href=\"http:\/\/memory.uva.nl\/memimprovement\/eng\/phon_peg.htm\">digit-sound method, which we learned from Professor Jaap Murre&#8217;s neuroMod site at the University of Amsterdam<\/a>. According to Murre, this amazing method traces back to 1648!<\/p>\n<p>You associate a digit with a sound or sounds like this<\/p>\n<p><strong>0<\/strong> z, s, soft-c &#8216;z&#8217; is the first letter of zero<br \/>\n<strong>1<\/strong> t, th, d &#8216;t&#8217; has one downstroke<br \/>\n<strong>2<\/strong> n &#8216;n&#8217; has two legs (downstrokes)<br \/>\n<strong>3<\/strong> m &#8216;m&#8217; has three legs (downstrokes)<br \/>\n<strong>4<\/strong> r &#8216;r&#8217; is the last sound in fouR<br \/>\n<strong>5<\/strong> l &#8216;l&#8217; or L is the Roman numeral 50<br \/>\n<strong>6<\/strong> soft-g, j, sh, ch &#8216;g&#8217; when turned around gives &#8216;6&#8217;<br \/>\n<strong>7<\/strong> k, q, hard-c, hard-g &#8216;k&#8217; is made of two 7&#8217;s back-to-back<br \/>\n<strong>8<\/strong> f, v &#8216;f&#8217; when written in script looks like &#8216;8&#8217;<br \/>\n<strong>9<\/strong> p, b &#8216;p&#8217; when turned around gives &#8216;9&#8217;<\/p>\n<p>Then, when you want to remember a number, you simply replace the digits with sounds and try to make a vivid phrase. Any vowels or sounds not included in the chart are ignored when you are reading back the phrase. For example, suppose you want to memorize Jenny&#8217;s phone number: 867-5309.<\/p>\n<p>Here&#8217;s how we might do it:<\/p>\n<ul>\n<li>Change 867 to sounds, such as &#8220;f&#8221;, &#8220;sh&#8221; and &#8220;k&#8221;<\/li>\n<li>Change 5309 to sounds, such as &#8220;l&#8221;, &#8220;m&#8221;, &#8220;s&#8221; and &#8220;b&#8221;<\/li>\n<li>Now insert vowels and letters not on the chart in order to generate a vivid phrase from those sounds.<\/li>\n<\/ul>\n<p>We came up with the following dialog involving a parent and child at the dinner table:<\/p>\n<p>&#8211;&#8220;Fish, ok?&#8221;<br \/>\n&#8211;&#8220;Lame! *sob*&#8221;<\/p>\n<p>In this mini play, we have &#8220;f&#8221;, &#8220;sh&#8221;, &#8220;k&#8221; &#8220;l&#8221;, &#8220;m&#8221;, &#8220;s&#8221; and &#8220;b&#8221; in order, and can easily reconstruct 867-5309. Remember, when reading it back, you ignore all vowels and letters that aren&#8217;t in the chart.<\/p>\n<p>The only start-up cost is memorizing the chart, but that&#8217;s not hard. There&#8217;s even a <a href=\"http:\/\/memory.uva.nl\/memimprovement\/eng\/phon_peg_3.htm\">training tool<\/a> so you can practice until you have the associations down pat.<\/p>\n<p>Of course, since there can be a few possible sounds for each letter, you need to play around a bit to find a phrase that works for you. To generate possibilities for long numbers, we&#8217;ve written the following <a href=\"http:\/\/python.org\">python <\/a>script.<\/p>\n<p>NOTE 1: In this code, we&#8217;ve simplified the digit-sound method to include fewer letters since we always get confused with hard vs soft letters. We find the simplified method works just fine for us.<br \/>\nNOTE 2: This code is written in a hackish, randomized way that generates wasteful dupes. However, we don&#8217;t care since it doesn&#8217;t output the dupes, it runs super fast, and if you have a huge number of possibilities, you don&#8217;t want to see them all anyway. That said, if people have better implementations, we&#8217;re open for suggestions. Thanks to <a href=\"http:\/\/beeminder.com\">Dan Reeves<\/a> for tightening up the code a bit!<br \/>\nNOTE 3: You can take the output of this program and hunt for words that fit the patterns with a linux call like this.<br \/>\ngrep -E &#8216;^l[aieouy]*m[aieouy]*n[aeiouy]*$&#8217; wordlist.txt<br \/>\nWhere  you are looking for words that match &#8220;l&#8221;, &#8220;m&#8221;, &#8220;n&#8221; and wordlist.txt is a list of words, one per line. You can find<a href=\"http:\/\/wordlist.sourceforge.net\/12dicts-readme.html\"> many wordlists here<\/a>.<\/p>\n<pre>#Usage. Save this file as generate.py\r\n#Then to use, do generate.py 867 (if 867 is the number for\r\n#which you want to generate letters)\r\nfrom cStringIO import StringIO\r\nimport random\r\nfrom sys import argv\r\nfrom time import strftime\r\nmstr=str(argv[1])\r\ndef genString():\r\n        numsounds = [['s','z'], ['t','th','d'],['n'],['m'],['r'],\\\r\n['l'],['j','ch','sh',],['k','q'],['f','v'],['p','b']]\r\n        return [random.choice(numsounds[int(i)]) for i in mstr]\r\ni=0\r\nmyDict={}\r\nwhile i<10000:\r\n        astr=' '.join(genString())\r\n        if not myDict.has_key(astr):\r\n                myDict[astr]=1\r\n                print '%-20s ==> %2d : %20s' % \\\r\n(astr,i,strftime(\"%Y-%m-%d %H:%M:%S\"))\r\n        i=i+1\r\n\r\n<\/pre>\n<p><span style=\"font-size: xx-small;\">Photo credit: http:\/\/memory.uva.nl\/memimprovement\/eng\/phon_peg_1.htm<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>At Decision Science News, we have all kinds of numbers memorized: IP addresses, passport numbers, phone numbers, bank account numbers, logarithms, etc. Once you have stuff like this memorized, you&#8217;ll start to realize how much less of a hassle it is to have things in memory rather than on paper or disk. Besides, it&#8217;s fun.<\/p>\n<p>But how is it done?<\/p>\n<p>It is done with the digit-sound method, which we learned from Professor Jaap Murre&#8217;s neuroMod site at the University of Amsterdam.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[4,16,2],"tags":[312,20,314,318,22,203,311,310,317,313,315,319,36,78,316],"class_list":["post-3023","post","type-post","status-publish","format-standard","hentry","category-encyclopedia","category-ideas","category-research-news","tag-cognition","tag-decision-making","tag-digit","tag-digit-sound","tag-heuristics","tag-judgment","tag-learning","tag-memory","tag-method","tag-mnemonic","tag-phonetic","tag-phonetic-mnemonic","tag-psychology","tag-rules","tag-sound"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p4LKj-ML","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=\/wp\/v2\/posts\/3023","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3023"}],"version-history":[{"count":29,"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=\/wp\/v2\/posts\/3023\/revisions"}],"predecessor-version":[{"id":3054,"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=\/wp\/v2\/posts\/3023\/revisions\/3054"}],"wp:attachment":[{"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3023"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3023"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.decisionsciencenews.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3023"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}