How does Random Forest relate to the bias-variance-covariance decomposition formally?
Updated May 17, 2026
Short answer
Random Forest reduces ensemble variance by lowering covariance between trees while averaging individual variances.
Deep explanation
The ensemble error can be decomposed as Var(average of trees) = (1/T)σ² + (1 - 1/T)ρσ², where σ² is variance of individual trees and ρ is pairwise correlation. Random Forest explicitly targets ρ via bootstrap sampling and feature subsampling. Even if σ² remains high (deep trees), reducing ρ yields significant variance reduction. This decomposition explains why RF works even with overfitted base learners.
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