4. The following algorithm for approximating roots combines the bisection method with Newton's method and ensures the convergence even in the case where Newton's method fail to converge. Choose an interval [a,b] such that f(a)f(b) ≤0. Compute initial approximation xo = (a+b)/2 of the root using the bisection method. For i=1,2,... Compute i using Newton's method and xi-1. If xi [a,b], set x₁ = (a + b)/2 (from bisection). Check for convergence. If f(a) f(xi) ≤0 set b = xi, else set a = xį . (a) Implement this algorithm in a PYTHON function with the following specifications: def findzero (a, b, tol, maxit, f,df) # Input: # a, b = The endpoints of the interval # tol = The required tolerance # maxit = Maximum number of iterations # f, df = The function and its derivative # Output: # star = approximation of root # niter = number of iterations for convergence #ierr = # # # 0, the method converged 1, df was zero or undefined 2, maximum number of iterations has been reached return xstar, niter, ierr

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
4.
The following algorithm for approximating roots combines the bisection method with
Newton's method and ensures the convergence even in the case where Newton's method fail to
converge.
Choose an interval [a, b] such that f(a)f(b) ≤ 0.
Compute initial approximation xo = (a+b)/2 of the root using the bisection method.
For i=1,2,...
Compute x₁ using Newton's method and X₁-1.
If x₁ [a, b], set x₁ = (a + b)/2 (from bisection).
Check for convergence.
If f(a) f(xi) ≤0 set b = xi, else set a = xį.
(a)
Implement this algorithm in a PYTHON function with the following specifications:
def findzero (a, b, tol, maxit, f, df)
# Input:
# a, b = The endpoints of the interval
# tol = The required tolerance
# maxit = Maximum number of iterations
# f, df = The function and its derivative
# Output:
# star
#niter
# ierr
#
#
#
approximation of root
= number of iterations for convergence
0, the method converged
1, df was zero or undefined
2, maximum number of iterations has been reached
return xstar, niter, ierr
Transcribed Image Text:4. The following algorithm for approximating roots combines the bisection method with Newton's method and ensures the convergence even in the case where Newton's method fail to converge. Choose an interval [a, b] such that f(a)f(b) ≤ 0. Compute initial approximation xo = (a+b)/2 of the root using the bisection method. For i=1,2,... Compute x₁ using Newton's method and X₁-1. If x₁ [a, b], set x₁ = (a + b)/2 (from bisection). Check for convergence. If f(a) f(xi) ≤0 set b = xi, else set a = xį. (a) Implement this algorithm in a PYTHON function with the following specifications: def findzero (a, b, tol, maxit, f, df) # Input: # a, b = The endpoints of the interval # tol = The required tolerance # maxit = Maximum number of iterations # f, df = The function and its derivative # Output: # star #niter # ierr # # # approximation of root = number of iterations for convergence 0, the method converged 1, df was zero or undefined 2, maximum number of iterations has been reached return xstar, niter, ierr
Expert Solution
steps

Step by step

Solved in 3 steps with 5 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY