Python 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 given that each answer can only be used once.    bisection(lambda x: x**2-14*x+y, -11, 7, 100)    (lambda y: bisection(lambda x: x**2-14*x+y, 7, 25, 100))(32)    bisection(lambda x: 10000*x-111231, 7, 25, 100)    bisection(lambda x: x**2-14*x+y, 7, 25, 5)    bisection(lambda x: x**2-14*x+y, 7, 25, 100).    The following options are: 11.242640687119284, 11.1231, 11.21875, 11.123105625617661 and 2.7573593128807152

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.4: A Case Study: Rectangular To Polar Coordinate Conversion
Problem 9E: (Numerical) Write a program that tests the effectiveness of the rand() library function. Start by...
icon
Related questions
Question

Python

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 given that each answer can only be used once. 

 

bisection(lambda x: x**2-14*x+y, -11, 7, 100)

 

 (lambda y: bisection(lambda x: x**2-14*x+y, 7, 25, 100))(32) 

 

bisection(lambda x: 10000*x-111231, 7, 25, 100)

 

 bisection(lambda x: x**2-14*x+y, 7, 25, 5)

 

 bisection(lambda x: x**2-14*x+y, 7, 25, 100). 

 

The following options are: 11.242640687119284, 11.1231, 11.21875, 11.123105625617661 and 2.7573593128807152

 

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Returning value from Function
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning