Note: This question is actually for help writing a computer program, but the math is where I'm having difficulty, so I think it best to ask here.
My goal is to transform an equation with this format (numbers chosen at random for example):
Sum(x = 0 to 5) of [(1 + xy)(10 + 5^x)] = 100
into an equation without the x variable (so that the aforementioned computer program can solve it). I know it's possible to do so, because plugging it into Wolfram Alpha yields an alternate form of 18705 y + 3966 = 100.
I need to know how to make the first equation into the second one. My instinct was to begin by making the first equation into [Sum(x = 0 to 5) of (1 + xy)] *
[Sum(x = 0 to 5) of (10 + 5^x)] = 100, but after many failed attempts to achieve the correct result, realized that that is not equivalent to the first equation :)
Thanks in advance!