Question: Problem Descriptions: Design and code a python solution for the problems. You must come up with your own algorithm and the honor code applies (no
Problem Descriptions: Design and code a python solution for the problems. You must come up with your own algorithm and the honor code applies (no references).
1. [50 points] Design an algorithm that will use simple arithmetic operations to estimate the base-2 logarithm of a given positive number. The algorithm should report the exact answer if it is an integer and otherwise state upper and lower bounds for it.
For example, given the input 256, your algorithm should report 8, and given the input 81 your algorithm should report the logarithm lies between 6 and 7. Note that numbers less than 1 but greater than zero are positive. (Your solution may not invoke a log function/operator.)
WRITE IN PYTHON please
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
