How would you solve this equation?

log(ab)=log(a)*log(b)

a=30, b=60

Does the it appear that this is a true statement? Why?

2 answers

The equation is not true. Consider a=10, b=1

log(10*1)= log10 *log1
and since the log of 1 is zero, this makes the log of 10 equal to zero, so it is nonsense.

Try log(ab)=log a+ log b
other than the obvious of
a=1, b=1, i found some that come very close.

I was so intrigued by the question that I actually went ahead and made up a short computer program to test this.

This is in a very archaic language called "BASIC", but I am sure some of the tutors will recognize it

FOR A = .01 TO 100 STEP .01
FOR B = .01 TO 100 STEP .01
LS = LOG(A*B)/LOG(10)
RS = LOG(A)*LOG(B)/(LOG(10)*LOG(10)
IF ABS(LS-RS) < .00001 THEN PRINT A,B
NEXT B
NEXT A

I got a = .28 and b= 2.27 to have an error of less than .00001 between the left side and the right side of your equation.

of course a=2.27 and b=.28 will also work within that margin of error.
Similar Questions
  1. What is the first step in solving the linear system{2x − 3y = 11 {−x + 5y = −9 by the substitution method in the most
    1. answers icon 2 answers
  2. What is the first step in solving the linear system{2x−3y=11 {−x+5y=−9 by the substitution method in the most efficient
    1. answers icon 4 answers
  3. Solving Multi-Step Equation Quiz1.Solve the Equation x5=−2 A. -35 B. -10 C.3 2. Solve the equation. x5+1=−7 A. -13 B. -40 C.
    1. answers icon 1 answer
  4. You need to solve this equation for x: ax-7=26Which equation would be best first step you could make to solve the equation? (1
    1. answers icon 1 answer
more similar questions