Exercise 7.1

Exercise 7.1#

Question 1#

Consider the following series:

T0=1Tn=(Tn1) 3/2+2

calculate the value of n where Tn first exceeds a value of 100.

Hint: You may wish to use a while loop.

(The answer is n=4)

Question 2#

Calculate the N-th term in the Fibonacci sequence, where N is given as a user input. The sequence is given by:

T0=1T1=1Tn=Tn1+Tn2