Question
Option 1: Problem 1 The Fibonacci numbersFnare defined as follows: F0 is 1, F1 is 1, andFi+2 =Fi+Fi+1 i = 0, 1, 2, .... In
Option 1: Problem 1
The Fibonacci numbersFnare defined as follows: F0 is 1, F1 is 1, andFi+2 =Fi+Fi+1 i = 0, 1, 2, .... In other words, each number is the sum of the previous two numbers. The first few Fibonacci numbers are 1, 1, 2, 3, 5, and 8. One place where these numbers occur is as certain population growth rates. If a population has no deaths, then the series shows the size of the population after each time period.
It takes an organism two time periods to mature to reproducing age, and then the organism reproduces once every time period. The formula applies most straightforwardly to asexual reproduction at a rate of one offspring per time period. In any event, the green crud population grows at this rate and has a time period of five days. Hence, if a green crud population starts out as 10 pounds of crud, then in five days, there is still 10 pounds of crud; in ten days, there is 20 pounds of crud, in fifteen days, 30 pounds, in twenty days, 50 pounds, and so forth.
Write a program that takes both the initial size of a green crud population (in pounds) and a number of days as input and outputs the number of pounds of green crud after that many days. Assume that the population size is the same for four days and then increases every fifth day
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started