人工智能/数学谜题
AI/Math Puzzle

原始链接: https://aggressivelyparaphrasing.me/2025/03/31/can-you-solve-this-ai-math-puzzle-and-get-a-prize-i-couldnt/

有人在旧金山军械库附近的一个交通灯杆上发现了一个数学谜题,网址为`*.ai/givemeprize`,答对有奖。谜题涉及与人工智能相关的函数和计算,包括`argmax`、`softmax`、对数、忙碌的海狸数和英伟达芯片的浮点运算次数。解题者难以理解`log*`以及`BusyBeaver(4)`的正确值。简化等式后,答案似乎是`prefix(11^112).ai/givemeprize`,但网站返回404错误。穷举搜索也无果而终。 在lobsters.rs网站获得进一步指导后,解题者发现`log*`表示迭代对数,`BusyBeaver(4)`的正确值是13。重新计算后,指数变为18。在10^18的上下文中,`prefix`指的是10^18的SI前缀,即exa(艾)。 最终答案是`exa.ai/givemeprize`。

Hacker News 最新 | 往期 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 AI/数学谜题 (aggressivelyparaphrasing.me) 4 分,作者 markerz,2 小时前 | 隐藏 | 往期 | 收藏 | 2 条评论 albert_e 10 分钟前 [–] 还没读题干,避免剧透。暴力破解这个有多难?(尝试所有合理长度的域名)用AI帮忙也行。 回复 VladVladikoff 3 分钟前 | 父评论 [–] 我觉得这种方法需要访问域名服务器的API。因为如果你直接对你的默认服务器发起1亿次DNS查询,他们会限制你的访问。 回复 加入我们 6 月 16-17 日在旧金山举办的 AI 初创企业学校! 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系我们 搜索:
相关文章

原文

I found a poster with a math puzzle that points to a reward website. I couldn’t figure it out, so maybe the prize is still available!

The paper was taped on a traffic light pole at 15th St and Mission St in SF. It prints a math-ish AI-related formula followed by “.ai/givemeprize” and entices the reader to “come find me”. The SF Armory stands out of focus in the background, previously housing kink.com and Star Wars: The Empire Strikes Back. Both the SF Armory and the telephone pole now sit empty and barren.

Here it is all typed out:

prefix(
    [
        3!
        + argmax(
            softmax(
                [log(2), pi + e]
            )
        )
        + log*(16)
    ] ^ [
        BusyBeaver(4)
        + ⌈H100 flops / A100 flops⌉
        + 1
    ]
)

.ai/givemeprize

Stop here if you want to work on the puzzle yourself!

My Breakdown

Below is everything I figured out before I got stuck.

  • argmax refers to numpy.argmax returns the index of the maximum in an array
  • softmax is more interesting. Wikipedia’s definition is complicated, but pytorch explains it concisely around normalizing probabilities to sum to 1.
  • log is maybe log2 because of the computer context, maybe log10, but probably loge because numpy and pytorch both assume loge.
  • log* is confusing. I’ve never seen that syntax before. Is that natural log, aka loge? I’m guessing it’s log2 because the argument is 16, which makes a nice and round answer of 4, like the rest of the problem.
  • BusyBeaver(4) is either the maximum shift 107 (likely) or the maximum score 13 (original)???
  • H100 flops and A100 flops are the flops on the H100/A100 Nvidia chip. There are so many variations. But “H100 flops/A100 flops” is surrounded by upper brackets, which is ceil. Thus, I only need a best guess. Running through a few numbers, I get around 3.04 to 3.5, so ceil is 4.
  • prefix is weird, but I’m guessing it’s the integer portion of the number, not the decimal portion.

Here’s my reduced form:

prefix(
    [
        6
        + argmax(
            softmax(
                [0.693147181 , 5.85987448]
            )
        )
        + 4
    ] ^ [
        107
        + 4
        + 1
    ]
)

.ai/givemeprize

I don’t need to run softmax, because I know the second number will be bigger and argmax will return its index. Argmax is zero-based, so that reduces to one.

prefix(
    [6 + 1 + 4] ^ [107 + 4 + 1]
)

.ai/givemeprize

Again, reducing by simple math:

prefix(
    [11] ^ [112]
)

.ai/givemeprize

Maybe the answer was 11.ai/givemeprize, but now it 404’s. They’re not based in SF, so I doubt it.

Open questions:

That leaves these options:

BusyBeaver(4) = 13BusyBeaver(4) = 107
log2prefix(11 ^ 18) = 5559917313492231481.ai/givemeprizeprefix(11 ^ 112) = https://4.3249464815*10^116.ai/givemeprize
log10prefix( (7 + log10(16)) ^ 18 ) = 28351501028247453.ai/givemeprizeprefix( (7 + log10(16)) ^ 112 )
loge or lnprefix( (7 + ln(16)) ^ 18 ) = 93742854.ai/givemeprizeprefix( (7 + ln(16)) ^ 112 )

I considered looking at recently registered domain names. I could filter by domains only containing numbers and under the *.ai TLD. I could hit them all at /givemeprize and see who responds at all and without 404. Unfortunately, that information is behind paywalls.

I love puzzles, but I’m done with this one. I don’t think I get it. Maybe I missed something.

The Last Bits

Someone left the correct answer in the comments, but didn’t show any of the work, which is frustrating cause I want to understand!

However, folks at lobste.rs guided very kindly and I figured out my mistakes!

  • log* is iterated log. I could have learned this if I used ChatGPT or WolframAlpha instead of Google.
  • BusyBeaver(4) is 13, my less likely answer
  • this makes the exponential 10^18
  • prefix in the context of 10^18 is the SI prefix, like EXAbyte or TERAflops. So the answer here is exa.
联系我们 contact @ memedata.com