Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. I Built Non-Autoregressive Decision Models with RL a Year Ago(convaiinnovations.com ↗)
    165comments
  2. AI-generated posters don’t have to be horrible(john.hartnup.uk ↗)
    555comments
  3. Human brain is two separate organs, Stanford Medicine-led research finds(stanford.edu ↗)
    197comments
  4. A graphical desktop for the ZX Spectrum(github.com/mindbox77 ↗)
    82comments
  5. Tin: full-text search for Postgres(planetscale.com ↗)
    56comments
  6. “The Secret Life of Circuits” is here(coredump.cx ↗)
    58comments
  7. Android 17 is the first since 3.x to add new APIs without releasing to the AOSP(grapheneos.social ↗)
    591comments
  8. Black Holes or Black Hole Stars? Astronomers Spar over 'Little Red Dots'(quantamagazine.org ↗)
    22comments
  9. Supabase (YC S20) Is Hiring for OrioleDB(supabase.link ↗)
    discuss
  10. New evidence for hidden chambers beyond Tutankhamun's tomb(nature.com ↗)
    13comments
  11. GPT-6 Astra Solves a WWI German Radio Cipher(prinzai.com ↗)
    144comments
  12. San Francisco Onion Futures Company(onionfutures.com ↗)
    133comments
  13. People who know the most often sound the least certain(vrash.substack.com ↗)
    7comments
  14. Almost Never Use AI to Write Anything Substantive(erichgrunewald.substack.com ↗)
    29comments
  15. Cloudflare Quick Tunnels(cloudflare.com ↗)
    302comments
  16. How to Write with an LLM(sockpuppet.org ↗)
    365comments
  17. If math is more than proof, we need to better celebrate the rest of it(terrytao.wordpress.com ↗)
    207comments
  18. What Zig felt like, coming from Rust(besok.github.io ↗)
    145comments
  19. Suzanne Ciani's Buchla Cookbook(echo.orpheusinstituut.be ↗)
    discuss
  20. Asking Authors About Their Own Papers(medium.com/tmlrorg ↗)
    50comments
  21. You can run Git on object storage if you re-make packfiles(tigrisdata.com ↗)
    29comments
  22. Saving another 100TB of RAM(cloudflare.com ↗)
    93comments
  23. Communication by means of modulated Johnson noise(pnas.org ↗)
    23comments
  24. SDCC – Small Device C Compiler(sourceforge.net ↗)
    26comments
  25. How OpenAI Used Its Own LLMs to Design Its Jalapeño Chip(ieee.org ↗)
    123comments
  26. Adventures in Microcontroller Circuit Debugging(bigmessowires.com ↗)
    1comments
  27. Ray Ozzie and the Optimism of Being Early(reproof.app ↗)
    20comments
  28. Science Is Open Software(jepedersen.dk ↗)
    53comments
  29. OpenJev(openjev.com ↗)
    285comments
  30. Why building a Rust LSP is hard(rust-glancer.github.io ↗)
    52comments

Show HN: How to Get a Fable CoT for the Jacobian Conjecture Refutation

7 pointsby 2mo ago
2 comments
Since the publication of the Jacobian Conjecture refutation, many people have asked for a Chain of Thought to be published so they can better understand the mathematical intuition that leads to the counterexample.

Since none was published, I tried to "clean room reverse engineer" it: give one Claude Fable the result and ask it to generate a writeup of how to arrive at it without any spoilers, then ask a second Fable to follow the write up, if it's too easy remove details, if it's too hard add hints. I could have simplified further, I stopped because it's time to sleep, and I'm sharing because it gave me some intuition for what's going on.

This is what a successful run looks like (sadly Anthropic hide Chains of Thought):

https://claude.ai/share/80526d56-1c23-407d-8f5c-59a704221454

## Intuition

This is my understanding of the interesting ideas (probably too summarized for Fable to consistently get it without a good harness; take with a grain of salt, I'm not a mathematician; later there is a full prompt that was tested and contains everything needed):

* No Bass–Connell–Wright or Drużkowski normal forms (those are reparametrizations that feel natural in this search but they turn low-complexity examples into high-complexity by trading off degree vs dimension, and the counterexample is low complexity)

* Look in C^3, not C^2, C^2 is probably not interesting enough

* Look for a 3:1 cover, not 2:1, there's some result due to Euler (as always) that shows 2:1 will not work

* Look for a composition of two functions (a ratio of polynomials and a shear) that have Jacobian determinants `x` and `c/x` everywhere, except at `x=0` (do the standard trick for not defining at a hole and shoving all the problems into that one hole, that's where the `1 + xy` comes from)

## Prompt for reproducing CoT

Here: https://gist.github.com/SonOfLilit/8882a145048ba260b160568ba...

2mo agoHN ↗

cool, i was also hoping for this. However, you are not a mathematician so how did you come up with the prompt? it seems extremely dense

2mo agoHN ↗

I understand basic multivariate calculus (almost every STEM degree teaches it, and I paid attention), which is enough to understand the problem if not every detail about the solution, so I can partially follow what Fable is doing and guess whether it gets too sidetracked.

But the main loop was to show Fable the solution, ask it for a prompt that would get a clean context Fable to find a solution, run it, if it works ask the first Fable to remove details, if it doesn't quote a status report and ask it where the clean Fable went askew and to edit the prompt to prevent that.