Original Post
Okay guys. Seems I am having another bit of trouble reasoning this one out. I have 100 different data points. Each one has 20 parameters, and 1 result. I am trying to find the best correlation between these parameters and the results. It is possible that some of these parameters have no input on the result. I think I can best identify the equations as: (P1 is parameter 1, P2 is parameter 2, etc) (a)*P1^[a1] + (b)*P2^[b1] + ... + (t)*P20^[t1] = N Example: a*15^[a1] + b*5^[b1] + ... + t*16^[t1] = 142.7 Now, I can fill in P1 -> P20 for all datapoints. I know N for each equation. Is it possible for me to solve for all the other variables? There seem to have 40 independent variables to me -- and I have well over 40 datapoints (100, to be exact). This should be more than enough to solve it, right? Can I write this programmatically (probably using a language like SML)? I am a bit rusty on my math. Initially I thought the problem didn't have the ^[a1] -> ^[t1] and I was just going to use a substitution method to solve for a->t. But now with the ^[a1] through ^[t1], I think I am out of my league. Any ideas? Thanks Corey