How can I solve this riddle programmatically? Could someone help me with some pseudo-code or something?

Nine 9s

Combining nine 9's with any number of the operators +, -, *, /, (, ), what is the smallest positive integer that cannot be expressed?

Hints:

  1. The answer isn't zero. You can express zero like this: (9 - 9) * (9 + 9 + 9 + 9 + 9 + 9 + 9). Also, zero isn't a positive integer.

  2. The answer isn't one. You can express one like this: 9 - (9 * 9 - 9)/9 + 9 - 9 + 9 - 9

  3. It's not a trick question.

  4. Be sure to handle parentheses correctly.

Notes:

  • You cannot use exponentiation.
  • You cannot concatenate (for example, put two 9's together to make 99).
  • The - operator can be used in either its binary or unary form.
  • Assume base 10.

This is actually a famous puzzle and there are probably many solutions hovering around the internet. I am not sure if any of them is correct or not. Does anybody have a well explained solution?

link|improve this question

74% accept rate
2  
I see this as off-topic for two main reasons. (1) This problem does not fundamentally have anything to do with programming - it's a math question. (2) Are you trying to solve a particular problem? Are you trying to create a Code Golf question? What have you tried so far? I don't see anything along those lines. ...and what's up with your dollar-sign notation? – Matt Ball Dec 17 '10 at 20:43
2  
@Matt Ball: I think that the dollar-sign notation comes from LaTeX. – Matteo Italia Dec 17 '10 at 20:46
4  
@Matt Ball - The OP has asked for help with an approach to solve the puzzle programmatically, therefore it is entirely on topic. Besides which maths within code is generally on-topic. – Orbling Dec 17 '10 at 20:47
2  
@Matteo Italia: I keep thinking they need to get the support for LaTeX maths working on StackOverflow, Mathematics has it, so StackOverflow could too. – Orbling Dec 17 '10 at 20:48
4  
@Philando Gullible: Agreed, voted to reopen. Non-mathematical coders everywhere it seems, an oxymoron I had hoped. – Orbling Dec 17 '10 at 21:08
show 12 more comments
feedback

2 Answers

up vote 8 down vote accepted

The answer is 195, here is some Python code that simply builds up all possible expressions by forming new expressions from exp1 OP exp2. It runs in 0.165s on my PC.

exp = [set() for _ in xrange(10)]
exp[0].add(0)
exp[1].update([9, -9])
for i in xrange(1, 10):
  for a in list(exp[i]):
    for j in xrange(i, 10):
      for b in list(exp[j-i]):
        exp[j].update([a+b, a-b, a*b])
        if b != 0:
          exp[j].add(a/b)

n = 0
while n in exp[9]:
  n += 1
print n
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.