Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

python coding

(1) Write a function which takes a list of the coefficients of a polynomial
P(x) = ao + a₁x + a² +
+anxn
of arbitrary degree n, and a value of xo, and returns P(x). 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) = 5 — x² 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)¹+1
n=1
xn
n
= x -
2
X
x³
+
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
(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).
expand button
Transcribed Image Text:(1) Write a function which takes a list of the coefficients of a polynomial P(x) = ao + a₁x + a² + +anxn of arbitrary degree n, and a value of xo, and returns P(x). 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) = 5 — x² 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)¹+1 n=1 xn n = x - 2 X x³ + 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 (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
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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.
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education