Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to expand and compute log(a + b)? [closed]

Tags:

math

logarithm

I would like to know the complete expansion of log(a + b).

For example

log(a * b) = log(a) + log(b); log(a / b) = log(a) - log(b); 

Similar to this, is there any expansion for log(a + b)?

like image 984
Aditya Singh Avatar asked Oct 20 '10 04:10

Aditya Singh


People also ask

How do you expand a log?

To expand logarithms, write them as a sum or difference of logarithms where the power rule is applied if necessary. Often, using the rules in the order quotient rule, product rule, and then power rule will be helpful. To simplify logarithms, write them as a single logarithm.

What is log ab )?

Adding log A and log B results in the logarithm of the product of A and B, that is log AB. For example, we can write. log10 5 + log10 4 = log10(5 × 4) = log10 20. The same base, in this case 10, is used throughout the calculation.


1 Answers

In general, one doesn't expand out log(a + b); you just deal with it as is. That said, there are occasionally circumstances where it makes sense to use the following identity:

log(a + b) = log(a * (1 + b/a)) = log a + log(1 + b/a) 

(In fact, this identity is often used when implementing log in math libraries).

like image 71
Stephen Canon Avatar answered Sep 19 '22 06:09

Stephen Canon