Characteristic & Mantissa
Every base-10 logarithm splits into two parts: the characteristic (the integer part) and the mantissa (the non-negative decimal part). For a number N greater than 1, the characteristic of log_10 N is exactly one less than the number of digits — so digits = (characteristic of log N) + 1 = ⌊log_10 N⌋ + 1. That is the CAT digit-counting trick: to find how many digits 2^100 has, compute 100·log 2 = 100 × 0.30103 = 30.103, take the floor (30), add 1 → 31 digits. The mantissa (here 0.103) fixes the leading digits but you rarely need it for digit counts. For a positive number less than 1, the characteristic is negative and tells you the position of the first significant figure after the decimal point: if log N = −2.7, there are 1 leading zeros after the decimal before the first significant digit. Keep log 2 ≈ 0.30103 and log 3 ≈ 0.47712 handy — almost every CAT digit question uses them.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
The three laws
| Definition | log_b N = x ⇔ b^x = N (b > 0, b ≠ 1, N > 0) |
|---|---|
| Product law | log_b(MN) = log_b M + log_b N |
| Quotient law | log_b(M/N) = log_b M − log_b N |
| Power law | log_b(M^n) = n · log_b M |
| Log of base / of 1 | log_b b = 1, log_b 1 = 0 |
CAT power-tools
| Change of base | log_b a = (log a)/(log b) = (log_c a)/(log_c b) |
|---|---|
| Reciprocal rule | log_b a · log_a b = 1, i.e. log_b a = 1/log_a b |
| Base-power rule | log_(b^m)(a^n) = (n/m) · log_b a |
| Identity | b^(log_b N) = N and a^(log_b c) = c^(log_b a) |
| Digit count of N (base 10) | digits = ⌊log_10 N⌋ + 1 |