Follow Us
Select Medium / माध्यम चुनें:
Eng (English) Hindi (हिन्दी)
ICSE • Class 9 • Mathematics • Ch 7
Estimated Time: 45 Mins
Study Progress: In Progress

Logarithms

In ICSE Class 9 Mathematics, "Logarithms" introduces students to one of the greatest computational breakthroughs in the history of science, invented by John Napier in 1614. Formally, a logarithm is the inverse operation to exponentiation. The logarithm of a positive real number $y$ to a given positive base $a$ ($a \neq 1$) is the unique exponent $x$ to which the base $a$ must be raised to produce $y$: $a^x = y \iff \log_a y = x$. The chapter establishes strict domain and base restrictions: the argument $y$ must be strictly positive ($y > 0$), and the base $a$ must be positive and not equal to one ($a > 0, a \neq 1$). The curriculum explores two primary systems of logarithms: Common Logarithms (base 10, widely written as $\log x$) and Natural Logarithms (base $e \approx 2.71828$, denoted $\ln x$). The core theoretical foundation rests upon the fundamental Laws of Logarithms: (1) Product Rule $\log_a (xy) = \log_a x + \log_a y$; (2) Quotient Rule $\log_a (x/y) = \log_a x - \log_a y$; (3) Power Rule $\log_a (x^k) = k \log_a x$; (4) Identity Rule $\log_a a = 1$ and $\log_a 1 = 0$; and (5) The Change of Base Theorem $\log_a b = \frac{\log_c b}{\log_c a} \implies \log_a b \cdot \log_b a = 1$. Students master converting between exponential and logarithmic forms, expanding and condensing expressions, solving logarithmic equations, and eliminating extraneous solutions arising from non-positive arguments.

How Scottish Mathematician John Napier Saved Kepler and Galileo Thousands of Hours of Tedious Calculations

In the early 17th century, Johannes Kepler was calculating the planetary orbits of Mars and Earth using massive tables of multi-digit astronomical measurements. To multiply two 10-digit numbers or calculate high roots took astronomers days of grinding mental arithmetic, where a single slip of the pen ruined months of work. The great French mathematician Pierre-Simon Laplace remarked that the Scottish laird John Napier "doubled the life of astronomers by halving their labor" when he published his discovery of Logarithms in 1614! Napier noticed an extraordinary mathematical alchemy: by mapping numbers into powers of a base, multiplication turns into simple addition ($\log(xy) = \log x + \log y$), division turns into subtraction, and calculating an $n$-th root turns into simple division! Even in our modern world, the Richter scale for earthquakes (a magnitude 7 earthquake is 10 times more powerful than magnitude 6), the decibel scale for acoustic loudness, and the pH scale of acidity are all logarithmic scales. How does this mathematical bridge between multiplication and addition work? Let us explore the beauty of logarithms!

Why This Chapter Matters

Logarithms are critical for calculus (integrating $1/x$, exponential functions), measuring earthquakes (Richter scale), chemistry (pH scale), sound intensity (decibels), and algorithm complexity in computer science ($O(\log n)$).

Before You Begin (Prerequisites)

  • Complete mastery of Chapter 6: Indices and Laws of Exponents ($a^m \cdot a^n = a^{m+n}$).
  • Solving basic linear and quadratic equations.

What You Will Learn (Core Objectives)

  • Define a logarithm rigorously as the inverse of exponentiation with domain and base restrictions.
  • Convert fluently between exponential form $a^x = y$ and logarithmic form $\log_a y = x$.
  • Apply the product, quotient, and power laws of logarithms to expand and condense expressions.
  • Use the Change of Base formula $\log_a b = \frac{\log b}{\log a}$ to evaluate logarithms with arbitrary bases.
  • Solve logarithmic equations and identify and discard extraneous roots.

Chapter Roadmap & Progression

1 1. Formal Definition and Domain Res...
2 2. Fundamental Laws of Logarithms
3 3. Change of Base Theorem
4 4. Worked ICSE Problem Archetypes

Complete Concept Guide (100% Curriculum Coverage)

1. Formal Definition and Domain Restrictions

Formal Definition
The Equivalence Principle:
$$\mathbf{a^x = y \iff \log_a y = x}$$

Read as: *"The logarithm of $y$ to the base $a$ is equal to $x$."*

