Jump to content

Complex Polynomials and roots


BlakeJA@

Recommended Posts

I was asked this question and it has stumped me for a week so i figured i'd come ask you all to see if anyone knows how to solve it.

 

let p(z) = z^n + iz^(n-1) - 10

 

if wi are the roots of this polynomial where i= 1,2,3,...,n

 

Compute:

 

Sum(wj) from j=1 to n

Product(wj) from j=1 to n

 

where sum is capital Sigma (summation)

and product is capital pi (product)

and the j is a subscript

and Z is a complex number

Link to comment
Share on other sites

Expanding

(z-w0)*(z-w1)*(z-w2)* ...*(z-wn-1) = z^n -(w0+w1+w2+w3 ....+wn-1)z^(n-1) + (-1)^n*(w0*w1*w2*... *wn-1)

 

with all other coefficients of z less than n-1 being zero.

 

equating coefficents

 

i = -(w0+w1+....+wn-1)

-10 = (-1)^n* (w0*w1*w2*...wn-1)

 

therefore sum of roots = -i, product = -10 if n is even or +10 if n is odd

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.