I have an interesting problem. Say I have lots of datasets like this:
a = 21
b = 23
c = 58
d = 498
etc (lots of other values)
X = 85
I need to find the formula that derives X from a, b, c, d etc, with the added complication that I don't know whether all of the values affect X or whether some have no effect on it. Is there a generic method to do that?
I do not have the ability to vary a, b, c and d and check the derived value of X; however, I have a huge amount of these datasets (combinations of values and the resulting X) to look at. I have some programming skills, so I am able to analyse all of these datasets using an algorithm, but I have literally no idea what that algorithm should be. Any help would be appreciated.
Note: I am new to this site, and don't know which tags to use, so feel free to retag this.
EDIT: Each dataset contains the same amount of numbers, and the positions are fixed, i.e. 'a' of one dataset corresponds to the 'a' in others.
What you are asking for is an algorithm that, given an arbitrary sequence of numbers, outputs the next number in the sequence. But there is no way to determine what the next number should be. In fact, a sequence is defined by giving all of its terms, so any number could be next.
– Servaes Jun 01 '14 at 12:56