Alographite for the analysis of a series

Is there an algorithm that can find a recursive relation that causes a given series?

For instance:

Series: 1, 3, 7, 15, 31, 63, 127

Enter this series in the algorithm, and it will recognize the โ€œmost meanโ€ (or one of the most mean) repetition relationships. In my example, the equation

x(t+1) = x(t)*2 + 1

+4
source share
1 answer

Definitely not. In the general case, this problem rises to the Kolmogorov complexity problem, which is incomputable in terms of the theory of algorithms.

Maybe if you add conditions for your function (for example, it is a polynomial with discrete coefficients and powers) - then you will have a chance.

+2
source

Source: https://habr.com/ru/post/1497235/


All Articles