I want to solve recurrence relation as following : $$ g_{l+1} = (1-2t)g_l+2\sqrt{t(1-t)}b_l \quad and \quad b_{l+1}=(1-2t)b_l-2\sqrt{t(1-t)}g_l \quad $$ $$ g_0=\sqrt{t} \quad and \quad b_0 = \sqrt{1-t}$$ where t is constant
I tried generating function method
Let $ G(x) = \sum_{m=0}^{\infty} g_mx^m $ and $ B(x)= \sum_{m=0}^{\infty} b_mx^m $
Then the recurrence relation becomes $$ g_{l+1}x^{l+1}=(1-2t)g_lx^{l+1}+2\sqrt{t(1-t)}b_lx^{l+1} \quad and \quad b_{l+1}x^{l+1}=(1-2t)b_lx^{l+1}-2\sqrt{t(1-t)}g_lx^{l+1}$$
Continuing calculation, $$ G(x) = (1-2t)xG(x) + 2\sqrt{t(1-t)}xB(x) \quad and \quad B(x)=(1-2t)xB(x)-2\sqrt{t(1-t)}xG(x)$$ $$ B(x) = -\frac{2\sqrt{t(1-t)}x}{1-(1-2t)x}G(x) $$
Substituting B(x) to LHS equation, $$G(x)=(1-2t)xG(x)-\frac{4t(1-t)x^2}{1-(1-2t)x}G(x) $$ $$[x^2-2(1-2t)x+1]G(x)=0$$
Then I get the result $ x=(1-2t) \pm 2\sqrt{t^2-t} $
But there is no information about $g_l$ and $ b_l $
How can I solve this recurrence formula?