I have a list of numbers which form a series. I want to find the equation which can regenerate the same series. Is this possible? Also, what would you recommend to program it (GA, GP, etc). Please give an example.
Is this possible to find equation of a series using genetic programming?
1.7k Views Asked by Nabeel At
1
There are 1 best solutions below
Related Questions in ALGORITHM
- Two different numbers in an array which their sum equals to a given value
- Given two arrays of positive numbers, re-arrange them to form a resulting array, resulting array contains the elements in the same given sequence
- Time complexity of the algorithm?
- Find a MST in O(V+E) Time in a Graph
- Why k and l for LSH used for approximate nearest neighbours?
- How to count the number of ways of choosing of k equal substrings from a List L(the list of All Substrings)
- Issues with reversing the linkedlist
- Finding first non-repeating number in integer array
- Finding average of an array
- How to check for duplicates with less time in a list over 9000 elements by python
- How to pick a number based on probability?
- Insertion Sort help in javascript -- Khan Academy
- Developing a Checkers (Draughts) engine, how to begin?
- Can Bellman-Ford algorithm be used to find shorthest path on a graph with only positive edges?
- What is the function for the KMP Failure Algorithm?
Related Questions in MATH
- bc: prevent "divide by zero" runtime error on multiple operations
- How to round smoothly percentage in JS
- Calculate if trend is up, down or stable
- How to pick a number based on probability?
- Python 2.7 - find combinations of numbers in a list that add to another number
- How to translate an object to a location slowly (so that it can be seen)
- max() implemented with basic operators
- Matlab: how to fit time series with a funcion of a certain type
- 3D B-Spline approximation
- Issues with adding doubles. Arithmetic Coding
- Calculate new position post rotation
- Javascript: PI (π) Calculator
- How to compute a^^b mod m?
- Need Custom Query in SQL Server
- Number of divisiors upto 10^6
Related Questions in GENETIC-ALGORITHM
- Multiple differing views of the same list
- Why is there only one hidden layer in a neural network?
- Project Euler 461 - Genetic Algorithm
- Sorting based on two variables in python
- Why more than one chromosome per solution (or genotype)?
- Genetic algorithm selection and crossover questions
- How to plot XY graph in Genetic Algorithm in Java
- Matlab optimtool: setting different bounds to different integer variable indices
- Two way constraint distribution optimization in R
- Is there a standard method to replacing the DEAD in a Genetic Algorithm?
- Python Genetic Algorithm - Why Isn't This Working?
- Genetic learn fuzzy systems
- Need program to automatically find number X using basic mathematical operations and 6 random numbers
- Genetic Algorithm Approximating Images with Polygons - Fitness Calculating
- Genetic Algorithm - Order of variables in a chromosome
Related Questions in GENETIC-PROGRAMMING
- Genetic Algorithm - convergence
- Genetic Algorithm - Order of variables in a chromosome
- Max Fitness stuck at local maxima in genetic algorithm implementation
- How to apply test functions to genetic algorithm
- Can standard representation trees in genetic programming (GP) contain operators such as if then?
- Lua 3 point crossover help to start
- Crossover technique in a genetic algorithm
- How to replace random parts of string with random keys from array?
- Error in compiling c++ program in Visual Studio 2010
- Genetic Programming and Search Algorithms
- Is this possible to find equation of a series using genetic programming?
- Has anyone tried to compile code into neural network and evolve it?
- Crossover function of two vector error
- Linear genetic programming: fitness function for string output
- Error in cor(exprs(gse), use = "c") : no complete element pairs
Related Questions in SERIES
- How to count distance to the previous zero in pandas series?
- How to auto-fill a simple excel formula down an entire column
- Why do Chart Stacked Columns show up as thin lines?
- Pandas Series of lists to one series
- Highcharts: automatically give a highlite backgroundcolor to one series item like in the hover state
- Calculating Percent Change with Missing Dates (time series)
- Dictionary lookup causing objects are mutable, thus they cannot be hashed error
- Python: convert series object columns in pandas dataframe to int64 dtype
- insert series into postgreSQL
- how to insert a date series in postgreSQL
- Append to Series in python/pandas not working
- Data cleaning: How to index a Series value and deal with duplicate values indices in Python?
- Using if/else in pandas series to create new series based on conditions
- Date class vector to fill missing time series dataframe R
- Count num of occurrences by value in a Pandas series
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You may take a look at project Eureqa
The software is designed to find least squares approximations for series of data. If your series can be exactly described as a function, you'll probably find it. Eureqa uses genetic algorithms, and in the web page there are a few references to papers and articles.
Below you may see the results (from my machine) for a series formed as 3*x^2+4 running on Eureqa:
Post Scriptum:
Regrettably the software isn't free anymore :(