Cigarette Butts

Algebra Level 3

Michael picks up cigarette butts from the ground and can make a cigarette with 4 butts.

If he finds 16 cigarette butts, how many cigarettes can he make?

Image Credit: Wikimedia Cigarette ashtray


The answer is 5.

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.

3 solutions

Lew Sterling Jr
Jan 26, 2015

5

He makes 4 cigarettes with the 16 butts.

Then, he smokes them and has 4 more butts to make another cigarette.

Brock Brown
Mar 3, 2015

I wrote up a quick simulation for this scenario:

Python 2.7:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# pick up butts
butts = 16
cigarettes = 0
while butts >= 4:
    # make a cigarette
    butts -= 4
    cigarettes += 1
    # smoke it
    butts += 1
print "Answer:", cigarettes
print "Leftover butts:", butts

Michael can make 5 \boxed{5} cigarettes, with 1 butt left over.

Michael should also explore the possibility of b e t t e r h y g i e n e \boxed{better\ hygiene} .

Great solution Sir! Really simple code, but it solves the problem efficiently and quickly. I love solutions that go for a different approach rather than the usual solutions. I must say that your wish to be preserved in strawberry jell-o is very amusing, so may i ask if it is true? Please don't take offense to my stupid question, I don't mean any harm.

A Former Brilliant Member - 11 months, 3 weeks ago
Vishal S
Jan 27, 2015

He can make 4 cigarette buts from 16 cigarette buts.From 1 cigarette from 4 cigarette buts .Therefore the n.o. of cigarettes he can make from 16 cigarettes is 4+1=5

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...