Mandatory Domain & Base Restrictions:
  • Argument Restriction: $y > 0$ (Logarithms of zero or negative numbers are undefined in real numbers $\mathbb{R}$).
  • Base Restrictions: $a > 0$ and $a \neq 1$.
    • If $a = 1$, $1^x = y$ could only ever equal $1$ (for $y = 1$, $x$ is indeterminate; for $y \neq 1$, no solution exists).
    • If $a \le 0$, non-integer powers like $(-2)^{1/2} = \sqrt{-2}$ yield imaginary numbers.
Fundamental Immediate Consequences:
$$\log_a a = 1 \quad (\text{since } a^1 = a) \qquad \log_a 1 = 0 \quad (\text{since } a^0 = 1)$$ $$a^{\log_a y} = y \quad (\text{Identity of Inversion})$$

2. Fundamental Laws of Logarithms

The Three Core Laws
LawMathematical IdentityVerbal Statement
Product Law$\log_a (m \times n) = \log_a m + \log_a n$The log of a product is the sum of the logs.
Quotient Law$\log_a \left(\frac{m}{n}\right) = \log_a m - \log_a n$The log of a quotient is the difference of the logs.
Power Law$\log_a (m^k) = k \cdot \log_a m$The exponent inside a log pulls out as a multiplier.
Root Corollary$\log_a (\sqrt[n]{m}) = \frac{1}{n} \log_a m$Follows from $m^{1/n}$.

Critical Common Errors to Avoid:

  • $\log(m + n) \neq \log m + \log n$ (Logarithm does NOT distribute over addition!).
  • $\frac{\log m}{\log n} \neq \log(m - n)$ (A fraction of two logs is NOT the log of a difference!).
  • $(\log m)^k \neq k \log m$ (The power must apply to the argument $m$, not to the entire logarithm!).

3. Change of Base Theorem

Base Conversion
Theorem:
$$\mathbf{\log_a b = \frac{\log_c b}{\log_c a}}$$

where $c$ is any valid new base ($c > 0, c \neq 1$). In practice, $c = 10$ is commonly chosen:

$$\log_a b = \frac{\log_{10} b}{\log_{10} a}$$
Reciprocal Inversion Property:

Setting $c = b$ in the change of base formula:

$$\log_a b = \frac{\log_b b}{\log_b a} = \frac{1}{\log_b a} \iff \mathbf{\log_a b \times \log_b a = 1}$$

Chain Rule: $\log_a b \times \log_b c \times \log_c d = \log_a d$.

4. Worked ICSE Problem Archetypes

Exemplary Solutions
Problem 1: Solve for $x$: $\log (x + 5) + \log (x - 5) = \log 24$.

Solution:

Apply the product law $\log A + \log B = \log(AB)$ on the left-hand side:

$$\log[(x + 5)(x - 5)] = \log 24$$ $$\log(x^2 - 25) = \log 24$$

Equate the arguments since logs have the same base:

$$x^2 - 25 = 24 \implies x^2 = 49 \implies x = \pm 7$$

Check Domain Restrictions:

  • For $x = 7$: $x + 5 = 12 > 0$ and $x - 5 = 2 > 0$. Valid!
  • For $x = -7$: $x - 5 = -12 < 0$. Log of a negative number is undefined! So $x = -7$ is an extraneous root and must be rejected.
$$\mathbf{\text{Unique Valid Solution: } x = 7}$$
Problem 2: If $\log\left(\frac{x+y}{3}\right) = \frac{1}{2}(\log x + \log y)$, prove that $\frac{x}{y} + \frac{y}{x} = 7$.

Solution:

Multiply both sides by $2$:

$$2 \log\left(\frac{x+y}{3}\right) = \log x + \log y$$

Apply power rule on LHS and product rule on RHS:

$$\log\left(\frac{x+y}{3}\right)^2 = \log(xy)$$

Equate the arguments:

$$\left(\frac{x+y}{3}\right)^2 = xy \implies \frac{(x+y)^2}{9} = xy$$ $$(x+y)^2 = 9xy \implies x^2 + 2xy + y^2 = 9xy$$ $$x^2 + y^2 = 7xy$$

Divide both sides by $xy$:

$$\frac{x^2}{xy} + \frac{y^2}{xy} = \frac{7xy}{xy} \implies \mathbf{\frac{x}{y} + \frac{y}{x} = 7} \quad \blacksquare$$

Key Formulas, Identities & Theorems

