Let $f(n)$ be the smallest number for which the following statement is true: "Any deck of n cards in any order, we can sort using at most $f(n)$ comparisons." What can you say about $f(52)? f(n)?$
attempt: Suppose $f(n)$ be the smallest number for which the following statement is true: "Any deck of n cards in any order, we can sort using at most $f(n)$ comparisons." Then if we start with 52 cards, and shuffle them, then there are $n!$ possible ways to order the deck of cards. So $f(n) = n! $, and so we have at most $f(52) = 52!$ comparisons.
I don't really know if this makes sense. Could someone please give me some feedback or help me? Thank you!