Talk:Mnemonic major system

Use of Lottery Numbers as an aid to memorization

Lottery numbers for the California Lottery for July 28, 2004 using the major system for memorizing numbers. A PERL script was used to create random short english phrases as an aid to memorization. The script works by permuting the provided digits into every possible order and then partitioning each possible ordering into a set of tokens. A dictionary lookup then chooses random words for those values for which tokens exist.

In a preferred embodiment, a program like WordNet would be used to choose words according to a noun-verb-noun or like structure; idealy so as to obtain a short phrase that coorsponds to a neologism or current news event. In the following list the phrases LOUD ENDGAME RUMBLE seems to suggest some kind of sporting event, and the phrase OLYMPIAD GOTTEN MOREL might work out better as OLYMPIAD GO! 12345 ... which translates to: 5391712345 which in turn yeilds the indicated draw set.

MAIN: 5 12 17 34 39 MEGA: 5

51 2173 4395loud endgame rumble
5121 734 395latent gamer amble
512 173 4395aladdin outcome grumble
5121 73 4395latent gummy rumple
512 1739 345leyden decamp merle
5121 739 345agglutinate campo morel
51 2341 7395lotte nimrod gamble
512 341 7395gluten mart compel
5123 41 7395laudanum ret kampala
5123 417 395laudanum erotica umbel
512 343 9175olden miriam optical
5123 43 9175laudanum warm poetically
5123 4391 75laudanum armpit cowley
512 3439 175glidden marimba tequila
5123 439 175laudanum ramp tackle
5123 917 345laudanum buttock murillo
512 393 4175hilton wampum radical
5123 93 4175laudanum opium radically
5123 934 175laudanum boomer tickle
5171 23 4395wildcat annum grumble
5171 234 395litigate enamor employ
5171 239 345litigate namibia moral
51 7341 2395healed kmart nimbly
51 7391 2345laude compute numeral
5 17391 2345lag decamped numeral
51 73912 345holed cambodian murillo
53 4121 7395alum hardened kampala
534 121 7395glimmer donut compel
5 34121 7395ugly mordant gamble
5341 21 7395agglomerate knead kampala
5341 2173 95agglomerate endgame pla
5341 217 395agglomerate indigo mobil
534 123 9175lamar atheneum optically
5341 23 9175agglomerate enigma poetically
5341 2391 75agglomerate numbed cal
5341 239 175agglomerate namibia ethically
53 4171 2395loam eradicate nimble
534 171 2395gloomier ducked nimbly
5341 71 2395agglomerate gout nimble
534 1712 395lamer dakotan amiably
5341 712 395agglomerate yucatan umbel
53 4391 2175lime armpit unethically
53 439 12175loom romp tentacle
5 3439 12175wiggly marimba identical
534 391 2175gloomier amputee unethical
534 3912 175glamor hampton thickly
534 39 12175elmira wimp identical
534 39121 75glamor umpteenth cleo
5391 2173 45limbed endgame real
5391 217 345limped intake moral
53 9123 4175elmo putnam radical
539 123 4175lamb autonomy erratically
5391 23 4175limped enigma heretical
5391 2341 75lumped nimrod keel
5391 234 175limped anymore ducal
53 9171 2345lam petticoat numerology
539 171 2345lump teakwood numerology
5391 71 2345lambda got numeral
539 1712 345limp dakotan amarillo
5391 712 345olympiad gotten morel
53 934 12175llama bummer tentacle
539 341 2175limb martha nautical
539 3412 175lomb mauritania dewclaw
539 34 12175lamb meier tentacle
539 34121 75limbo mordant gall

Winning Stuff

Therefore, if one realizes that using the major system for memorizing numbers the phrase how to be a millionaire - you earn it, ok? and translates it using the appropriate PERL code, then on realizes that this phrase encodes the sequence 19-35-24-42-17 which came up on the California Super Lotto on May 3, 2003 along with the mega number twenty. Now if one does not want to earn it for oneself, then one hopes that the cookie monster will bless one with the wisdom to make up ones own winning magic cookie phrase (hopefully without having to extort, bribe, or blackmail any public officials), or else its just you have to be tough when you're a man - who knows? which by a remarkable coincidence encodes the sequence 8-19-18-24-32 with mega 20 which came up on the California Super Lotto on January 18, 2003. There was no jackpot winner on that draw.

