Roses and Bees

Algebra Level 1

There are some roses in a garden and some bees are hovering over them.

  • If every bee lands on a different rose, one of them won't get a rose.
  • If every two bees share one rose, then there will be one rose left without any bees.

Which of the following is a possible number of roses and the number of bees in the garden?

1 Rose and 1 Bee 2 Roses and 4 Bees 3 Roses and 4 Bees 3 Roses and 5 Bees 5 Roses and 6 Bees

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Chung Kevin
Dec 16, 2016

Let the number of roses be R R , and the number of bees be B B .
The first equation tells us that B 1 = R B -1 = R
The second equation tells us that B = 2 ( R 1 ) B = 2(R-1) .
Substituting the first equation into the second, we obtain 2 ( R 1 ) 1 = R 2 R 3 = R R = 3 2(R-1) - 1 = R \Rightarrow 2R - 3 = R \Rightarrow R = 3 .
Thus B = R + 1 = 4 B = R+1 = 4 .

There are 3 roses and 4 bees.

Second wording is a bit ambiguous, I took it to mean that exactly 1 rose was shared by 2 bees

Alex Li - 4 years, 5 months ago

Log in to reply

Thanks. I've updated the phrasing to "if every two bees". I believe this addresses @Daniel Tello 's concern too.

Calvin Lin Staff - 4 years, 5 months ago

Log in to reply

Yes that cleared everything up! Thanks!

Daniel Tello - 4 years, 5 months ago

I don't think the answer is correct. The answer says there are 4 bees and 3 roses. This satisfies the first situation but not the second. So if there are 2 bees on 1 rose that leaves 2 roses and 2 bees left. Both bees will have a rose to land on, leaving every bee with a rose. However, according to the second situation there would be one rose without a bee. This happens with 6 bees and 5 roses too. 2 bees land on 1 rose, leaving 4 bees and 4 roses.

Daniel Tello - 4 years, 5 months ago

Log in to reply

If there are 3 roses and 4 bees, and the bees were to pair up, then the bees will be on 4/2 = 2 roses. This leaves 1 left.

Chung Kevin - 4 years, 5 months ago

Log in to reply

yeah your right ! :)

Charlotte Milanese - 4 years, 5 months ago

This is a really cool problem and I c ant believe I got it right ! LOL

Charlotte Milanese - 4 years, 5 months ago

yeah this is sooo cool ! lol how do you do it lol

Charlotte Milanese - 4 years, 5 months ago

yes this is cool

Charlotte Milanese - 4 years, 5 months ago
Lily Zhang
Sep 16, 2019

def bees rose(): for bee in range(1,100): for rose in range(1, 100): if bee - rose == 1 and rose - (bee / 2) == 1: return bee,rose print(bees rose())

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...