Explore major pitfalls in capital budgeting—overoptimistic forecasts, sunk cost fallacies, strategic misalignment, and more—and learn techniques to mitigate them for better project decisions.
Let’s talk about capital budgeting—a vital process in corporate finance where firms decide which long-term investments to undertake. When done well, capital budgeting helps allocate resources to the most value-enhancing projects and thereby supports the company’s strategic objectives. But in practice, lots of folks run into the same traps over and over. I once saw a manager (John, let’s call him)—he was so thrilled about this “can’t miss” project that he basically forgot to do a thorough risk analysis. It turned out the “can’t miss” project was actually full of hidden expenses that tanked the returns. Believe me, it wasn’t fun cleaning up that mess afterward.
In this section, we’ll walk through some of the common pitfalls in capital budgeting. You’ll see how overoptimism sneaks in, why ignoring opportunity costs is a recipe for trouble, how IRR can be confusing, and a bunch of other mistakes that can erode project value. Our goal is to help you recognize these traps so you can steer clear. Anyway, let’s jump right into it.
flowchart TB A["Capital Budgeting Decisions"] B["Overoptimistic Forecasts"] C["Sunk Costs"] D["Misalignment <br/>with Strategy"] E["Underestimating Risk"] F["Ignoring Opportunity Costs"] G["Misusing IRR"] A --> B A --> C A --> D A --> E A --> F A --> G
It’s totally normal to be enthusiastic about your company’s future. But that excitement can sometimes lead to what we call “optimism bias,” where we inflate revenue estimates and downplay cost projections. It’s like thinking you’re going to run a marathon in your personal best time when you’ve barely trained. Sure, it could happen, but maybe we should be a tad more realistic.
• Why This Matters:
• How to Mitigate It:
It’s helpful to run multiple scenarios. If your “pessimistic scenario” still suggests a decent return, you can be more confident about forging ahead. If not, you may need to refine your plan or even drop the project altogether.
Have you ever spent money on a car repair and then realized it might have been better just to buy a new car? Those repairs—once paid for—are sunk costs. In capital budgeting, sunk costs are expenses that have already been incurred and are non-recoverable. If you’ve invested $1 million in R&D on a product that’s clearly a dud, that $1 million shouldn’t factor into your decision to proceed or abandon. In practice, we often get so fixated on “recouping” that cost, we pour in even more resources.
• Why This Matters:
• How to Mitigate It:
I’ve seen companies chase any project that has a high NPV on paper, but later they realize it undermines their brand or distracts them from core competencies. Even if a project is profitable in isolation, it may not be the right move if it doesn’t push your firm’s broader mission or strategic direction.
• Why This Matters:
• How to Mitigate It:
Sometimes, the best business decisions are about what you don’t do, not just what you do.
It’s tempting to assume “everything will go right,” but that rarely holds true in real-life capital budgeting. You might have supply-chain bottlenecks, regulatory changes, or even competitor innovations that disrupt your plans.
• Why This Matters:
• How to Mitigate It:
In the CFA context, you’ll often see references to Weighted Average Cost of Capital (WACC) or scenario analyses under IFRS or US GAAP guidelines. Regardless of the framework, it’s critical to incorporate tangible risk buffers into your calculations.
Opportunity cost is one of those terms people learn in Economics 101, but it can slip our minds when we’re juggling multiple potential investments. If you commit capital and management time to one project, you’re automatically forfeiting the chance to use those resources for a different, potentially better project.
• Why This Matters:
• How to Mitigate It:
Sometimes, the second-best option might be your best long-term bet.
The Internal Rate of Return (IRR) is popular for its intuitive “percentage” metric, but it has limitations. It can be misleading if the project has non-conventional cash flows (e.g., cash outflows after inflows begin), or if there are multiple IRRs. And a single IRR might not reflect the realistic reinvestment rate of the project’s intermediate cash flows.
• Why This Matters:
• How to Mitigate It:
Below is an illustrative Python snippet that demonstrates how easily you can compute a project’s NPV and IRR—plus how you might detect multiple IRRs if the project experiences multiple sign changes in its cash flows:
1import numpy as np
2
3cash_flows = [-100000, 20000, 30000, 40000, 50000]
4discount_rate = 0.10
5
6npv = sum([cf / (1 + discount_rate)**t for t, cf in enumerate(cash_flows)])
7print("NPV:", round(npv, 2))
8
9# Note: This approach may return one IRR even if multiple exist
10def npv_func(r, cash_flows):
11 return sum([cf / (1 + r)**t for t, cf in enumerate(cash_flows)])
12
13irr_guess = 0.10
14result = np.irr(cash_flows) # Numpy's built-in IRR function
15print("IRR:", round(result, 4))
16
17sign_changes = 0
18for i in range(1, len(cash_flows)):
19 if cash_flows[i] * cash_flows[i-1] < 0:
20 sign_changes += 1
21print("Sign changes in the series:", sign_changes)
22if sign_changes > 1:
23 print("Multiple IRRs may exist.")
• Cross-Check with Other Metrics: Relying on a single measure (like IRR) can be risky. Use NPV, Payback Period, and maybe even MIRR collectively.
• Align with Corporate Governance: Ensure the Board of Directors or an investment committee reviews large-scale projects, consistent with good corporate governance (see Chapter 3 for governance mechanisms).
• Document Assumptions: If you ever want to revisit a project’s estimates, you’ll need to know the assumptions that went into your “base case” scenario.
Occasionally, you might need to present your discounting or capital budgeting formula in a neat mathematical format. For example, the NPV (Net Present Value) of a series of cash flows CF at times t = 0, 1, 2, …, n can be shown as:
Here, r is the discount rate or cost of capital. The project is acceptable (assuming no capital rationing) if:
• Sunk Cost: An expense already incurred and not recoverable. Sunk costs should not factor into future decisions.
• Opportunity Cost: The value of the best alternative forgone when a particular project is chosen.
• Optimism Bias: The tendency to overestimate favorable outcomes (like higher revenue) and underestimate negative outcomes.
• Baker, M., & Wurgler, J. (Various Papers): Insightful research on behavioral finance biases in capital budgeting and corporate finance decision-making.
• CFA Institute Level I & II Curriculum: For deeper discussions on behavioral biases that creep into corporate finance.
• Bazerman, M., & Moore, D.: Books on decision-making, cognitive biases, and the perils they pose to rational financial analysis.
• IFRS & US GAAP: Always consult the relevant accounting standards for expense recognition, asset capitalization, and compliance for consistent capital project evaluation.
• Watch Out for Behavioral Bias: The biggest pitfall is letting biases overtake data-driven analysis.
• Master Multiple Measures: IRR, NPV, Payback, and MIRR all have roles in your exam (and real life).
• Keep Projects in the Bigger Picture: Tie back to strategic objectives, stakeholder interests, and corporate governance frameworks.
• Time Management: For constructed-response questions, outline your approach first—then dive into calculations.
You’re almost on the home stretch! Capital budgeting can be intricate, but with practice—and by avoiding these pitfalls—you’ll be well-prepared for tackling exam questions and real-world financial challenges.
Important Notice: FinancialAnalystGuide.com provides supplemental CFA study materials, including mock exams, sample exam questions, and other practice resources to aid your exam preparation. These resources are not affiliated with or endorsed by the CFA Institute. CFA® and Chartered Financial Analyst® are registered trademarks owned exclusively by CFA Institute. Our content is independent, and we do not guarantee exam success. CFA Institute does not endorse, promote, or warrant the accuracy or quality of our products.