4) A road race is taking place for bicyclists. Susan put a blue marker post every 2600 meters along the route. Ravi places a red marker post every 1800 meters. How far from the start is the first place re a blue post and a red post will be together?
|
This is a least common multiple (LCM) problem.
The LCM of 2 numbers is their multiple divided by their greatest common factor (GCF):
    LCM(a,b) = a x b / GCF(a,b)
1. To simplify the arithmetic, divide both distances by 100 = 26 and 18
2. Find the greatest common factor of these 2 numbers = 2
3. Multiply the 2 reduced numbers together and divide by this GCF =
    26 x 18 / 2 = 234
4. Multiply by 100 to get the true distance = 23400 meters.
|
5) A bowl is full of blue, red, and green jelly beans. There are three times as many blue as there are red. There are also two times as many green as there are blue. Altogether there are 210 jelly beans in the bowl. How many blue jelly beans are in the bowl?
|
Method 1: Count them up from red:
Assume you have 1 red jelly bean.
1. If there are 3 times as many blue as red, then there are 3 blue ones.
2. If there are 2 times as many green as blue, then there are 6 green
3. Compute the sum of 1 + these 2 numbers =
    1 + 3 + 6 = 10
4. Divide the number of jelly beans by this sum =
    210/10 = 21
5. Multiply the number of blue beans, above by this factor to get the total blues =
    3 x 21 = 63
Method 2: Use algebra.
- Let R = # of red, B = # of blue and G = # of green marbles
- Then
B = 3R and
G = 2B = 2(3R) = 6R
- Write the equation:
R + B + G = 210
R + 3R + 6R = 210
10R = 210, so R = 21
Therefore B = 3R = 63
|