If the input is x, find a and b from the following equation: x = a*2^b.
Hint: b is an integer while x and a are real numbers.
Solution Stats
Problem Comments
5 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers56
Suggested Problems
-
Back to basics 17 - white space
280 Solvers
-
Output any real number that is neither positive nor negative
410 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1269 Solvers
-
673 Solvers
-
Side of an equilateral triangle
7051 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The solutions to this equation are not unique. Based on the requirements given there is an entire solution space for each possibility. For example 1.024E4*2^-10 = 10 but that is not a valid answer. Basically there is a degree of freedom issue here.
agree,solutions is way way more than one.
b=0. a=x.
Brute-force on b, while looking for solutions with a restricted to the interval [-1,1] works. And I agree there is more than one solution. The author should specify what is the interval for valid solutions or accept more than one valid answer (which is easy to verify).
Just a heads up - OP expects solvers to use a particular function