Page 1 of 3

Growing Bacteria

Posted: Tue Mar 24, 2009 7:10 pm
by jeetee
I think I don't get the description of the algorithm correctly.

When I calculate the first 8 days starting with one bacteria, I find that there are 48 bacterias after 8 days, not 47.
I wrote the algorithm in C++, but of course my answer isn't correct, which is to expect when I can't even work out the first 8 days manually...

Could anyone hint me out ?

Posted: Tue Mar 24, 2009 10:19 pm
by gfoot
I agree with the 8-day answer of 47, but that's through reasoning rather than simulation. Maybe we interpreted the rules differently, but I can't see how.

Posted: Tue Mar 24, 2009 10:27 pm
by bsguedes
Each bacterium is able to generate ONLY two new bacteria, one in the next day to its birth and the second in the second day after is birth. Each one of the generated bacteria follow these rules too. It is also necessary to remove from population the dead bacteria (I think that jeetee has forgotten to kill the first bacterium to get 48 instead of 47 in the 8th day).

Cheers,
Bruno.

Posted: Wed Mar 25, 2009 6:16 pm
by E2YnDlEMXiU
even if your counts are slightly off for the 8 day example (mine was as well), simply execute your program and see when it reaches 10**12... you can easily figure out the answer then.

Posted: Fri Mar 27, 2009 3:15 pm
by Bierdeckel
Its realy simple.

You could finde the answer without any coding. Math is your friend :D

Even with coding its realy simple. My vb-code is just 13 lines long.

Posted: Mon Apr 20, 2009 10:28 am
by horst
I get 51 bacteria for day 8 :cry:

1 => 1
2 => 3
3 => 6
4 => 10
5 => 15
6 => 25
7 => 34
8 => 51

This challenge drives me crazy...

Posted: Mon Apr 20, 2009 11:41 am
by lukas
horst wrote:I get 51 bacteria for day 8 :cry:

1 => 1
2 => 3
3 => 6
4 => 10
5 => 15
6 => 25
7 => 34
8 => 51

This challenge drives me crazy...
If one bacteria splits at day 1 you have two on day 2 and not three.

My Ruby Code was also just 8 lines long. Although a nice challenge.

Posted: Mon Apr 20, 2009 1:55 pm
by horst
Ouch, thank you, I thought a bit too complicated. Got it now =)

Posted: Wed Apr 29, 2009 2:04 pm
by homeas
finally a challenge to relax,

why writing any code at all? - just use the windows (or pocket or xxx) calculator ...

Posted: Wed Apr 29, 2009 2:54 pm
by bsguedes
homeas wrote:finally a challenge to relax,

why writing any code at all? - just use the windows (or pocket or xxx) calculator ...
:D

The main idea was to be an easy challenge =]

Posted: Sun May 31, 2009 1:54 pm
by contagious
fibonacci sequence... again

Posted: Wed Jun 24, 2009 7:52 pm
by ellarso
contagious wrote:fibonacci sequence... again
Not quite! In a fibonacci sequence each number is the sum of the previous two.
0,1,1,2,3,5,8,13,21,34,55,89,...
Especially, the hint for day 8 (47) does not work!

Posted: Thu Jun 25, 2009 2:09 am
by gfoot
It is related, but discussion of exactly how should probably go in the "solved" forum...

Posted: Wed Jul 01, 2009 5:45 pm
by psycore
Damn. I tried over weeks to create some java code for the bacteria cycle. I got the cycle of the new bacteria kind in code. Then I remembered the current topic of our maths lessons. Two minutes of calculator action. But hey, at least I learned a lot about coding java.

And to the guys wondering about the cycle. It says that there is that cycle for a bacteria and that scientist have found a new kind of that bacteria. But really, don't focus on the cycle so much.

Posted: Fri Jan 22, 2010 9:59 pm
by Mosher
Found a rather simple solution via Access

Code excerpt as follows (don´t wonder about german words, i´m german ^^)

Code: Select all

x = 1
a = 1
b = 0
c = 0
d = 0
e = 0
...



s is the amount of bacteria after day x

a, b, c, d, and e are the amount of bacteria which are in stadium 1, 2, 3, 4, 5 accordig to challange´s description

a1, b1, c1, d1 are auxiliary variables to save the old data for preventing circle-referrence between variables