Can you solve this AI/Math puzzle and get a prize? I couldn’t.

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.

I somehow got a lot more traction on HackerNews way after I posted.

Comments

4 responses to “Can you solve this AI/Math puzzle and get a prize? I couldn’t.”

  1. esomod Avatar
    esomod

    o3-mini and o1-pro were able to solve this
    https://chatgpt.com/share/67ee9b1c-57d4-8005-b7ec-16fceab1ff0a

    https://chatgpt.com/share/67ee9bc0-2804-8005-85c3-2978e7a8ba9c

    gemini 2.5 pro, grok3, claude 3.7, deepseek r1 all failed with 10+ tries.

Leave a Reply

Your email address will not be published. Required fields are marked *