Logarithmic Definition
$$a^x = y \iff \log_a y = x, \quad y > 0, \; a > 0, \; a \neq 1$$
Inverse of exponential function.
Product Law
$$\log_a (xy) = \log_a x + \log_a y$$
Converts multiplication into addition.
Quotient Law
$$\log_a \left(\frac{x}{y}\right) = \log_a x - \log_a y$$
Converts division into subtraction.
Power Law
$$\log_a (x^k) = k \log_a x$$
Brings down exponent as coefficient.
Change of Base
$$\log_a b = \frac{\log_c b}{\log_c a}, \quad \log_a b = \frac{1}{\log_b a}$$
Allows evaluation using any convenient base.

Mathematics: Logarithmic Curve & Transformation of Multiplication to Addition

Logarithms: Graph of y = log₁₀(x) & Bridge Between Operations Graph of Logarithmic Function y = log₁₀(x) X Y x = 0 (Asymptote) (1, 0) (10, 1) Domain: x > 0 strictly Range: (-∞, +∞) all real numbers Napier's Bridge of Operations Multiplication ⇒ Addition log(a × b) = log(a) + log(b) Division ⇒ Subtraction log(a ÷ b) = log(a) - log(b) Exponentiation ⇒ Multiplication log(aᵏ) = k × log(a) Change of Base Rule: log_a(b) = log(b) / log(a) = 1 / log_b(a)

Chapter Summary & 10 Key Takeaways

Takeaway 1
A logarithm is defined as a^x = y ⟺ log_a(y) = x, where y > 0, a > 0, and a ≠ 1.
Takeaway 2
Logarithms of zero and negative numbers are undefined in the real number system.
Takeaway 3
Immediate identity properties: log_a(a) = 1 and log_a(1) = 0.
Takeaway 4
Product law: log_a(xy) = log_a(x) + log_a(y).
Takeaway 5
Quotient law: log_a(x/y) = log_a(x) - log_a(y).
Takeaway 6
Power law: log_a(x^k) = k * log_a(x).
Takeaway 7
Change of base theorem: log_a(b) = log_c(b) / log_c(a).
Takeaway 8
Reciprocal base identity: log_a(b) * log_b(a) = 1.
Takeaway 9
Chain rule of logarithms: log_a(b) * log_b(c) * log_c(d) = log_a(d).
Takeaway 10
When solving logarithmic equations, always verify candidate solutions in the original equation to discard extraneous roots.

Check Your Understanding (Diagnostic Practice Questions)

Diagnostic questions testing core conceptual clarity. Answers are hidden initially — solve each problem first, then click to reveal the step-by-step verified solution.

1
Express in logarithmic form: (i) $5^{-3} = \frac{1}{125}$, (ii) $(0.01)^2 = 0.0001$, (iii) $7^0 = 1$.
Reveal Answer & Explanation
Answer:

• Using the fundamental equivalence $a^x = y \iff \log_a y = x$:
(i) $5^{-3} = \frac{1}{125} \iff \mathbf{\log_5\left(\frac{1}{125}\right) = -3}$
(ii) $(0.01)^2 = 0.0001 \iff \mathbf{\log_{0.01}(0.0001) = 2}$
(iii) $7^0 = 1 \iff \mathbf{\log_7(1) = 0}$


