Original Post
I've written a brute force equation generator that accepts possible integer inputs, integer constants, and operators and uses them to generate an equation that outputs the given answers. This is very slow though, and i figured that there had to be some other method that could generate equations quicker or try to reason a way to a possible equation. The information i found on generating equations for already known data was on how to fit an equation to a graph using polynomials, or was on "learning algorithms" that were meant to mimic a brain (seems daunting for just an equation generator). Does anyone know of a fast (non brute force) equation generation algorithm for integer data, or maybe even a method where the program can reason it's way to an equation?