Closed form $T_n=\frac{1}{4-T_{n-1}}$ for $T_0=0$

150 Views Asked by At

I already showed how to solve the following recurrence? $t(n)=[4-t(n-1)]^{-1}$ that for $T_0 \neq 0$ or $T_k \neq 0$ we have,

$$T_{n}=\frac{c_1(2+\sqrt{3})^{n-1}+c_2(2-\sqrt{3})^{n-1}}{c_1(2+\sqrt{3})^n+c_2(2-\sqrt{3})^n}$$

But this does not work for $T_0=0$ what should I do. I'm thinking taking the limit as $T_0 \to 0$ but not sure how to do it.

2

There are 2 best solutions below

3
On BEST ANSWER

Note you can set $c_1=1$ always, since $c_1$ and $c_2$ can be scaled by the same number. Also set $\alpha=2+\sqrt3$ and $\beta=2-\sqrt3$. When I solve $$ \frac{\alpha^{0-1}+c_2\beta^{0-1}}{\alpha^{0}+c_2\beta^{0}}=k $$ for $c_2$, I get $$ c_2 = \frac{\sqrt3+k-2}{\sqrt3+k+2}. $$ So we can certainly try setting $c_2 = \frac{\sqrt3-2}{\sqrt3+2} = -\beta^2$ and see what happens. And sure enough, the formula $$ T_n = \frac{\alpha^{n-1}-\beta^2\beta^{n-1}}{\alpha^{n}-\beta^2\beta^{n}} = \frac{\alpha^{n-1}-\beta^{n+1}}{\alpha^{n}-\beta^{n+2}} $$ does seem to give the sequence accurately in the case $T_0=0$.

4
On

Here is my answer :-

Note that $t(0)=0=0/1$

$t(1)=1/4$

$t(2)=4/15$

$t(3)=15/36$

Or, $t(1)=\frac{1}{4-0}$

$t(2)=\frac{1}{\frac{16}{4}-\frac{1}{4}}$

$t(3)=\frac{1}{\frac{60}{15}-\frac{4}{15}}$

...

So $t(n)=\frac{a_{n-1}}{an}=\frac{a_{n-1}}{4a_{n-1}-a_{n-2}}$ with $a_{0}=0 \space and\space a_{1}=1$

We have $a_{n}=4a_{n-1}-a_{n-2}$ which is equivalent to $p(x)=x^2-4x+1$

We find that the roots of this equation are $2+\sqrt(3) \space and\space 2 - \sqrt(3)$

Let's say $r_{1}=2+\sqrt(3)$ and $r_{2}=2-\sqrt{3}$

So $a(n)=c_{1}(2+\sqrt{3})^n+c_{2}(2-\sqrt{3})^n$

For n=0, we get $c_{1}+c_{2}=0$

For n=1, we get $c_{2}=\frac{-1}{2\sqrt{3}}$

Hence,a(n)=$\frac{1}{2\sqrt{3}}(2+\sqrt{3})^n-\frac{1}{2\sqrt{3}}(2-\sqrt{3})^n$

So T(n)=$\frac{\frac{1}{2\sqrt{3}}(2+\sqrt{3})^{n-1}-\frac{1}{2\sqrt{3}}(2-\sqrt{3})^{n-1}}{\frac{1}{2\sqrt{3}}(2+\sqrt{3})^n-\frac{1}{2\sqrt{3}}(2-\sqrt{3})^n}$

=$\frac{(2+\sqrt{3})^{n-1}-(2-\sqrt{3})^{n-1}}{(2+\sqrt{3})^n-(2-\sqrt{3})^n}$