I am having some problem trying to understand why
T(n)=16T(n/4)+n!
is considered
Θ(n!)
I am using the following master theorem below from here:
https://www.geeksforgeeks.org/advanced-master-theorem-for-divide-and-conquer-recurrences/
The confusing part here is that my friend says that the answer is actually O(n!) and not Θ(n!)... So I am really confused.