(2) Use the function to evaluate (a) P₁(x) = x³+x² + 5x + 1 at x = 2. (b) P₂(x) = 5 − x² at x = √√3. Are these answers exact? Explain why or why not.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Python coding. Do number (2)

 

(1) Write a function which takes a list of the coefficients of a polynomial
P(x) = @o+ @l® +a+…+an n
of arbitrary degree n, and a value of xo, and returns P(xo). You can use the function given in lectures,
ensuring you understand how it works.
(2) Use the function to evaluate
(a) P₁(x) = x³ + x² + 5x + 1 at x = 2.
(b) P₂(x) = 5x² at x = √√3.
Are these answers exact? Explain why or why not.
(Use a print statements to show the evaluation of your function, and answer the question in a comment.)
(3) The Maclaurin series for the natural logarithm ln(1 + x) is given by
ln(1 + x) = Σ(−1)¹+¹ 5
n
n=1
x
2
OR
+
2
3
for all x. Use the first five terms in this series in the Horner evaluation function at a suitable value of x to give
an approximation of In 3/2.
(4) (a) Use your Horner's method function to evaluate the polynomial (x − 2)¹ at the point x = 2.0001.
(b) Is this answer correct?
(c) Give brief reasoning for this answer.
(5) In week 3 we wrote a function to convert from binary to decimal. The efficiency of this function can be
improved using the same principle as Horner's method. Write such a function (horner_ternary_to_dec)
using the ideas of Horner's method which takes a list containing Os, 1s and 2s (representing a base-3
number) and returns the corresponding decimal integer (so the input [1,2,0] returns the integer 15).
Transcribed Image Text:(1) Write a function which takes a list of the coefficients of a polynomial P(x) = @o+ @l® +a+…+an n of arbitrary degree n, and a value of xo, and returns P(xo). You can use the function given in lectures, ensuring you understand how it works. (2) Use the function to evaluate (a) P₁(x) = x³ + x² + 5x + 1 at x = 2. (b) P₂(x) = 5x² at x = √√3. Are these answers exact? Explain why or why not. (Use a print statements to show the evaluation of your function, and answer the question in a comment.) (3) The Maclaurin series for the natural logarithm ln(1 + x) is given by ln(1 + x) = Σ(−1)¹+¹ 5 n n=1 x 2 OR + 2 3 for all x. Use the first five terms in this series in the Horner evaluation function at a suitable value of x to give an approximation of In 3/2. (4) (a) Use your Horner's method function to evaluate the polynomial (x − 2)¹ at the point x = 2.0001. (b) Is this answer correct? (c) Give brief reasoning for this answer. (5) In week 3 we wrote a function to convert from binary to decimal. The efficiency of this function can be improved using the same principle as Horner's method. Write such a function (horner_ternary_to_dec) using the ideas of Horner's method which takes a list containing Os, 1s and 2s (representing a base-3 number) and returns the corresponding decimal integer (so the input [1,2,0] returns the integer 15).
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Linear Programming Concepts
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education