Chatroom
 

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Bad Astronomy and Universe Today Forum > General > Fun-n-Games
Register FAQ Members List Calendar Mark Forums Read

   

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 14-May-2006, 01:10 AM
clop's Avatar
clop clop is offline
Senior Member
 
Join Date: Dec 2005
Location: Adelaide, Australia
Posts: 893
Default What is the longest English word that can be entered into a text message...

...using only the first letters available on each button.

i.e. the only letters allowed are A, D, G, J, M, P, T and W.


Clue - there are two possible six-letter solutions.


clop
Reply With Quote
  #2 (permalink)  
Old 14-May-2006, 02:54 AM
GDwarf's Avatar
GDwarf GDwarf is offline
Senior Member
 
Join Date: Jul 2005
Location: Canada
Posts: 756
Send a message via MSN to GDwarf
Default

8 letters per space, and 6 spaces. 8^6 possible combinations, quite a few too many to simply list an guess.

So I'll assume that the first letter is not an 'A', but that the second letter is. That makes it... 8^4 * 7 possible combinations, still far too many.

If I then assume that the last letter won't be an 'A', I get
8^3 * 7^2 still far, far too many.

I don't think I'm going to be able to solve this with a list of possible choices any time soon.
__________________
"I'll believe anything, no matter how wild and ridiculous, if there is evidence for it. The wilder and more ridiculous something is, however, the firmer and more solid the evidence will have to be." ~ Isaac Asimov
"Somewhere, there is something incredible waiting to be known. " ~Carl Sagan
Reply With Quote
  #3 (permalink)  
Old 14-May-2006, 03:31 AM
01101001's Avatar
01101001 01101001 is offline
Senior Member
 
Join Date: Mar 2004
Posts: 10,771
Default

pajama
pawpaw
__________________
0 1 1 0 1 0 0 1 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 0 1 1 0 1 0 0 1 1 0 0 1 0 1 1 0 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 1 0 0 1 0 1 1 0....
Reply With Quote
  #4 (permalink)  
Old 14-May-2006, 03:45 AM
clop's Avatar
clop clop is offline
Senior Member
 
Join Date: Dec 2005
Location: Adelaide, Australia
Posts: 893
Default

01101001 how did you do it?

clop
Reply With Quote
  #5 (permalink)  
Old 14-May-2006, 04:17 AM
snarkophilus's Avatar
snarkophilus snarkophilus is offline
Senior Member
 
Join Date: Sep 2005
Posts: 1,094
Default

Um, I've seen "tom-tom" written as "tam-tam" before.

Here's a list of all letter combinations -- under one page of code to generate them. (Three cheers for Prolog!)

http://web.unbc.ca/~mcnamarg/words.zip

Code if you'd rather generate your own:
%
% letpuz.pl
% To get 6 letter combinations, call getSolutions(6,myfile).

getSolutions(Length, Filename) :-
tell(Filename),
writeSolutions(Length),
!,
told.

writeSolutions(M) :-
solution(M, S),
writeSol(S),
nl,
fail.
writeSolutions(_).

solution(0,[]) :- !.
solution(N, [Let|R]) :-
letter(Let),
M is N-1,
solution(M, R).

writeSol([]).
writeSol([A|R]) :-
write(A),
!,
writeSol(R).

letter(a).
letter(d).
letter(g).
letter(j).
letter(m).
letter(p).
letter(t).
letter(w).
__________________
"It's turtles all the way down."
Reply With Quote
  #6 (permalink)  
Old 14-May-2006, 04:25 AM
01101001's Avatar
01101001 01101001 is offline
Senior Member
 
Join Date: Mar 2004
Posts: 10,771
Default

Quote:
Originally Posted by clop
01101001 how did you do it?
Unix tools.

grep -i '^[adgjmptw][adgjmptw][adgjmptw][adgjmptw][adgjmptw][adgjmptw]$' /usr/share/dict/words
__________________
0 1 1 0 1 0 0 1 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 0 1 1 0 1 0 0 1 1 0 0 1 0 1 1 0 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 1 0 0 1 0 1 1 0....
Reply With Quote
  #7 (permalink)  
Old 14-May-2006, 05:29 AM
clop's Avatar
clop clop is offline
Senior Member
 
Join Date: Dec 2005
Location: Adelaide, Australia
Posts: 893
Default

that is amazing
Reply With Quote
  #8 (permalink)  
Old 14-May-2006, 08:47 AM
Eroica's Avatar
Eroica Eroica is online now
Senior Member
 
Join Date: Sep 2003
Location: Dubh Linn
Posts: 3,641
Default

Wagamama

(Just be patient. It's only a matter of time before it finds its way into the OED!)
__________________
- Learn a lot teaching others.
Reply With Quote
  #9 (permalink)  
Old 15-May-2006, 08:03 AM
snarkophilus's Avatar
snarkophilus snarkophilus is offline
Senior Member
 
Join Date: Sep 2005
Posts: 1,094
Default

I have an English dictionary that includes the word "mata-mata," although it is a hyphenated word. Apparently, it is used to mean "police" in Malaysia.

I hate the spelling "pajama." It confuses and infuriates me.
__________________
"It's turtles all the way down."
Reply With Quote
  #10 (permalink)  
Old 15-May-2006, 11:41 AM
Roy Batty's Avatar
Roy Batty Roy Batty is online now
Senior Member
 
Join Date: Oct 2001
Location: London, England
Posts: 3,031
Default

Quote:
Originally Posted by Eroica
Wagamama

(Just be patient. It's only a matter of time before it finds its way into the OED!)
Hey! i've got one of those about a mile away in Kingston. Only been once but the food was good
__________________
N6MAA10816
Faber '62 ΔTX

Are you a Bright?
Reply With Quote
  #11 (permalink)  
Old 15-May-2006, 11:55 AM
Fram's Avatar
Fram Fram is offline
Senior Member
 
Join Date: Aug 2004
Location: Buggenhout, Belgium
Posts: 3,140
Default

A, D, G, J, M, P, T and W? In Dutch, we can do better than 6. No program, just trial and error, gives me at least 7:

JAAGPAD (towpath)

Anyone can do better in his or her language?
__________________
Knowledge is a curse, but ignorance is worse
Reply With Quote
  #12 (permalink)  
Old 15-May-2006, 11:57 AM
Fram's Avatar
Fram Fram is offline
Senior Member
 
Join Date: Aug 2004
Location: Buggenhout, Belgium
Posts: 3,140
Default

Oh, and "Mammagamma" is an Alan Parsons Project song title.
__________________
Knowledge is a curse, but ignorance is worse
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 01:46 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
©  2006 Bad Astronomy and Universe Today