1. Joined
    26 Apr '03
    Moves
    26771
    16 Dec '05 14:162 edits
    Originally posted by The Plumber
    You're right about that. Took about 30 minutes, but I found a common everyday 4-letter word: have

    Along the way, I found: pi, ave (as in ave maria - yeah, it's a stretch), up, and mix.
    Really cool!

    I like Have, and mix is also very good as sqrt(mix) = aah

    Also interesting that add, have and mix are all verbs.

    Did you use a word list and a program? I thought there were two ways to do it:

    a) Generate all integer squares up to a certain size, and check whether each one can reverse translate into a word (a bit tricky as some numbers have more than 1 reverse translation)

    b) Iterate through all words and check whether each translates into a square (easier to compute but takes a lot more runtime than method a)
  2. Standard memberThe Plumber
    Leak-Proof
    under the sink
    Joined
    08 Aug '04
    Moves
    12493
    16 Dec '05 15:38
    Originally posted by iamatiger
    Really cool!

    I like Have, and mix is also very good as sqrt(mix) = aah

    Also interesting that add, have and mix are all verbs.

    Did you use a word list and a program? I thought there were two ways to do it:

    a) Generate all integer squares up to a certain size, and check whether each one can reverse translate into a word (a bit tricky as some numb ...[text shortened]... her each translates into a square (easier to compute but takes a lot more runtime than method a)
    I used a spreadsheet (a little bit of a brute force method, but it worked). Column 1 was the squared number, and column 2 was the letter translation of that number. I did this for 3, 4, and 5 digit numbers. Unfortunately, a straight translation of that type results only in the letters A through I, which did not result in any usable 4 letter words. I then visually scanned down through the words looking for number groups 10 through 26 and seeing what words come up when I make those substitutions. In the case of HAVE, it was HABBE before combining the Bs into a V.

    I could probably redo the spreadsheet calc to come up with a system to look for all possible letters, not just A through I, but that would take another 30 minutes or so....🙂
Back to Top

Cookies help us deliver our Services. By using our Services or clicking I agree, you agree to our use of cookies. Learn More.I Agree