Think of a tree with root . It has children . Each child is itself the root of a tree.
The subtree rooted at contains and all nodes you can reach by going down from . This recursive structure matters. To compute something about , first compute it for each child, then combine those results.
The tree breaks into smaller trees. You solve small cases, then build up to the full answer.