Please do the following questions with the full python coding and explanation below each question typed

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

Please do the following questions with the full python coding and explanation below each question typed

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 ro= (a + b)/2 of the root using the bisection method.
For i=1,2,...
Computer using Newton's method and Ti-1.
If ri[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:
findzero (a, b, tol, maxit, f, df)
def
# 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
(b)
Use this function with input parameters of your choice to find approximations of the
roots of Problem 3.
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 ro= (a + b)/2 of the root using the bisection method. For i=1,2,... Computer using Newton's method and Ti-1. If ri[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: findzero (a, b, tol, maxit, f, df) def # 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 (b) Use this function with input parameters of your choice to find approximations of the roots of Problem 3.
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Please provide a screenshot of the code with correct indentations 

Solution
Bartleby Expert
SEE SOLUTION
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