I've been trying to learn how to solve some recurrence relations lately and I have no idea how I would go about solving something like this, if possible.
$T(n) = a \cdot T(n-1) + b \cdot \sqrt{T(n-1)}$
My main problem is that I have no idea how to work with the square root term. The context of this problem is actually in economics. When looking at the level of capital at some time $t$ it's equal to some depreciation rate constant, $a$ times the capital at time $t-1$ added to some savings rate constant, $b$, times the output level at time $t-1$. In a basic case we consider output to be the square root of capital and that's why there is a square root term.
I spent some time trying random things and didn't have much luck so any help, if possible, would be greatly appreciated!