Observe the following code for a function bisection: def bisection(f, a, b, N): for i in range(N): m = (a+b)/2 if f(a)*f(m)<0: b = m elif f(m)*f(b)<0: a = m return (a+b)/2 Below are five pieces of code, each of which calls this bisection function, and some of which depend on some variable y, that has already been assigned to some fixed integer. Match each piece of code with the value that it produces. bisection (lambda x: x**2-14*x+y, 7, 10, 100) (lambda y: bisection (lambda x: x**2-14*x+y, 7, 10, 100)) (47) bisection (lambda x: x**2-14*x+y, 7, 10, 5) bisection (lambda x: 5000*x-42071, 7, 10, 100) bisection (lambda x: x**2-14*x+y, 4, 7, 100) Choose... Choose... 8.732050807568877 8.734375 8.414213562373094 5.2679491924311215 8.414200000000001
Observe the following code for a function bisection: def bisection(f, a, b, N): for i in range(N): m = (a+b)/2 if f(a)*f(m)<0: b = m elif f(m)*f(b)<0: a = m return (a+b)/2 Below are five pieces of code, each of which calls this bisection function, and some of which depend on some variable y, that has already been assigned to some fixed integer. Match each piece of code with the value that it produces. bisection (lambda x: x**2-14*x+y, 7, 10, 100) (lambda y: bisection (lambda x: x**2-14*x+y, 7, 10, 100)) (47) bisection (lambda x: x**2-14*x+y, 7, 10, 5) bisection (lambda x: 5000*x-42071, 7, 10, 100) bisection (lambda x: x**2-14*x+y, 4, 7, 100) Choose... Choose... 8.732050807568877 8.734375 8.414213562373094 5.2679491924311215 8.414200000000001
C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 8SA
Related questions
Question
Match each piece of code with the value that it produces given each answer can only be used once
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr