Let
$$T(n):=\begin{cases} 3 & \text{if }n=1\\ 4 \cdot T(n/4) + 3 & \text{if }n>1\end{cases}$$
Prove that $T(n) = 4n − 1$ for all $n \geq 1$.
Base case: When $n = 1$, LHS $= T(1) = 3$, RHS $= 4 \cdot 1 − 1 = 3$. Therefore, LHS = RHS
LHS = Left hand side RHS = right hand side
Can somebody explain to me how RHS has been transformed into RHS $= 4 \cdot 1 − 1 = 3$ from $T(1) = 4 \cdot T(n/4) + 3$ ? Thanks