Finding a general form $d_n$ for a recurrence relation

145 Views Asked by At

I have the following recurrence relation

$$d_n = 2^{(1-2n)/2}d_{n-1},\qquad d_0=1,$$

for $n\in\mathbb{Z}$. Is it possible to find a general form for $n$?


After calculating a few numbers around zero I have

$$d_0 = 2^{1/2}d_{-1}$$ $$d_1 = 2^{-1/2}d_{0}=2^{-1/2}2^{1/2}d_{-1} = d_{-1}$$ $$d_2 = 2^{-3/2}d_1 = 2^{-3/2}d_{-1}$$ $$d_3 = 2^{-5/2}d_2 = 2^{-4}d_{-1}$$

But I'm not really seeing a pattern. Is this even possible?

2

There are 2 best solutions below

0
On BEST ANSWER

Starting with $$d_n = 2^{(1-2n)/2}d_{n-1}$$ define $c_n=\log(d_n)$ and the relation becomes $$c_n=\frac{1-2n}2\,\log(2)+c_{n-1}$$ which is much simpler to build; the general solution is $$c_n=C-\frac{1}{2} n^2 \log (2)$$ Since you are given $d_0=1$, $c_0=0$, $C=0$ and then $$c_n=-\frac{1}{2} n^2 \log (2)\implies d_n=2^{-\frac{n^2}{2}}$$

4
On

If $$\frac{d_n}{d_{n-1}}=2^{-\frac{2n-1}{2}} $$ by multiplying all these identities for $n=1,2,\ldots, N$ we get:

$$ d_N = d_0\cdot 2^{-\frac{1}{2}\sum_{n=1}^{N}(2n-1)} = \color{red}{d_0\cdot 2^{-N^2/2}}.$$