cmkluza said:
Homework Statement
Consider the polynomial ##p(x) = x^4 + ax^3 + bx^2 + cx + d##, where a, b, c, d ∈ ℝ.
Given that 1 + i and 1 - 2i are zeroes of p(x), find the values of a, b, c and d.
Homework Equations
The Attempt at a Solution
Since 1 + i and 1 - 2i are zeroes, I believe it follows that 1 - i and 1 + 2i should also be zeroes, right? Hence, plugging in 1 + i, 1 - i, 1 + 2i, 1 - 2i should produce equations that equal 0, assuming I'm remembering the factor theorem correctly. But, I'm not sure where to go from there. Solving this through brute force would be ridiculous and inefficient, but I can't think of how else I can solve this. Anyhow, I plugged in the factors and got the following equations, I just don't know what to do with them:
##p(1 + i) = (-4 - 2a + c + d) + (2a + 2b + 2c)i = 0##
##p(1 - i) = (-4 - 2a + c + d) - (2a + 2b + 2c)i = 0##
##p(1 + 2i) = (-7 - 11a - 3b + c + d) + (-24 - 2a + 4b + 2c)i = 0##
##p(1 - 2i) = (-7 - 11a - 3b + c + d) - (-24 - 2a + 4b + 2c)i = 0##How can I solve for these variables efficiently?
As HallsofIvy has explained, you do not need to solve any equations at all, but if you wanted to, you would start with the 4x4 system obtained by equating all real and imaginary parts to zero:
\begin{array}{lcrl}<br />
-4 - 2a + c + d &=&0&(\text{real part of }\;p(1+i) )\\<br />
2a + 2b + 2c &=& 0 & (\text{imag. part of }\;p(1+i) )\\<br />
-7 - 11a - 3b + c + d &=&0 & (\text{real part of }\;p(1+2i) )\\<br />
-24 - 2a + 4b + 2c&=& 0 &(\text{imag. part of }\;p(1+2i) )<br />
\end{array}<br />
The standard way to solve such problems is to use Gaussian elimination, which in this case would work as follows.
Pick one equation and solve for one of the variables in it, in terms of the other variables. For example, we can solve for ##d## in terms of ##a## and ##c## from the first equation: ##d = 4 + 2a - c##. Substituting that expression for ##d## into the other equations (and simplifying) gives a new system of 3 equations in three unknowns:
\begin{array}{rcr}<br />
2a + 2b + c &=& 0 \\<br />
9a + 3b &=& -3 \\<br />
-2a + 4b + 2c &=& 24<br />
\end{array}
Now do it again: pick one of the equations and solve for one variable in terms of the others; then substitute the result into the remaining two equations, leaving 2 equations in two unknowns. For example, we could solve for ##c## from the first equation above, giving ##c = -2a - 2c##, and putting that into the next two equations leaves 2 equations in the two variables ##a,b##. Then do it again, until you are left with one equation in 1 unknown. After solving for that unknown, you can back-substitute the result into your final substitution formula, to obtain both of your final variables. In other words, you would now know ##a## and ##b## both. Then back-substitute into your ##c##-formula to get the value of ##c##. Finally, put the known values of ##a,b,c## into your ##d##-formula to determine the value of ##d##.
Of course, you can "automate" a lot of that by using matrices and so forth, but the basics are really no different from what I just described. And, believe it or not, that really is the "go-to" method used in dealing with 99% of such problems, even for real-world versions of such instances that often reach thousands of equations in thousands of unknowns in industrial applications.