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