$n≥2 , T(0)=1, T(1)=4$
$T(n) = 5T(n-1)+6T(n-2)$
$T(n)$= General rule and $O(n)$ = Big $O$ notation
$T(n)=?$
$O(n)=?$
I tried to use the information provided.
$T(2) = 5.4 + 6.1=26$
$T(3) = 5.26 + 6.4 = 154$
$T(4) = 5.154 + 6.26 = 926$
$T(n) = ...............?$
How do I create the pattern?(Please don't tell me to study this again. I tried and failed.)
I will give you an specific method to solve this. If you want more information about this topic this equation is called a linear recurence equation (they can be solved in many different methods, and I think it is a nice subject to study). Since $T(n) = 5T(n-1)+6T(n-2)$ we can find the characteristic polynomial of the recurence which is $x^2-5x-6$. This polynomial has roots $x=-1,6$, so the general term is: $$T(n)=a(-1)^n+b6^n$$ With the initial conditions T(0)=1, T(1)=4 we can find the values of $a$ and $b$: $$a+b=1$$ $$-a+6b=4$$ This gives us $a=\frac{2}{7}$ and $b=\frac{5}{7}$ and hence: $$T(n)=\frac{2}{7}(-1)^n+\frac{5}{7}6^n$$
From this, one gets that: $$O(n)=\frac{5}{7}6^n$$ (I am not sure if this is what you want as $O(n)$)