Whether a so-called greedy algorithm exists that would make it possibly to increase one's chances of winning the Lottery, (with an honest ticket that is) is not publicly known. There may be significant implications as a result of the conclusions that can be drawn from a deep analysis of certain mappings of linguistic patterns onto finite grammers of various types. (see Chomsky). This is in part because it is becomes possible to develop denumerable or recursively enumerable sets of features of an intellegence system, even though such problems of analysis are frequently thought of as being intractable. Unforturnately, many people suffer from a failure of imagination.

Get your own Stuff

#!/usr/bin/perl -w
# use strict;
sub cipher;
sub make_interval; 
$N = make_interval ("47");
$M = make_interval ("27");
$R = qr/{($N)($N)($N)($N)($N)($M)}/;
# This is a quick and easy PERL function that translates a
# cookie in text form into an actual playable set of
# Lottery numbers!  It requires the make interval function
# and an unspecified "cipher' function to do the mnemonic
# substitution - either by pattern analysis or by dictionary
# lookup.
sub xlate_cookie1
{
  my ($text,$sequence) = @_;
  $text =~ s/[?;:!,."]//g; 
  @tokens = split (/\s+/,$text);  
  $sequence = "{";
  foreach $word (@tokens) {
    $value = cipher ($word);
    $sequence .= $value;   
  }
  $sequence .= "}";
  print "SEQUENCE: $sequence\n";
  $sequence=~/$R/;
  @THE_NUMBERS = sort {$a<=>$b} ($1,$2,$3,$4,$5);
  $THE_MEGA = $6;
  foreach $num (@THE_NUMBERS) { print "$num "; }
  print "MEGA: $THE_MEGA\n";
}
# This is the quick and dirty cipher program to translate
# words into the appropriate mnemonics.  Handles quite a
# few words correctly,  Of course the best way to to this
# is by using a phonetic dictionary.
sub cipher
{
  my ($w) = @_;
  $w =~ tr/A-Z/a-z/;
  $w =~ s/jua//g;
  $w =~ s/alk/7/g;
  $w =~ s/cr/74/g;
  $w =~ s/ficia|ficie|ficio/86/g;
  $w =~ s/ould/1/g;
  $w =~ s/tion/62/g;
  $w =~ s/ussi|ssu/6/g;
  $w =~ s/god/71/g;
  $w =~ s/ng/27/g;
  $w =~ s/[aeiou]ss/0/g;
  $w =~ s/age/6/g;
  $w =~ s/ght|tt|t|dd|d/1/g;
  $w =~ s/kn|nn|n/2/g;
  $w =~ s/mm|m/3/g;
  $w =~ s/rr|r/4/g;
  $w =~ s/ll|l/5/g;
  $w =~ s/sh|ch|j/6/g;
  $w =~ s/ck|k|co/7/g;
  $w =~ s/ph|ff|f|ugh|v/8/g;
  $w =~ s/gho|ca|cou|g[uo]/7/g;
  $w =~ s/bb|b|pp|p/9/g;
  $w =~ s/[szc]/0/g;
  $w =~ s/[aeiouwhy]//g;
  $w =~ s/\D//g;
  return $w;
}
# This creates a pair of strings of the form:
# 1|2|3|4|5 .. and so on up to .. |43|44|45|46|47
# which are used in the pattern matching functions.
sub make_interval
{ 
  my ($i) = @_;
  my ($str,$j);
  for ($j=1;$j<$i;$j++) {
    $str.=$j; $str.="|";
  }
  return $str.=$i;
}

Lazarus666 02:31, 13 Sep 2004 (UTC)


  • Expand your Peg list (http://www.psywww.com/mtsite/memxpand.html) by adding colors and smells, textures. I got to 1'000'000 pegs that way.

Glad you got to a million pegs, but... --Ed Poor

Navigation

  • Art and Cultures
    • Art (https://academickids.com/encyclopedia/index.php/Art)
    • Architecture (https://academickids.com/encyclopedia/index.php/Architecture)
    • Cultures (https://www.academickids.com/encyclopedia/index.php/Cultures)
    • Music (https://www.academickids.com/encyclopedia/index.php/Music)
    • Musical Instruments (http://academickids.com/encyclopedia/index.php/List_of_musical_instruments)
  • Biographies (http://www.academickids.com/encyclopedia/index.php/Biographies)
  • Clipart (http://www.academickids.com/encyclopedia/index.php/Clipart)
  • Geography (http://www.academickids.com/encyclopedia/index.php/Geography)
    • Countries of the World (http://www.academickids.com/encyclopedia/index.php/Countries)
    • Maps (http://www.academickids.com/encyclopedia/index.php/Maps)
    • Flags (http://www.academickids.com/encyclopedia/index.php/Flags)
    • Continents (http://www.academickids.com/encyclopedia/index.php/Continents)
  • History (http://www.academickids.com/encyclopedia/index.php/History)
    • Ancient Civilizations (http://www.academickids.com/encyclopedia/index.php/Ancient_Civilizations)
    • Industrial Revolution (http://www.academickids.com/encyclopedia/index.php/Industrial_Revolution)
    • Middle Ages (http://www.academickids.com/encyclopedia/index.php/Middle_Ages)
    • Prehistory (http://www.academickids.com/encyclopedia/index.php/Prehistory)
    • Renaissance (http://www.academickids.com/encyclopedia/index.php/Renaissance)
    • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
    • United States (http://www.academickids.com/encyclopedia/index.php/United_States)
    • Wars (http://www.academickids.com/encyclopedia/index.php/Wars)
    • World History (http://www.academickids.com/encyclopedia/index.php/History_of_the_world)
  • Human Body (http://www.academickids.com/encyclopedia/index.php/Human_Body)
  • Mathematics (http://www.academickids.com/encyclopedia/index.php/Mathematics)
  • Reference (http://www.academickids.com/encyclopedia/index.php/Reference)
  • Science (http://www.academickids.com/encyclopedia/index.php/Science)
    • Animals (http://www.academickids.com/encyclopedia/index.php/Animals)
    • Aviation (http://www.academickids.com/encyclopedia/index.php/Aviation)
    • Dinosaurs (http://www.academickids.com/encyclopedia/index.php/Dinosaurs)
    • Earth (http://www.academickids.com/encyclopedia/index.php/Earth)
    • Inventions (http://www.academickids.com/encyclopedia/index.php/Inventions)
    • Physical Science (http://www.academickids.com/encyclopedia/index.php/Physical_Science)
    • Plants (http://www.academickids.com/encyclopedia/index.php/Plants)
    • Scientists (http://www.academickids.com/encyclopedia/index.php/Scientists)
  • Social Studies (http://www.academickids.com/encyclopedia/index.php/Social_Studies)
    • Anthropology (http://www.academickids.com/encyclopedia/index.php/Anthropology)
    • Economics (http://www.academickids.com/encyclopedia/index.php/Economics)
    • Government (http://www.academickids.com/encyclopedia/index.php/Government)
    • Religion (http://www.academickids.com/encyclopedia/index.php/Religion)
    • Holidays (http://www.academickids.com/encyclopedia/index.php/Holidays)
  • Space and Astronomy
    • Solar System (http://www.academickids.com/encyclopedia/index.php/Solar_System)
    • Planets (http://www.academickids.com/encyclopedia/index.php/Planets)
  • Sports (http://www.academickids.com/encyclopedia/index.php/Sports)
  • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
  • Weather (http://www.academickids.com/encyclopedia/index.php/Weather)
  • US States (http://www.academickids.com/encyclopedia/index.php/US_States)

Information

  • Home Page (http://academickids.com/encyclopedia/index.php)
  • Contact Us (http://www.academickids.com/encyclopedia/index.php/Contactus)

  • Clip Art (http://classroomclipart.com)
Toolbox
Personal tools