HW2_3 Define a function that implements false position algorithm and uses the following inputs: the lambda function, £ for the root finding function the initial bracketing interval defined by the two endpoints x1, xu the stopping criterion, es The function definition line for this function is provided for your convenience: def falspos (f, xl, xu, es): Using this function determine the two roots of f(x) = 2x cos(2x) — (x − 2)², accurate to 3 sig figs. Plot these points on the graph with a star marker.

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

Hints:
1. Place the function on top so that it can be accessed by the main script.
2. Define es according to the problem statement
3. Define the lambda function for the root finding function
4. Plot the function to capture the two roots ( x-axis intersections)
5. Looking at the plot select one set of xl and xu to bracket the smaller root and another set of xl
and xu to bracket the larger root.
6. Call the function with the first interval to obtain the smaller root and save it as root1
7. Call the function again, with the second interval to obtain the larger root and save it as root2
8. Finally, plot the two solutions as discrete points on the same plot you generated earlier for the
root finding function

HW2_3 Define a function that implements false position algorithm and uses the following inputs:
the lambda function, £ for the root finding function
the initial bracketing interval defined by the two endpoints x1, xu
the stopping criterion, es
The function definition line for this function is provided for your convenience:
def falspos(f, xl, xu, es):
Using this function determine the two roots of f(x)
Plot these points on the graph with a star marker.
=
2x cos(2x) — (x − 2)², accurate to 3 sig figs.
Transcribed Image Text:HW2_3 Define a function that implements false position algorithm and uses the following inputs: the lambda function, £ for the root finding function the initial bracketing interval defined by the two endpoints x1, xu the stopping criterion, es The function definition line for this function is provided for your convenience: def falspos(f, xl, xu, es): Using this function determine the two roots of f(x) Plot these points on the graph with a star marker. = 2x cos(2x) — (x − 2)², accurate to 3 sig figs.
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Topological Sort
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