Take two polynomials, say and . Do they share a root? You could factor both: and , and spot the common factor . That works fine for small, tidy examples.
But factoring is not always an option. What if the coefficients are symbolic, or the polynomials have degree 20? You need a way to answer "do they share a root?" using nothing but the coefficients themselves — arithmetic, not guesswork.
That is exactly what the resultant does. Build a certain matrix from the coefficients of and — the Sylvester matrix — take its determinant, and the result is a single number: the resultant . It is zero if and only if and share a root (over the complex numbers). No factoring, no root-finding — just arithmetic on the coefficients.
Comments
Loading comments...