this post was submitted on 09 Feb 2025
5 points (77.8% liked)

Programming

264 readers
2 users here now

Welcome to the Lemmygrad programming community! This is a space where programmers of all levels can discuss programming, ask for help with problems, and share their personal programming projects with others.


Rules

  1. Respect all users, regardless of their level of knowledge in programming. We're here to learn and help each other improve.
  2. Keep posts relevant to programming and related topics.
  3. Respect people's personal preferences. If you disagree with someone's choice of programming language, method of formatting code, or anything else, don't attack the poster. Genuine criticism is fine, but personal attacks are not.
  4. In order to promote breaks from typing, all code snippets must be photos of code written on paper.
    Just kidding :), please use proper markdown code blocks.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] cfgaussian@lemmygrad.ml 3 points 1 month ago* (last edited 1 month ago) (1 children)

Idk about Barliman but just logically speaking, why would it generate a prime number lookup when a parabola (or even an exponential) fits those values just as well? Apart from an AI using pattern matching to recognize that the inputs being given "look like" a list of primes (in which case the AI is just going to be outputting someone else's pre-programmed prime number generating algorithm, not one that it came up with itself), the problem with inputting any N number of data points and asking for the function that generated them is that there is always ambiguity, and the simplest solution conceptually will just be an N-1 order polynomial.

[–] kredditacc@lemmygrad.ml 3 points 1 month ago (3 children)

Well just add more data points (7, 11, 13, etc) until the simplest solution is a prime solution. Would this program be smart enough to generate the right algorithm?

Of course, an AI would just generate a prime algorithm because it's well known, but not all problems are well known. In fact, most problems I'm solving everyday are not. So for the AI, it may as well be the prime lookup problem for Barliman.

[–] cfgaussian@lemmygrad.ml 3 points 1 month ago* (last edited 1 month ago)

That's the problem with "AI" isn't it? At least at the stage it is today. It can only really solve the kinds of problems that have already been solved. Maybe with some variations in the parameters, but the general structure of a problem needs to be one that it has already encountered in its training.

[–] Collatz_problem@hexbear.net 3 points 1 month ago* (last edited 1 month ago)

If we define "the simplest solution" as "the solution with the shortest program computing it", then this problem is literally uncomputable, because it is equivalent to the halting problem. Moreover, it is proven that there is no algorithm that can in general case achieve results meaningfully better than "print the number from the lookup table".

[–] cfgaussian@lemmygrad.ml 2 points 1 month ago* (last edited 1 month ago)

Well just add more data points (7, 11, 13, etc) until the simplest solution is a prime solution.

As i said, i don't know anything about this program, but conceptually i think you first need to define what you mean by "simplest solution". Because at least for me a polynomial is the simplest solution regardless how many data points there are because then the problem is reducible to a set of linear equations that a computer can easily solve.

However if we specify that the solution needs to be one with the lowest number of parameters possible, then it gets interesting. Then you can have an algorithm start to iteratively test solutions, and try to reduce complexity until it hopefully arrives at something resembling a prime number generator. Or it may not. I don't know if this is even possible because one well known problem with the "gradient descent" approach is that your algorithm can get stuck in a local valley. It thinks it's found the optimal solution but it's stuck in a false minimum because it does not have the "imagination" to start to test an entirely different class of solutions that may at first be much less efficient.