Factors and Multiples

  • A factor of a number divides it exactly (no remainder).

    • Example: 3 is a factor of 12.
  • A multiple of a number is obtained by multiplying it by an integer.

    • Example: 24 is a multiple of 6.

HCF (Highest Common Factor)

HCF of two or more numbers is the greatest number that divides all of them exactly.

HCF(a,b)=max{kka and kb}\text{HCF}(a, b) = \max\{k \mid k \mid a \text{ and } k \mid b\}

Use Case: Sharing, cutting into maximum equal parts, minimizing length or time.


LCM (Least Common Multiple)

LCM of two or more numbers is the smallest number that is a multiple of all of them.

LCM(a,b)=min{mam and bm}\text{LCM}(a, b) = \min\{m \mid a \mid m \text{ and } b \mid m\}

Use Case: Scheduling, synchronization, recurring cycles, time intervals.


Prime Factorization

Breaking a number into its constituent prime numbers.

Example: 60=22×3×5\text{Example: } 60 = 2^2 \times 3 \times 5

Use: Efficiently compute HCF and LCM.


Key Formulas and Shortcuts

Relation Between HCF and LCM

HCF(a,b)×LCM(a,b)=a×b\text{HCF}(a, b) \times \text{LCM}(a, b) = a \times b

This is valid only for two numbers.


HCF Using Prime Factorization

  • Factorize each number.
  • Take common primes with the lowest powers.

Example:
36 = 22×322^2 \times 3^2
60 = 22×3×52^2 \times 3 \times 5

HCF(36,60)=22×3=12\text{HCF}(36, 60) = 2^2 \times 3 = 12

LCM Using Prime Factorization

  • Factorize each number.
  • Take all primes with the highest powers.
LCM(36,60)=22×32×5=180\text{LCM}(36, 60) = 2^2 \times 3^2 \times 5 = 180

Shortcut: Euclidean Algorithm for HCF (of two numbers)

Given two numbers a>ba > b:

HCF(a,b)=HCF(b,amodb)\text{HCF}(a, b) = \text{HCF}(b, a \bmod b)

Repeat until remainder is 0.

Example:
Find HCF(91, 65)

91mod65=26HCF(65,26)65mod26=13HCF(26,13)26mod13=0HCF=1391 \mod 65 = 26 \Rightarrow \text{HCF}(65, 26) \\ 65 \mod 26 = 13 \Rightarrow \text{HCF}(26, 13) \\ 26 \mod 13 = 0 \Rightarrow \text{HCF} = 13

HCF and LCM of Fractions

When dealing with fractions, the concepts of HCF and LCM are extended based on their numerators and denominators.


HCF of Fractions

To find the HCF of a set of fractions:

HCF=HCF of numeratorsLCM of denominators\text{HCF} = \frac{\text{HCF of numerators}}{\text{LCM of denominators}}

Example: Find the HCF of 49,815,1225\frac{4}{9}, \frac{8}{15}, \frac{12}{25}

  • Numerators: HCF(4, 8, 12) = 4
  • Denominators: LCM(9, 15, 25) = 225
HCF=4225\text{HCF} = \frac{4}{225}

LCM of Fractions

To find the LCM of a set of fractions:

LCM=LCM of numeratorsHCF of denominators\text{LCM} = \frac{\text{LCM of numerators}}{\text{HCF of denominators}}

Example: Find the LCM of 23,56,49\frac{2}{3}, \frac{5}{6}, \frac{4}{9}

  • Numerators: LCM(2, 5, 4) = 20
  • Denominators: HCF(3, 6, 9) = 3
LCM=203\text{LCM} = \frac{20}{3}

Conceptual Tips and Common Mistakes

MistakeCorrection
Using the HCF-LCM product formula for 3+ numbersValid only for two numbers
Confusing factors and multiplesFactors divide, multiples are products
Taking LCM by common factorsLCM takes all primes, not just common
Forgetting to include powers of primesAlways take max powers for LCM, min for HCF

Factor Trees and Visual Aid

Example: Factor tree for 84

        84
       /  \
      2    42
          /  \
         2    21
              / \
             3   7
→ 84 = 2^2 × 3 × 7

Visualizing through factor trees aids quick mental prime factorization.


Examples

Example 1:

Find HCF and LCM of 36 and 60.

Prime Factorizations:
36 = 22×322^2 \times 3^2
60 = 22×3×52^2 \times 3 \times 5

HCF=22×3=12LCM=22×32×5=180\text{HCF} = 2^2 \times 3 = 12 \\ \text{LCM} = 2^2 \times 3^2 \times 5 = 180

Example 2:

What is the HCF of 120, 160, and 200?

Factorizations:

  • 120 = 23×3×52^3 \times 3 \times 5
  • 160 = 25×52^5 \times 5
  • 200 = 23×522^3 \times 5^2

HCF: 23×5=402^3 \times 5 = 40


Example 3:

Two alarm clocks ring every 20 min and 30 min. If they ring together at 9:00 AM, when will they next ring together?

LCM(20,30)=60 minutesAnswer: 10:00AM\text{LCM}(20, 30) = 60 \text{ minutes} \Rightarrow \text{Answer: } 10:00 AM

Applications of HCF and LCM

SituationUse
Cutting rods/pipes into equal lengthsHCF
Scheduling classes/eventsLCM
Grouping things equallyHCF
Finding least time for simultaneous tasksLCM

Special Cases

  • If two numbers are co-prime, HCF = 1 and

    LCM=a×b\text{LCM} = a \times b
  • If one number divides another:

    HCF=smaller,LCM=larger\text{HCF} = \text{smaller}, \quad \text{LCM} = \text{larger}