CAT Quant · Study & Practice

Base Systems

AreaNumber System DifficultyModerate CAT weightage0–1 question most years (Number System / logic-overlap; common in XAT, SNAP, NMAT and aptitude rounds)

A "base" is just the size of the bucket you count in. In our everyday decimal system the base is 10, so each place is worth a power of 10 — units, tens, hundreds, and so on. Change the base to b and the place values become powers of b instead. Base systems matter because they expose what a number really is: a sum of digit times place value. Computers run on base 2 (binary) and group bits into base 8 (octal) and base 16 (hexadecimal), which is why this topic surfaces in CAT-style logical reasoning, in coding-aptitude rounds, and directly in XAT, SNAP, NMAT and IIFT number-system sets. This chapter builds three skills in order. First, reading any base-b number through place value, with binary and octal as the worked cases. Second, converting cleanly both ways — base-b to decimal using Horner-style nesting, and decimal to base-b using repeated division and reading remainders bottom-up. Third, doing arithmetic — addition, subtraction and multiplication — directly inside a base without detouring through decimal. Master the carry-and-borrow rule (you carry when a column reaches the base, not when it reaches ten) and most base questions collapse into ordinary, fast mental work.

Topics

⚡ CAT shortcuts & speed methods

The fastest ways to crack this chapter under time pressure — the techniques that separate a 95+ percentiler from the rest.

  • Know the powers of 2 (1,2,4,8,16,32,64,128) and 8 (1,8,64,512) on sight — most binary/octal reads become pure addition.
  • Base b → decimal: use Horner nesting (multiply running total by b, add next digit) instead of summing high powers.
  • Decimal → base b: divide by b repeatedly and read the remainders bottom-to-top; the last remainder is the leftmost digit.
  • Octal ↔ binary in one step: 1 octal digit = 3 binary bits; hex ↔ binary: 1 hex digit = 4 bits. Group, do not compute.
  • Carry/borrow at the base, not at 10: in base b you carry 1 when a column reaches b, and a borrow adds b to the column.
  • The largest n-digit number in base b is b^n − 1, so adding 1 rolls it to a clean power (666 + 1 = 1000 in base 7).

⚠️ Common mistakes & traps

CAT is designed so that careless errors here cost you marks. Internalise each trap before the exam.

  • Writing a digit equal to or larger than the base (an 8 in octal, a 2 in binary) — every digit must be 0 to b−1.
  • Reading the division remainders top-to-bottom instead of bottom-to-top, which reverses the answer.
  • Carrying or borrowing at 10 out of habit instead of at the actual base b.
  • Forgetting the letter digits in hex (A=10 ... F=15) and writing 10 as two characters.
  • Converting between two non-decimal bases directly by mismatched grouping — go through decimal unless the bases are 2/8/16.

📈 CAT exam insight & PYQ analysis

CAT itself touches base systems only occasionally, usually disguised as a logic or number-property question rather than a plain conversion, so it is a high-yield topic for the exams that lean on it more heavily — XAT, SNAP, NMAT and IIFT — plus most company aptitude and coding-placement rounds. The recurring patterns are: convert a number between two bases, identify which strings are valid in a given base, perform addition or subtraction inside a base, and use the b^n − 1 idea for the largest n-digit number. Difficulty is Moderate: the arithmetic is light but the carry-at-the-base rule trips careless students. Prioritise fast binary/octal/hex reading and clean repeated-division conversion.

🎴 Flashcards — instant recall

Tap a card to reveal the answer. Drill these until they are automatic.

What is the base of the binary system?Tap to reveal
2 (digits 0 and 1 only)
Digits allowed in base b?Tap to reveal
0, 1, 2, ..., (b−1)
Place value of the k-th digit (from the right, starting at 0) in base b?Tap to reveal
b^k
Decimal → base b method?Tap to reveal
Divide by b repeatedly; read remainders bottom-to-top
Base b → decimal fast method?Tap to reveal
Horner nesting: ((...)·b + next digit)
How many binary bits equal one octal digit?Tap to reveal
3 (since 2^3 = 8)
How many binary bits equal one hex digit?Tap to reveal
4 (since 2^4 = 16)
In hexadecimal, what does F represent?Tap to reveal
15
Largest n-digit number in base b?Tap to reveal
b^n − 1
When do you carry 1 while adding in base b?Tap to reveal
When a column total reaches b
Binary 1101 in decimal?Tap to reveal
13
Octal 57 in decimal?Tap to reveal
47

📌 Quick revision

A base b just means each place is worth a power of b, with digits 0 to b−1. Read any base-b number by place value or, faster, by Horner nesting. Convert decimal to base b by dividing repeatedly and reading remainders bottom-to-top; convert back by nesting. Binary (base 2), octal (base 8) and hexadecimal (base 16) interlock — 1 octal digit is 3 bits, 1 hex digit is 4 bits — so group rather than compute. Do arithmetic directly in the base, carrying at b and borrowing b. Remember the largest n-digit number is b^n − 1, and always check by converting back to decimal.

Chapter test

🏆 Vidaara CAT success checklist

You have truly mastered Base Systems when you can tick every box below.

  • Recall every formula in this chapter without looking them up
  • Solve each topic’s practice set with at least 80% accuracy
  • Use the chapter shortcuts to cut your solving time in half
  • Spot and avoid every common trap listed above
  • Score 80%+ on the timed chapter test

📋 Chapter mastery scorecard

Track where you stand. Aim for the target before moving to the next chapter.

Skill checkpointTarget
Concept theory & formulas understood100%
Topic practice sets attempted (3 topics)3/3
Best topic-test score— → 80%+
Chapter test score— → 80%+
Flashcards drilled to instant recall12 cards