Chapter 3: Problem 17
Find the max and min values of a function. Write a function maxmin \((f, a, b, n=1000)\) that returns the maximum and minimum values of a mathematical function \(f(x)\) (evaluated at n points) in the interval between a and b. The following test program from math import cos, pi print maxmin \((\cos ,-\mathrm{pi} / 2,2 * \mathrm{pi}, 100001)\) should write out \((1.0,-1.0)\). The maxmin function can compute a set of \(n\) uniformly spaced coordinates between a and b stored in a list \(x\), then compute \(f\) at the points in \(x\) and store the values in another list y. The Python functions max (y) and min \((y)\) return the maximum and minimum values in the list \(\mathrm{y}\), respectively. Note that this is a "brute force" method for computing the extrema of a function - in contrast to the standard approach where one computes \(f^{\prime}(x)\) and solves \(f^{\prime}(x)=0\), and examines the end points \(f(a)\) and \(f(b)\), to find exact extreme points and values. Name of program file: func_maxmin.py.
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.