I'm trying to find the closed form of the Fibonacci recurrence but, out of curiosity, in a particular way with limited starting information. I am aware that the Fibonacci recurrence can be solved fairly easily using the characteristic root technique (and its corresponding linear algebra interpretation):
http://discrete.openmathbooks.org/dmoi3/sec_recurrence.html
But what I'm wondering is if its possible to determine Fibonacci Recurrence's closed form using the following two theorems:
$\forall n \ge 2, \sum_{i=1}^{n-2} F_i = F_n - 2$
$\forall n \ge 1, F_n < ((1 + \sqrt 5)/2)^n $
I suspect that it may be possible because the 2nd theorem involves the "golden ratio" $\varphi = (1 + \sqrt 5)/2$, but I have no idea where I might start so some hints or a little insight would be appreciated. Both theorems are true and I can provide the proofs if necessary.
Im using the following definition of the Fibonacci Recurrence:
$F_0 = F_1 = 1$
$F_{i+1} = F_i + F_{i-1} , \forall i \ge 2$