Another way to identify the correct recurrence is to solve each of the four candidate recurrences using the Master theorem (or simple pattern recognition) and check which one produces the well-known \(O(\log n)\) time complexity of binary search.
Solving each recurrence and comparing its result against binary search's known \(O(\log n)\) complexity leaves only one recurrence that matches.
Therefore, the correct answer is T(n) = T(n/2) + 1.