How would one go about solving a system of homogeneous univariate polynomials. For instance,
$$a_1x^4+ ax^3 + bx^2 + cx = 0 $$ $$d_1x^4 +dx^3 + ex^2 + fx= 0 $$ $$g_1x^4 +gx^3+hx^2 + ix = 0$$ $$l_1x^4 + lx^3+ mx^2+ nx =0. $$ I am interested in non-trivial solutions over $\mathbb{C}.$
$x=0$ is an obvious solution. To look for others, divide the equations by $x$ then eliminate $x^2$ between the first two:
$$0=d(ax^2+bx+c)-a(dx^2+ex+f)=(bd-ae)x+(cd-af)$$
If $bd-ae \ne 0$ then the above implies $x=\frac{af-cd}{bd-ae}$. Substitute this solution back into the $3$ original equations. If it satisfies them, then that's the unique non-$0$ solution. Otherwise there are no non-$0$ solutions.
If $bd-ae = 0$ then if $cd-af \ne 0$ there are no no non-$0$ solutions. Otherwise if $cd-af=0$ the first two equations are identical but for a multiplicative factor. Drop one of them, then repeat the steps above for the remaining two equations.