This is recurrence $T(n)$
$ T(n) = \begin{cases} c, & \text{if $n$ is 1} \\ 2T(\lfloor(n/4)\rfloor) + 16, & \text{if $n$ is > 1} \end{cases}$
This is my attempt to show that $T(n) \in \Omega(n^{0.5})$ with proof by induction
Statement: The recurrence $T(n) \ge bn^{1/2}$ for all $n \gt n_0$
Base case($n=1$) : $T(1) = c$
Base case true as long as $c \ge $ b
Inductive hypothesis: Assume that $T(k) \ge bk^{0.5}$ for all $k\lt n$
Inductive step ($n\gt1$)
$T(n)=2T(\lfloor(n/4)\rfloor) + 16$
$2T(\lfloor(n/4)\rfloor) + 16\ge 2b(\lfloor(n/4)\rfloor)^{0.5} + 16$ By Inductive hypothesis
$2b(\lfloor(n/4)\rfloor)^{0.5} + 16 \ge 2b(n/16)^{0.5} + 16$
$2b(n/16)^{0.5} + 16 = \frac{b\sqrt{n}}{2} + 16$
Now to complete the proof by induction, I have to show that $\frac{b\sqrt{n}}{2} + 16 \ge b\sqrt{n}$
Solving for b, I got $b\le\frac{32}{\sqrt{n}}$.
My issue here is that I can't find an appropriate $b$ to use to meet the definition of $\Omega(n^{0.5})$ based off the inductive step because in the inductive step, $b$ is in terms of a variable $n$. Does anyone know of a way I can choose $b$ so that it is a constant, like $c$ to meet the definition?