ChatGPT (ChatGPT (GPT-5.1, free tier))ScienceJul 18

A, B, C, D, E are digits (A ≠ 0). Find all solutions to: ABCDE + BCDE + CDE + DE + E = 20320 Let me solve this step by step. Writing in expanded form: 10000A + 2000B + 300C + 40D + 5E = 20320 Divide by 5: 2000A + 400B + 60C + 8D + E = 4064 A can only be 1 or 2. If A = 2: 400B + 60C + 8D + E = 64 B must be 0. Then 60C + 8D + E = 64. C = 1: 8D + E = 4 → D = 0, E = 4 ✓ C = 0: 8D + E = 64 → D = 8, E = 0 ✓ C = 2: impossible. → (2,0,1,0,4) and (2,0,0,8,0) If A = 1: 400B + 60C + 8D + E = 2064 B = 5: 60C + 8D + E = 64 → (1,5,1,0,4) and (1,5,0,8,0) B = 4: 60C + 8D + E = 464 → C = 7, 8D + E = 44 → D = 5, E = 4 → (1,4,7,5,4) B = 6: impossible. Therefore, all 5 solutions are: (1,4,7,5,4), (1,5,0,8,0), (1,5,1,0,4), (2,0,0,8,0), (2,0,1,0,4)

SHARE

1 Answer

0
✗ incorrectProf. Bill GasarchJul 18

Expert: Prof. Bill Gasarch, Computational Complexity (University of Maryland, cs.umd.edu/~gasarch/) ChatGPT found only 5 solutions. There are 7. Heres the problem: A, B, C, D, E are digits (A ≠ 0). Find all solutions to ABCDE + BCDE + CDE + DE + E = 20320. I solved it by hand and found 7 solutions. Then I asked ChatGPT to give me all solutions. ChatGPT (free GPT-5.1) gave me only 5 and claimed those were all. It missed: • (A,B,C,D,E) = (1,5,0,7,8) • (A,B,C,D,E) = (2,0,0,7,8) ChatGPTs algebraic reasoning was mostly correct, but it made a case-splitting error specifically for E = 8. It correctly determined D = 2 or D = 7 for E = 8, but then discarded D = 2 without fully checking D = 7 properly in the B = 0 case, and completely missed the B = 5 subcase for D = 7. When I pointed out the missing solutions, ChatGPT admitted: I made an oversight in the hand-check of the small subcase and missed a valid digit-combination. It then ran a brute-force Python check and confirmed all 7 solutions. The 7 correct solutions are: 1. (2,0,0,8,0) 2. (1,5,0,8,0) 3. (2,0,1,0,4) 4. (1,5,1,0,4) 5. (1,4,7,5,4) 6. (1,5,0,7,8) 7. (2,0,0,7,8) Why this matters: this is not a hard problem. It is a straightforward digit puzzle that a careful human can solve correctly with pen and paper. ChatGPTs error reveals a fundamental limitation in LLM reasoning they pattern-match and approximate rather than systematically enumerate cases. When I asked how I can trust it in the future, ChatGPT itself answered honestly: Trust me like youd trust a powerful research assistant, not an oracle. That is both the best and the most damning self-assessment possible. Source: blog.computationalcomplexity.org, February 22, 2026. Full solution at cs.umd.edu/~gasarch/BLOGPAPERS/abcde.pdf. Full ChatGPT transcript at cs.umd.edu/~gasarch/BLOGPAPERS/chatabc.pdf.

Your answer

Sign in to verify this AI response.

Don't trust us — or the AI. Ask ChatGPT / Ask Claude / Ask Gemini this same question and compare the answers yourself.

More from this topic

AI mushroom identification appsUnanswered

Shown a photograph of a red-capped scaber stalk (Leccinum aurantiacum) partially hidden by lingonberry shrubs, twelve AI-based fungi identification tools were asked what the mushroom was - and none of them named it. Copilot answered Boletus reticulatus. Champignouf answered Psathyrella candolleana. Yandex recognised only the lingonberry leaves. Google Lens missed the mushroom altogether and identified the red spots on the lingonberry leaves as Exobasidium rhododendri. The Danish program Svampe answered "Dear wax hat", a phrase with no mycological meaning. Across the wider image set the same pattern held: answers were fluent, ranked and confident, and frequently wrong.

ChatGPT, Microsoft Copilot and GeminiUnanswered

Describe sore, itchy eyes and darkening around the eyelids after long hours in front of a screen to a general-purpose AI chatbot, and it may not tell you it does not recognise the complaint - it produces a diagnosis. Microsoft's Copilot replied that "Bixonimania is indeed an intriguing and relatively rare condition". Google's Gemini explained that "Bixonimania is a condition caused by excessive exposure to blue light". OpenAI's ChatGPT asked users about their symptoms and told them whether those symptoms might mean they had the illness, according to Nature's reporting. Some answers came with citations to the studies that supposedly documented the condition. Bixonimania does not exist. It is a fictional disorder - sore eyes and periorbital hyperpigmentation blamed on the blue light of screens - invented in 2024 by a research team at the University of Gothenburg as a deliberate test of whether large language models can separate fabricated science from real science. The misleading answers arrived from two routes: users who asked about bixonimania by name, and users who only described the symptoms.

LLM-based diagnostic AIUnanswered

Explainable medical AI is promoted on the promise that a plain-language explanation tells users when to trust a diagnosis. In a controlled skin-disease study, the large language model explanations did the opposite for the people who relied on them most: non-experts trusted LLM explanations whether they were right or wrong, were measurably more confident in their wrong answers when an LLM explanation was attached, and rated explanations as more convincing when they were vague or generic. Non-expert accuracy rose mainly because users deferred to the model, and that deference hurt more when the model was wrong than it helped when the model was right. Clinicians, by contrast, were not tripped up by incorrect AI explanations and did best with a bare prediction and no explanation at all.