Why do Decision Trees create axis-aligned decision boundaries?
Updated May 16, 2026
Short answer
Decision Trees create axis-aligned splits because each decision evaluates only one feature at a time.
Deep explanation
Standard decision trees (CART, ID3 variants) evaluate splits using a single feature threshold, such as x_i <= t. This results in rectangular partitions of feature space, known as axis-aligned boundaries. While this simplifies optimization and improves interpretability, it limits the model's ability to represent diagonal or nonlinear boundaries efficiently, often requiring many splits to approximate complex decision surfaces.
Unlock with a Pro subscription to view this section.
View pricingReal-world example
No real-world example available yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProCommon mistakes
No common mistakes listed yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProFollow-up questions
No follow-up questions available yet.
Unlock with a Pro subscription to view this section.
Upgrade to Pro