A decision tree breaks one decision into a chain of yes-or-no questions, with each branch ending in an action you can take. This template gives you a blank structure to fill in and a worked example beside it, plus a legend showing which shape means a question and which means an outcome. Product teams, support leads and anyone stuck between options use it to make the reasoning visible.
Both are branching diagrams, and they answer different questions. A flowchart documents a process: the sequence of steps that turns an input into an output, loops and all. A decision tree maps a single choice, so each branch is a yes or no and every path ends in an outcome rather than rejoining the flow. Draw a flowchart when you're describing how work moves. Draw a decision tree when you're choosing between options.
A decision tree is a branching diagram that breaks one decision into a sequence of yes-or-no questions, with every path ending in an outcome. The decision sits at the top, each question splits the remaining options in two, and the leaves are the actions you'd actually take. Decision analysis, finance and customer support all lean on the same structure.
Start with the decision at the top, written as the choice you're making. Add the question that eliminates the most options first, then branch it Yes and No. Keep splitting until every path reaches an action rather than another opinion. Then test it: take a case you already decided, walk it down, and see whether the tree agrees with you.
Loan approval is the classic one: credit score above a threshold, then employment history, then approve or decline. Support teams triage a ticket the same way, asking whether it's a bug and whether it's blocking before escalating or queueing it. Product teams use one to decide whether to build something, checking the quarter's goal, the success metric, then team dependencies.
They share a name and a shape, not a job. The diagram here is drawn by hand to make a human decision explicit, with questions you choose and outcomes you write. A machine learning decision tree is fitted from data by an algorithm that splits on whichever feature separates the classes best, and it exists to predict rather than to explain a choice you're facing.
Fewer than feels natural. Three or four questions deep is usually plenty, and past that most of the paths never get walked. If you need more depth, that's often a sign two separate decisions have got tangled together and belong in their own trees. Every question you add doubles the number of paths a reader has to hold.