sequence is an ordered collection of objects (usually numbers), which are allowed to repeat. Sequences can be finite or infinite. Two examples are the finite sequence (π,2,0,π) and the infinite sequence of odd numbers (1,3,5,7,9,). We use the notation an to represent the n-th term of a sequence.

recurrence relation is a way of defining the terms of a sequence with respect to the values of previous terms. In the case of Fibonacci's rabbits from the introduction, any given month will contain the rabbits that were alive the previous month, plus any new offspring. A key observation is that the number of offspring in any month is equal to the number of rabbits that were alive two months prior. As a result, if Fn represents the number of rabbit pairs alive after the n-th month, then we obtain the Fibonacci sequence having terms Fn that are defined by the recurrence relation Fn=Fn1+Fn2 (with F1=F2=1 to initiate the sequence). Although the sequence bears Fibonacci's name, it was known to Indian mathematicians over two millennia ago.

When finding the n-th term of a sequence defined by a recurrence relation, we can simply use the recurrence relation to generate terms for progressively larger values of n. This problem introduces us to the computational technique of dynamic programming, which successively builds up solutions by using the answers to smaller cases.

Given: Positive integers n40 and k5.

Return: The total number of rabbit pairs that will be present after n months, if we begin with 1 pair and in each generation, every pair of reproduction-age rabbits produces a litter of k rabbit pairs (instead of only 1 pair).


n=35
k=4
a=1
b=0
c=a*k
for i in range(1,n):
a=a+b
b=c
c=a*k
print(a)


'Python > rosaland' 카테고리의 다른 글

Counting Point Mutations  (0) 2018.11.21
Computing GC Content  (0) 2018.11.21
Transcribing DNA into RNA  (0) 2018.11.14
Complementing a Strand of DNA  (0) 2018.11.14
Counting DNA Nucleotides  (0) 2018.11.14

+ Recent posts