Solving Logarithmic Equations
Solving Logarithmic Equations
A logarithmic equation is an equation where the variable is found inside a logarithm. To solve these equations, the general strategy is to use logarithm properties to combine terms into a single logarithm, and then convert the equation into exponential form.
Key Properties to Remember
Before jumping into solving, make sure you know these fundamental logarithm rules:
- Product Rule: logb(xy)=logb(x)+logb(y)
- Quotient Rule: logb(yx)=logb(x)−logb(y)
- Exponential Conversion: logb(x)=y⟺by=x
- One-to-One Property: If logb(x)=logb(y), then x=y
The 4-Step Method
- Condense: If there are multiple logarithms on one side of the equation, use the product or quotient rules to combine them into a single logarithm.
- Convert: Rewrite the equation in exponential form to eliminate the logarithm. (If both sides have a single logarithm with the same base, just drop the logs using the one-to-one property).
- Solve: Solve the resulting algebraic equation.
- Check: This is crucial! The argument (inside) of a logarithm must always be strictly greater than zero. You must plug your answers back into the original equation to check for "extraneous" (invalid) solutions.
Example 1: Converting to Exponential Form
Solve: log2(x)+log2(x−2)=3
Step 1: Condense the logarithms. Use the product rule to combine the left side:
log2(x(x−2))=3
Step 2: Convert to exponential form.
23=x(x−2)
Step 3: Solve the equation.
8=x2−2x
x2−2x−8=0
(x−4)(x+2)=0
This gives us two potential solutions: x=4 and x=−2.
Step 4: Check for extraneous solutions. If we plug x=−2 into the original equation, we get log2(−2), which is undefined because we cannot take the logarithm of a negative number or zero. Therefore, x=−2 is an extraneous solution. The only valid solution is x=4.
Example 2: Using the One-to-One Property
Solve: ln(x+1)−ln(x−1)=ln3
Step 1: Condense the logarithms. Use the quotient rule on the left side:
ln(x−1x+1)=ln3
Step 2: Use the one-to-one property. Since both sides are natural logs (ln), we can set their arguments equal to each other:
x−1x+1=3
Step 3: Solve the equation. Multiply both sides by (x−1):
x+1=3(x−1)
x+1=3x−3
4=2x
x=2
Step 4: Check your answer. Plug x=2 into the original equation arguments: (2+1)=3>0 and (2−1)=1>0. Both arguments are positive, so x=2 is a valid solution.