Solving a system of equations for four variables

In summary, the author attempted to solve the equation p(x) = x^4 + ax^3 + bx^2 + cx + d using brute force, but was not able to do so efficiently.
  • #1
cmkluza
118
1

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?
 
Physics news on Phys.org
  • #2
If you know all the factors you know the equation.
 
Last edited:
  • #3
epenguin said:
If you know all the factors you know the equation.
... oh yeah.

##[x - (1 + i)][x - (1 - i)][x - (1 + 2i)][x - (1 - 2i)] = p(x)##
Don't have pen and paper handy at the moment, but if I get a chance I'll add what the algebra comes out to later.

Thanks for your help!
 
  • #4
cmkluza said:
... oh yeah.

##[x - (1 + i)][x - (1 - i)][x - (1 + 2i)][x - (1 - 2i)] = p(x)##
Don't have pen and paper handy at the moment, but if I get a chance I'll add what the algebra comes out to later.

Thanks for your help!

Try to think of a quick way to do that expansion. Don't just multiply all those things together!
 
  • #5
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?
It has already been explained that you do NOT need to solve these equations- but since you asked:
Separating real and imaginary parts, the first two equation both give -4- 2a+ c+ d= 0 or -2a+ c+ d= 4 and 2a+ 2b+ 2c= 0 or a+ b+ c= 0 and the last two both give -7- 11a- 3b+ c+ d= 0 or -11a- 3b+ c+ d= 7 and -24- 2a+ 4b+ 4c= 0 or -a+ 2b+ 2c= 24 so we still have four equations in four unknowns.

If we subtract 2 times a+ b+ c= 0 from -a+ 2b+ 2c= 24, we get -3a= 24 so a= -8. Then, from -2a+ c+ e= 4, c+ d= -12 and -11a- 3b+ c+ d= 88- 3b- 12= 7 so 3b= 88-12- 7= 69 and b= 23. a+ b+ c= -8+ 23+ c= 0 so c= 8- 23= -15. Finally -15+ d= -12 so d= 15- 12= 3.
 
  • #6
PeroK said:
Try to think of a quick way to do that expansion. Don't just multiply all those things together!

Yes, you can do it in your head.
 
  • #7
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:
[tex] \begin{array}{lcrl}
-4 - 2a + c + d &=&0&(\text{real part of }\;p(1+i) )\\
2a + 2b + 2c &=& 0 & (\text{imag. part of }\;p(1+i) )\\
-7 - 11a - 3b + c + d &=&0 & (\text{real part of }\;p(1+2i) )\\
-24 - 2a + 4b + 2c&=& 0 &(\text{imag. part of }\;p(1+2i) )
\end{array}
[/tex]
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:
[tex] \begin{array}{rcr}
2a + 2b + c &=& 0 \\
9a + 3b &=& -3 \\
-2a + 4b + 2c &=& 24
\end{array} [/tex]
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.
 
  • #8
Ray, I wasn't the one who said that he did not need to solve the equations- that was epenguin. What I did was show how to solve the four equations.
 
  • #9
HallsofIvy said:
Ray, I wasn't the one who said that he did not need to solve the equations- that was epenguin. What I did was show how to solve the four equations.

Yes, you are right. My apologies to epenguin.
 
  • #10
epenguin said:
Yes, you can do it in your head.
Not seeing how to do it in my head...

What I've done is let (x - 1) = y, making it slightly more simple to do:

##(y + i)(y - i)(y + 2i)(y - 2i)##
##(y^2 + 1)(y^2 + 4) = y^4 + 5y^2 + 4##
##(x - 1)^4 + 5(x - 1)^2 + 4##
##x^4 - 4x^3 + 11x^2 - 14x + 10##
Hastily done, so anticipate algebraic mistakes. What's the intuition used to figure the answer in my head?
 
  • #11
cmkluza said:
Not seeing how to do it in my head...

What I've done is let (x - 1) = y, making it slightly more simple to do:

##(y + i)(y - i)(y + 2i)(y - 2i)##
##(y^2 + 1)(y^2 + 4) = y^4 + 5y^2 + 4##
##(x - 1)^4 + 5(x - 1)^2 + 4##
##x^4 - 4x^3 + 11x^2 - 14x + 10##
Hastily done, so anticipate algebraic mistakes. What's the intuition used to figure the answer in my head?

