WAEC WAEC Nigeria General Mathematics

Revision Notes

Topic navigation panel

Topic navigation panel

(Modulo Arithmetic)

Modulo Arithmetic Operations

Modulo Arithmetic Operations

Modulo arithmetic, also called clock arithmetic, is all about working with remainders. It’s used to find the remainder when one number is divided by another. This is very common in programming, coding theory, and time calculations (like clocks!).

 

What Does Modulo Mean?

When we say:

amodna \bmod n

We mean: what is the remainder when aa is divided by nn?

Example: 17mod5=217 \bmod 5 = 2, because when you divide 17 by 5, the remainder is 2.

 

Basic Modulo Arithmetic Operations

1. Addition Modulo nn

Add the numbers first, then find the remainder when the result is divided by nn.

(a+b)modn=remainder of a+b divided by n(a + b) \bmod n = \text{remainder of } a + b \text{ divided by } n

Example: (7+9)mod10=16mod10=6(7 + 9) \bmod 10 = 16 \bmod 10 = 6

Tuity Tip

Hover me!

Tuity Tip: If the result is already less than the modulus (e.g., 6 in mod 10), it stays the same.

 

2. Subtraction Modulo nn

Subtract the numbers, then apply the modulo to get a positive result (if needed).

(ab)modn=remainder of ab divided by n(a - b) \bmod n = \text{remainder of } a - b \text{ divided by } n

Example: (49)mod7=5mod7=2(4 - 9) \bmod 7 = -5 \bmod 7 = 2

Because: 5+7=2-5 + 7 = 2 (we add 7 to make it positive)

Tuity Tip

Hover me!

Negative results? Just keep adding the modulus until you get a positive remainder.

 

3. Multiplication Modulo nn

Multiply the numbers first, then take the result mod nn.

(a×b)modn=remainder of a×b divided by n(a \times b) \bmod n = \text{remainder of } a \times b \text{ divided by } n

Example: (6×7)mod5=42mod5=2(6 \times 7) \bmod 5 = 42 \bmod 5 = 2

4. Division Modulo (Not Common at WAEC Level)

Division in modulo arithmetic is more advanced and usually not required at the WAEC level. Stick to addition, subtraction, and multiplication for now!

 

Worked Example

Worked Example

Evaluate (14+9)mod8(14 + 9) \bmod 8

 

More Worked Examples

Worked Example

Example 1: (1115)mod6(11 - 15) \bmod 6

Worked Example

Example 2: (13×5)mod7(13 \times 5) \bmod 7

 

Practice Problem

Worked Example

Try this: Evaluate (1726)mod9(17 - 26) \bmod 9

Tuity Tip

Hover me!

Modulo arithmetic is like wrapping numbers around a clock! If your answer is negative, just loop forward until you land in the right place.

Practice modulo operations using a clock face — especially for mod 12 or mod 24 time questions!

Choose Your Study Plan

MonthlyAnnualSave 20%

Plus

£4.99/month
  • Everything in Free plus...
  • Unlimited revision resources access
  • AI assistance (Within usage limits)
  • Enhanced progress tracking
  • New features soon...

Pro

£9.99/month
  • Everything in Plus plus...
  • Unlimited AI assistance
  • Unlimited questions marked
  • Detailed feedback and explanations
  • Comprehensive progress tracking
  • New features soon...
Most Popular