Skip to content
Skip to main content

About this free course

Download this course

Share this free course

Digital thinking tools for better decision making
Digital thinking tools for better decision making

Start this free course now. Just create an account and sign in. Enrol and complete the course for a free statement of participation or digital badge if available.

3 The size of a set

Every set has a size: how many members it contains. If a set has been stored in Python, you can find its size using len. For example, here is a set of numbers:

nums = {6, 3, 5, 1, 7, 9, 11, 4}

If you enter this into the Python shell below and then execute

>>> len(nums)

you should get 8.

Active content not displayed. This content requires JavaScript to be enabled.
Interactive feature not available in single page view (see it in standard view).

Euler diagrams are useful for reasoning about the size of sets. For example, consider the set of 52 playing cards in a standard pack (also called a deck). Figure 11 shows two smaller sets – picture cards and hearts – are contained in the overall set of size 52.

Described image
Figure 13 Picture cards and Hearts are sets contained within overall pack

Picture cards are jacks, queens and kings, and there are 12 of these altogether, 3 per suit. There are 13 cards in each suit.

The shaded intersection in Figure 14 represents the picture cards that are also hearts. There are 3 of these.

Described image
Figure 14 Picture cards and Hearts are sets contained within overall pack. There are 3.

You can continue to explore this in the next activity.

Activity 3 Figure it out

Timing: Allow about 5 minutes

The shaded areas in the diagrams below represent, respectively:

  • picture cards that are not hearts
  • hearts that are not picture cards
  • cards that are neither hearts nor picture cards.
Described image
Figure 15 Solution to activity

Using a pen and paper, copy the original Euler diagram and fill in the numbers for each of these regions.

Discussion

Your Euler diagram with the numbers should look like this.

Described image
Figure 16 The intersection of Picture cards and Hearts contains 3 cards.