40% off

Early-bird ends 15 Aug, 9am

Lock in £90

Systematic Listing Strategies

Updated August 2025

Systematic listing is a fundamental counting technique used to determine the total number of possible outcomes in a scenario. By applying the multiplication principle, where mm ways of doing one task combined with nn ways of doing another results in m×nm \times n total outcomes, students can efficiently solve complex TMUA combinatorial problems.

Core concept

If there are mm ways of performing one task and, for each of these, there are nn ways of performing a second task, then the total number of ways the two tasks can be completed in sequence is m×nm \times n.

The Fundamental Multiplication Principle

When we need to find the total number of combinations for a series of tasks, we use the multiplication principle. This states that if task A can be done in mm ways and task B can be done in nn ways, the number of ways to perform A then B is simply m×nm \times n. This logic extends to any number of tasks. For example, if you have pp ways to do a third task, the total combinations are m×n×pm \times n \times p.

Systematic Listing for Codes

Consider a code consisting of 4 digits, where each digit is an integer between 0 and 9 inclusive. We can determine various counts based on specific constraints:

  1. Total possible codes: Since there are 10 choices (0 to 9) for each of the four positions, the total is 10×10×10×10=10,00010 \times 10 \times 10 \times 10 = 10,000. This matches the number of integers between 0000 and 9999.

  2. Codes with unique digits: For the first digit, there are 10 choices. For the second, only 9 remain (as it must differ from the first). For the third, 8 choices remain, and for the fourth, 7 choices. The total is 10×9×8×7=5,04010 \times 9 \times 8 \times 7 = 5,040.

  3. Codes with exactly two adjacent identical digits and two unique digits: There are three possible positions for the repeated pair: positions 1 and 2, positions 2 and 3, or positions 3 and 4. We choose the digit to be repeated (10 choices) and then the two unique digits for the remaining slots (9×89 \times 8 choices). Since there are three possible configurations, the total is 3×(10×9×8)=2,1603 \times (10 \times 9 \times 8) = 2,160.

  4. Codes with at least two identical digits: It is often easier to use subtraction from the total. The number of codes with at least one repetition is the total number of codes minus the number of codes where every digit is unique: 10,0005,040=4,96010,000 - 5,040 = 4,960.

Example: Combinations of Outfits

Martha has 4 jumpers, 5 pairs of trousers, and 3 pairs of trainers. To find the total number of unique outfit combinations, we multiply the number of choices for each category: 4×5×3=604 \times 5 \times 3 = 60 different outfits.

Licence Plate Systems

Listing strategies are frequently applied to registration or licence plate problems. Suppose a system uses two letters followed by up to 4 digits (0 to 9).

Scenario A: Exactly 4 digits There are 26 possibilities for each of the two letters and 10 for each of the four digits: 26×26×10×10×10×10=6,760,00026 \times 26 \times 10 \times 10 \times 10 \times 10 = 6,760,000.

Scenario B: Exactly 4 digits, but letters must be different The first letter has 26 choices, while the second has only 25: 26×25×10×10×10×10=6,500,00026 \times 25 \times 10 \times 10 \times 10 \times 10 = 6,500,000.

Scenario C: Exactly 4 digits, letters different, and no digits repeated We combine the letter constraint with the unique digit constraint (10×9×8×710 \times 9 \times 8 \times 7): 26×25×10×9×8×7=3,276,00026 \times 25 \times 10 \times 9 \times 8 \times 7 = 3,276,000.

Scenario D: Two letters and up to 4 digits (at least 1 digit) In this case, we must sum the possibilities for plates having 1, 2, 3, and 4 digits separately:

  • One digit: 26×26×10=6,76026 \times 26 \times 10 = 6,760
  • Two digits: 26×26×10×10=67,60026 \times 26 \times 10 \times 10 = 67,600
  • Three digits: 26×26×10×10×10=676,00026 \times 26 \times 10 \times 10 \times 10 = 676,000
  • Four digits: 26×26×10×10×10×10=6,760,00026 \times 26 \times 10 \times 10 \times 10 \times 10 = 6,760,000 Total: 6,760,000+676,000+67,600+6,760=7,510,3606,760,000 + 676,000 + 67,600 + 6,760 = 7,510,360.

Key takeaways

  • The total number of ways to perform multiple tasks in sequence is found by multiplying the number of options for each individual task.
  • When a problem asks for 'at least one' or 'at least two' of something, it is often simpler to subtract the 'none' or 'unique' cases from the total.
  • For 'up to' problems, calculate the totals for each possible count separately and sum them together.
  • Always identify whether items can be repeated (sampling with replacement) or must be unique (sampling without replacement).
Tips

Draw 'slots' for each choice you need to make. Fill each slot with the number of options available for that specific position, then multiply across the slots. This helps prevent confusion in multi-step problems.

Cautions

Be careful with 'up to' constraints. Students often calculate only the maximum possible number (e.g. only 4 digits) rather than summing all cases from the minimum to the maximum (e.g. 1, 2, 3, and 4 digits).

Insight

The multiplication principle is the foundation of the 'Rule of Product' in combinatorics. It assumes that the choices are independent: the number of ways to do the second task does not change based on which option was picked for the first task.

Worked Examples

Example 1
A triangle is to be drawn with sides that are integer lengths in centimetres, and a total perimeter of 12 cm.

How many different (non-congruent) triangles can be drawn?
A:1
B:2
C:3
D:10
E:12

Practice Questions

Practice Question 1
Five runners competed in a race: Fred, George, Hermione, Lavender, and Ron.
Fred beat George.
Hermione beat Lavender.
Lavender beat George.
Ron beat George.
Assuming there were no ties, how many possible finishing orders could there have been, given only this information?
A:1
B:6
C:12
D:18
E:24
F:120

Frequently asked questions

What is the difference between 10410^4 and 10×9×8×710 \times 9 \times 8 \times 7 in digit problems?

The expression 10410^4 is used when digits can be repeated (e.g. the code 1111 is allowed). The expression 10×9×8×710 \times 9 \times 8 \times 7 is used when each digit must be unique (e.g. 1234 is allowed but 1123 is not).

How do I handle 'at least' questions in listing?

Calculate the total number of possible outcomes without constraints and subtract the cases that do not meet the criteria. For example, 'at least two digits the same' is calculated as 'Total codes' minus 'Codes where all digits are different'.

Does the order of tasks matter when multiplying?

Mathematically, the product m×nm \times n is the same as n×mn \times m. However, when listing systematically, it is helpful to follow the chronological or physical order of the tasks to ensure no combinations are missed.

Ready to test your knowledge?

You've reached the end of this section. Start a practice session to solidify your understanding and master this topic.