I'm having trouble solving the following equality: $$x^5 + 25x^4 + 250x^3 + 1250x^2 + 3124x + 3120 $$ $$=$$ $$ax^5 + (b+c)x^4 +(10c+3d)x^3 + (d(b+c))x^2 + (24a+62d)x + 104e$$
It's supposed to end up in an augmented matrix form, so I can solve it with gaussian elimination and the likes, but it has been forever since I've dealt with this. Any tips on how to begin? I also couldn't think of more relevant search topics, so I apologize.
I recall something to do with, instead of just equating the coefficients of the terms with the same exponents, I should instead factor out the variables I want to find out. So I did that, but couldn't go much further.
I don't think this'll turn up linear immediately because of the $d(b+c)$ term. If you have to end up with some kind of linear system in matrix form, you could do this:
First off, notice that $b+c = 25$ by equating the $x^4$ coefficients. Then leave the $b+c$ with the $x^4$ untouched, but change $d(b+c)$ to $25d$.
If you now want a matrix-form of this system, I suppose you could plug in $5$ values of $x$ in both sides, and then write that out.
For example taking $x = 1 $ in both sides leads to $7770 = 25 a+b+11 c+90 d+104 e $, so the first row of your matrix would be $\left(25,1,11,90,104\right)$.
$$ \begin{pmatrix} 25 & 1 & 11 & 90 & 104 \\ ? & ? & ? & ? & ? \\ ? & ? & ? & ? & ? \\ ? & ? & ? & ? & ? \\ ? & ? & ? & ? & ? \end{pmatrix} \begin{pmatrix} a \\ b \\ c \\ d \\ e \end{pmatrix} = \begin{pmatrix} 7770 \\ ? \\ ? \\ ? \\ ? \end{pmatrix} $$
Spoiler: