My Mathematical Regression(blog.dahl.dev)
321 points by aleda145 4 days ago | 121 comments
tl;dr: The author rediscovered a 10-year-old Project Euler repo and found that Problem 15 (counting lattice paths in a grid) was solved not with code but with a text file recognizing the answer as the binomial coefficient (2n choose n). They reflect that today they'd reach for brute force, memoization, or just hand it to an AI, lamenting the loss of the mathematical intuition their student self once had.
HN Discussion:
  • Simplicity-seeking thinkers like the student-author are valuable but often undervalued in industry
  • Provides intuitive explanation/derivation of the 2n choose n formula to support the solution
  • Pattern recognition without proof isn't real math; the student solution was hand-wavy and potentially dangerous
  • The dynamic programming approach is actually better because it generalizes to more complex variations
  • ~This isn't really about AI—it's a normal phenomenon of atrophied skills, and AI use is optional