←back to thread

2127 points bakugo | 1 comments | | HN request time: 0.431s | source
Show context
AlfeG ◴[] No.43169449[source]
Ahha, recently my daugher come to me with 3rd grade math problem. "Without rearranging the digits 1 2 3 4 5, insert mathematical operation signs and, if necessary, parentheses between them so that the resulting expression equals 40 and 80. The key is that you can combine digits (like 12+3/45) but you cannot change their order from the original sequence 1,2,3,4,5"

Grok3, Claude, Deepseek, Qwen all failed to solve this problem. Resulting in some very very wrong solutions. While Grok3 were admit it fail and don't provide answers all other AI's are provided just plain wrong answers, like `12 * 5 = 80`

ChatGPT were able to solve for 40, but not able to 80. YandexGPT solved those correctly (maybe it were trained on same Math books)

Just checked Grok3 few more times. It were able to solve correctly for 80.

replies(5): >>43169547 #>>43170163 #>>43170759 #>>43172059 #>>43180400 #
1. coffeeaddict1 ◴[] No.43172059[source]
o3-mini-high solves this correctly:

```

We can “stick‐to the order” of the digits and allow concatenation. For example, one acceptable answer is

  40:  1 – 2 × 3 + 45    because 1 – (2×3) + 45 = 1 – 6 + 45 = 40
and another is

  80:  12 ÷ 3 × 4 × 5    because 12÷3 = 4, then 4×4×5 = 16×5 = 80
In both cases the digits 1,2,3,4,5 appear in order without rearrangement.

```

However, it took 8 minutes to produce that.