The document discusses different representations of recursive algorithms, including code, stack of stack frames, and tree of stack frames. A stack of stack frames traces the execution of a recursive algorithm on a computer by showing each stack frame. This allows step-by-step tracing but does not explain why the algorithm works or generalize to other inputs. A tree of stack frames shows the entire computation by arranging stack frames in a tree structure, providing more intuition but at the expense of concreteness.