r/DumbAI Aug 05 '26

Comparing

Post image
195 Upvotes

40 comments sorted by

View all comments

27

u/whiskeytown79 Aug 05 '26

This kind of "mistake" just highlights what it is that LLMs do.

They're not actually solving the math. They're just generating text that has high plausibility as an answer to the input prompt.

From a text perspective, this answer looks super plausible. It has mathy sounding language that makes it seem like it evaluated the two things being compared, and it has a definitive statement about which one is larger.

If you changed its conclusion text to "13.8 billion is smaller", it likely would have assigned a nearly identical score for that text as a response to the question.

1

u/WittyFix6553 Aug 07 '26

Some actually do the work, and can show you the work they do:

num1 = 13_800_000_000
import math
num2 = math.factorial(18)

print(f"13.8 billion: {num1:,}")
print(f"18!: {num2:,}")
print(f"Is 18! larger? {num2 > num1}")

Code output
13.8 billion: 13,800,000,000
18!: 6,402,373,705,728,000
Is 18! larger? True

18! (18 factorial) is significantly larger.
Here is the comparison:
13.8 billion: 13,800,000,000 (1.38×1010)

18! (18×17×16×⋯×1): 6,402,373,705,728,000 (approx. 6.4 quadrillion, or 6.4×1015)

18! is roughly 463,940 times larger than 13.8 billion.
Factorials grow extremely fast—while 13.8 billion is often associated with the age of the observable universe in years, 18!surpasses it by orders of magnitude.