Calculating Variables

a) Write a MATLAB function that implements the bisection method in Algorithm 2.1. Make sure that you use the same order of input below:function p = bisection(f,a,b,TOL,N0)% f is the function f% your implementation hereendThe ’p’ variable calculated in step 3 will be...