Identify base a, exponent x, and result y. Then write log_a(y) = x.
2
Find the value of $\log_3 243 + \log_2 64 - \log_5 125$.
Reveal Answer & Explanation
Answer: • Evaluate each term using prime powers:
- $243 = 3^5 \implies \log_3(3^5) = 5\log_3 3 = 5(1) = 5$
- $64 = 2^6 \implies \log_2(2^6) = 6\log_2 2 = 6(1) = 6$
- $125 = 5^3 \implies \log_5(5^3) = 3\log_5 5 = 3(1) = 3$
• Combining the terms:
$$5 + 6 - 3 = \mathbf{8}$$
Write 243 = 3^5, 64 = 2^6, 125 = 5^3.
3
Solve for $x$: $\log(x + 2) + \log(x - 2) = \log 5$.
Reveal Answer & Explanation
Answer: • Combine the left side using the product law $\log A + \log B = \log(AB)$:
$$\log[(x + 2)(x - 2)] = \log 5$$
$$\log(x^2 - 4) = \log 5$$
• Equate arguments:
$$x^2 - 4 = 5 \implies x^2 = 9 \implies x = \pm 3$$
• Check domain restrictions ($x + 2 > 0$ and $x - 2 > 0$):
- For $x = 3$: $3+2 = 5 > 0$ and $3-2 = 1 > 0$. Valid!
- For $x = -3$: $-3 - 2 = -5 < 0$ (undefined log). Extraneous!
• Therefore, the unique solution is $\mathbf{x = 3}$.
Combine to log(x^2 - 4) = log 5, giving x^2 = 9. Discard x = -3.
4
Evaluate: $\log_2 3 \times \log_3 4 \times \log_4 5 \times ... \times \log_{15} 16$.
Reveal Answer & Explanation
Answer: • Apply the change of base theorem to each term using common base $10$:
$$\log_2 3 = \frac{\log 3}{\log 2}, \quad \log_3 4 = \frac{\log 4}{\log 3}, \quad ..., \quad \log_{15} 16 = \frac{\log 16}{\log 15}$$
• Multiplying the entire chain:
$$\frac{\log 3}{\log 2} \times \frac{\log 4}{\log 3} \times \frac{\log 5}{\log 4} \times ... \times \frac{\log 16}{\log 15}$$
• All intermediate terms cancel out telescopically, leaving only the first denominator and the last numerator:
$$= \frac{\log 16}{\log 2} = \log_2 16 = \log_2(2^4) = 4\log_2 2 = \mathbf{4}$$
Use change of base log_a b = log b / log a. All intermediate numerators and denominators cancel.
5
If $\log 2 = 0.3010$ and $\log 3 = 0.4771$, evaluate $\log 72$.
Reveal Answer & Explanation
Answer: • Prime factorise $72$:
$$72 = 8 \times 9 = 2^3 \times 3^2$$
• Apply the product and power laws of logarithms:
$$\log 72 = \log(2^3 \times 3^2) = \log(2^3) + \log(3^2) = 3\log 2 + 2\log 3$$
• Substitute the given values:
$$= 3(0.3010) + 2(0.4771) = 0.9030 + 0.9542 = \mathbf{1.8572}$$
72 = 2^3 * 3^2. log 72 = 3 log 2 + 2 log 3.
6
Solve for $x$: $\log_3 x + \log_9 x + \log_{27} x = 11$.
Reveal Answer & Explanation
Answer: • Express all logarithms in base $3$ using the change of base theorem:
- $\log_9 x = \frac{\log_3 x}{\log_3 9} = \frac{\log_3 x}{2}$
- $\log_{27} x = \frac{\log_3 x}{\log_3 27} = \frac{\log_3 x}{3}$
• Substitute into the equation:
$$\log_3 x + \frac{\log_3 x}{2} + \frac{\log_3 x}{3} = 11$$
• Factor out $\log_3 x$:
$$\log_3 x\left(1 + \frac{1}{2} + \frac{1}{3}\right) = 11$$
$$\log_3 x\left(\frac{6 + 3 + 2}{6}\right) = 11 \implies \log_3 x\left(\frac{11}{6}\right) = 11$$
• Multiply by $\frac{6}{11}$:
$$\log_3 x = 6 \implies x = 3^6 = \mathbf{729}$$
Convert all bases to 3: log_9 x = (1/2)log_3 x, log_27 x = (1/3)log_3 x.
7
Prove that: $\log_{10} 10 + \log_{10} 100 + \log_{10} 1000 + \log_{10} 10000 = 10$.
Reveal Answer & Explanation
Answer: • Write each argument as a power of $10$:
$$\log_{10} 10^1 + \log_{10} 10^2 + \log_{10} 10^3 + \log_{10} 10^4$$
• Apply $\log_{10} 10^k = k$:
$$= 1 + 2 + 3 + 4 = \mathbf{10} \quad \blacksquare$$
Arguments are 10^1, 10^2, 10^3, 10^4. Sum is 1 + 2 + 3 + 4 = 10.
8
If $a^2 + b^2 = 7ab$, prove that $2\log(a - b) = \log 5 + \log a + \log b$.
Reveal Answer & Explanation
Answer: • We are given $a^2 + b^2 = 7ab$.
• We want to form $(a - b)^2$ on the left. Subtract $2ab$ from both sides:
$$a^2 + b^2 - 2ab = 7ab - 2ab$$
$$(a - b)^2 = 5ab$$
• Take logarithms on both sides:
$$\log[(a - b)^2] = \log(5ab)$$
• Apply the power rule on LHS and product rule on RHS:
$$2\log(a - b) = \log 5 + \log a + \log b \quad \blacksquare$$
Subtract 2ab from both sides to form (a - b)^2 = 5ab. Then take log on both sides.
Finished Studying This Chapter?
READY TO PRACTICE?

Timed CBT Practice Tests (Exam Simulator)

Put your concepts to the test with official curriculum-aligned Foundation and Advanced practice tests. Get instant accuracy scores, time metrics, and step-by-step verified explanations.