Table of Contents

Motivation Problem (GCF)

------------------------

Greatest Common Factor

------------------------

Short Cut Methods for GCF

------------------------

Motivation Problem (LCM)

------------------------

Least Common Multiple

 

 

Motivation Problem for GCF

How are factors involved in the following scenario?

Gary has 20 table tennis balls and 16 paddles. He wants to sell common sized packages containing both paddles and balls. What is the greatest number of packages he can sell with no left over balls or paddles?

We use factors to search for solutions to the first problem.

1 · 20 = 20 and 1 · 16 = 16

One package with 20 balls and 16 paddles.

2 · 10 = 20 and 2 · 8 = 16

Two packages each with 10 balls and 8 paddles.

4 · 5 = 20 and 4 · 4 = 16

Four packages each with 5 balls and 4 paddles.

The question can be answered by finding the greatest common factor. If Gary wants to divide the balls and paddles into packages with each package containing the same number of balls then we are looking for a number that is a factor of both. This is what we would call a common factor. The above illustration shows that Gary has three options for packaging the balls and paddles with one, two, or four packages. If we want to create as many packages as possible then we are looking for the greatest common factor.   

Example:

Set of factors of 20 is {1, 2, 4 , 5, 10, 20}

Set of factors of 16 is {1, 2, 4 , 8, 16}

From these two lists we see that the greatest common factor of 20 and 16 is 4, so Gary would be able to sell four packages each containing four paddles and five balls.

This problem motivates a need for being able to determine the greatest common factor for two or more values.


return to top | next page