Question

PLEASE USE PYTHON CODE 11. Find all zeros of given Pn(x) P5(x) = x^5 -156x^4 -5x^3...

PLEASE USE PYTHON CODE

11. Find all zeros of given Pn(x)

P5(x) = x^5 -156x^4 -5x^3 +780x^2 + 4x - 624

Homework Answers

Answer #1

Hey, This can be done easily with Numpy.

import numpy as np

p = np.poly1d([1, -156, -5,780,4,-624]) 
#we define polynomial by passing it's coefficients in poly1d function which is inbuilt in numpy. 

print(p) #Now, I have printed the polynomial just to check if the polynomial is right or not.

root=p.r #Now finding roots of the polynomial and storing it in root variable.

print(root) #Now print root

Cheers !! If you have any problem or if you want to solve from any other method name it. I will solve it. Please Upvote

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Find all zeros of the polynomial function given below.5x^5-51x^4+155x^3-229x^2+540x-100
Find all zeros of the polynomial function given below.5x^5-51x^4+155x^3-229x^2+540x-100
1.Determine all the zeros and their multiplicities of the polynomial function f(x) = x 5 −...
1.Determine all the zeros and their multiplicities of the polynomial function f(x) = x 5 − 6x 3 + 4x 2 + 8x − 16 2. Find all the zeros of the function f(x) = x 5 − 4x 4 + x 3 − 4x 2 − 12x + 48 given that −2i and 4 are some of the zeros.
find all real zeros if the function P(x)=2x^4-x^3-4x^2+10x-4 i know all possible zeros are + or...
find all real zeros if the function P(x)=2x^4-x^3-4x^2+10x-4 i know all possible zeros are + or - 1, +- 1/2, +-2, +-4 im not sure how to do this and show the work
The fourth degree polynomial x^4-5x^3+5x^2+5x-6 has four different zeros. If two of the zeros are 1...
The fourth degree polynomial x^4-5x^3+5x^2+5x-6 has four different zeros. If two of the zeros are 1 and 2, what are the other two zeros?
use the given zero to find the remaining zeros of the function h(x)=6x^5+7x^4+108x^3+126x^2-1050x-1225 zeros -5i
use the given zero to find the remaining zeros of the function h(x)=6x^5+7x^4+108x^3+126x^2-1050x-1225 zeros -5i
1. Let f(x)=−x^2+13x+4 a.Find the derivative f '(x) b. Find f '(−3) 2. Let f(x)=2x^2−4x+7/5x^2+5x−9, evaluate...
1. Let f(x)=−x^2+13x+4 a.Find the derivative f '(x) b. Find f '(−3) 2. Let f(x)=2x^2−4x+7/5x^2+5x−9, evaluate f '(x) at x=3 rounded to 2 decimal places. f '(3)= 3. Let f(x)=(x^3+4x+2)(160−5x) find f ′(x). f '(x)= 4. Find the derivative of the function f(x)=√x−5/x^4 f '(x)= 5. Find the derivative of the function f(x)=2x−5/3x−3 f '(x)= 6. Find the derivative of the function g(x)=(x^4−5x^2+5x+4)(x^3−4x^2−1). You do not have to simplify your answer. g '(x)= 7. Let f(x)=(−x^2+x+3)^5 a. Find the derivative....
4. Use the “zero” utility of your calculator to determine the zeros of f(x) = x^2...
4. Use the “zero” utility of your calculator to determine the zeros of f(x) = x^2 + 5x - 10 (round to the nearest tenth if necessary). 5. What are the zeros of the polynomial f(x) = x^4 (x-2)^2 (x+1)? Tel whether each zero is odd or even. 7. Use synthetic division to determine if k = -3 is a zero of f(x) = 2x^3 + 13x ^2 + 30x + 25. Give the answer as “yes” or “no”. Show...
f(x)=x^3+8x^2+14x+4 (given that -2 is a zero) find all zeros of the polynomial function
f(x)=x^3+8x^2+14x+4 (given that -2 is a zero) find all zeros of the polynomial function
5. All the real zeros of the given polynomial are integers. Find the zeros. (Enter your...
5. All the real zeros of the given polynomial are integers. Find the zeros. (Enter your answers as a comma-separated list. Enter all answers including repetitions.) P(x) = x4 − 13x2 + 36 x = Write the polynomial in factored form. P(x) = 15. All the real zeros of the given polynomial are integers. Find the zeros. (Enter your answers as a comma-separated list. Enter all answers including repetitions.) P(x) = x3 + 5x2 − x − 5 x =...
1. Find all rational zeros of the polynomial, and then find the irrational zeros, if any....
1. Find all rational zeros of the polynomial, and then find the irrational zeros, if any. Whenever appropriate, use the Rational Zeros Theorem, the Upper and Lower Bounds Theorem, Descartes' Rule of Signs, the Quadratic Formula, or other factoring techniques. (Enter your answers as comma-separated lists. Enter all answers including repetitions. If an answer does not exist, enter DNE.) P(x) = 2x4 + 7x3 − 6x2 − 7x + 4 rational zeros x = irrational zeros x =   2. A...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT