Page 1 of 3

Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 05:56
by Vlek
I've found an issue with the number game that may or may not be intentional. I've created a way to programmatically create a list of all possible combinations of numbers and evaluate which ones hit the target number, and I've found that, out of any ten given times that you play, there may be one or two answerable ones. I believe that this is due to a very odd order of operations issue that's going on. One of my number game plays with a target number of 288 and numbers 100, 25, 75, 9, 6, 8 and 7 appeared to have only one answer: 100*25/75*9+6-8-7. When I tried this number in game, I was told that I was wrong and that it equaled -9. I've tried everything I can think of, and there's no way that I can think of using that equation to come to -9.

Being lucky and repeating the number game several times will give a problem that does not have any order of operations issues that can then be used. I believe these problems are the ones without side-by-side division and multiplication operations.

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 09:23
by Zhar
vlek wrote:One of my number game plays with a target number of 288 and numbers 100, 25, 75, 9, 6, 8 and 7 appeared to have only one answer: 100*25/75*9+6-8-7. When I tried this number in game, I was told that I was wrong and that it equaled -9. I've tried everything I can think of, and there's no way that I can think of using that equation to come to -9.
It doesn't equal -9 but it's still wrong.

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 09:43
by Greneth
Wouldn't that be 291?

And the correct answer should of been... 25*8+75+7+6 = 288

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 10:22
by Zhar
Greneth wrote:Wouldn't that be 291?

And the correct answer should of been... 25*8+75+7+6 = 288
Should have*

Sorry, but I really can't stand all the "should of" and "would of" creeping all over the net in the recent years (damn you native English speakers, damn you).

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 10:25
by Greneth
Zhar wrote:
Greneth wrote:Wouldn't that be 291?

And the correct answer should of been... 25*8+75+7+6 = 288
Should have*

Sorry, but I really can't stand all the "should of" and "would of" creeping all over the net in the recent years (damn you native English speakers, damn you).
Sorry, **could of been. ;-)

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 16:48
by gorboth
"could of" is not good native English at all! "Could have" perhaps ... ;-)

G.

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 17:48
by Greneth
gorboth wrote:"could of" is not good native English at all! "Could have" perhaps ... ;-)

G.
I blame Stahl for my lack of proper engrish

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 20:23
by Laurel
Armin http://en.wikipedia.org/wiki/Armin_Mueller-Stahl? I learned the basics of english in Germany indeed ...

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 18 May 2015 21:57
by Aristos
Laurel wrote:Armin http://en.wikipedia.org/wiki/Armin_Mueller-Stahl? I learned the basics of english in Germany indeed ...
Deutsche Sprache, schwere Sprache.

Re: Calia Hobbit Number Game Quest [Possible spoilers]

Posted: 19 May 2015 04:15
by Vlek
Zhar wrote: It doesn't equal -9 but it's still wrong.
It's not wrong depending on what you're using to calculate it. In python and ruby, it's right. In damn near everything else I've tried it on including the regular windows calculator it comes to 291.
Greneth wrote: Wouldn't that be 291?
And the correct answer should of been... 25*8+75+7+6 = 288
Depends what you're using to calculate it with apparently, and no, that's not the right answer. You have to use all of the numbers and only change the mathematical operations between them.