My idea was just to use the fact that ##(x - z)(x - z^*) = x^2 - 2Re(z) + |z|^2##. Then you can simply write:
##p(x) = (x^2 - 2x +2)(x^2 -2x + 5)##

Although, I couldn't finish it off in my head.
 
  • #12
cmkluza said:
What's the intuition used to figure the answer in my head?

It is exactly what you have done. That is, regrouping so as to use the formula (A + B)(A - B) = A2 - B2.

I really meant only someone could reasonably get as far as the real quadratic factors that way in their head; after that it might be less easy to remember in the head as you multiplied that out. Slightly useful but not to worry either way, not make any of it it a must or a test. :oldsmile:
 
  • #13
cmkluza said:
Not seeing how to do it in my head...

What I've done is let (x - 1) = y, making it slightly more simple to do:

##(y + i)(y - i)(y + 2i)(y - 2i)##
##(y^2 + 1)(y^2 + 4) = y^4 + 5y^2 + 4##
##(x - 1)^4 + 5(x - 1)^2 + 4##
##x^4 - 4x^3 + 11x^2 - 14x + 10##
Hastily done, so anticipate algebraic mistakes. What's the intuition used to figure the answer in my head?


Remember: ##(x-a)(x-b) = x^2 -(a+b) x + ab##, so coefficient of x is minus the sum of the roots and the constant is the product of the roots. So, if you combine complex-conjugate pairs, you get ##(x-1-i)(x-1+i) = x^2 -2x + (1+i)(1-i) = x^2 - 2x + 2## and ##(x-1+2i)(x-1-2i) = x^2 -2x + (1+4) = x^2 + 2x + 5##. You could get that far in your head, but expanding the product of these two quadratics in your head is a bit challenging. (However, in your head you could evaluate and write down the coefficients one-by-one if you really wanted to.)
 
  • #14
Uhh guys..? Can't we just use the theory of equations? Isn't the sum of all the roots -a, products taken two at a time b and products taken three at a time c... followed by products taken four at a time giving -d?
 
  • #15
CrazyNinja said:
Uhh guys..? Can't we just use the theory of equations? Isn't the sum of all the roots -a, products taken two at a time b and products taken three at a time c... followed by products taken four at a time giving -d?

Yes you can do that. Better! :approve:
 
  • Like
Likes CrazyNinja

1. How many equations do I need to solve a system of equations for four variables?

To solve a system of equations for four variables, you need at least four equations. This is because there needs to be one equation for each variable in order to find a unique solution.

2. Can I solve a system of equations for four variables without using matrices?

While using matrices can make solving a system of equations for four variables more efficient, it is possible to solve it without using matrices. However, it may be more time-consuming and complex.

3. What is the most common method for solving a system of equations for four variables?

The most common method for solving a system of equations for four variables is the elimination method. This involves eliminating one variable at a time by combining equations and solving for the remaining variables.

4. How do I know if a system of equations for four variables has a unique solution?

A system of equations for four variables has a unique solution if there is a set of values for each variable that satisfies all of the equations. This can be determined by solving the system and checking if the values satisfy all of the equations.

5. Can a system of equations for four variables have no solution or infinite solutions?

Yes, a system of equations for four variables can have no solution or infinite solutions. This occurs when the equations are contradictory or dependent, respectively. In these cases, there is no unique solution for the system of equations.

Similar threads

  • Precalculus Mathematics Homework Help
Replies
4
Views
834
  • Precalculus Mathematics Homework Help
Replies
12
Views
461
  • Precalculus Mathematics Homework Help
Replies
6
Views
674
  • Precalculus Mathematics Homework Help
Replies
3
Views
1K
  • Precalculus Mathematics Homework Help
Replies
1
Views
685
  • Precalculus Mathematics Homework Help
Replies
13
Views
2K
  • Precalculus Mathematics Homework Help
Replies
4
Views
920
  • Precalculus Mathematics Homework Help
Replies
7
Views
915
  • Precalculus Mathematics Homework Help
Replies
16
Views
604
  • Precalculus Mathematics Homework Help
Replies
18
Views
549
Back
Top