Capital Investments and Capital Allocation

Learning Objectives Coverage

LO1: Describe types of capital investments

Core Concept

Capital investments are long-term expenditures of funds intended to generate returns over multiple periods, requiring significant resources and strategic commitment. Different investment types carry varying risk-return profiles and evaluation criteria, making proper classification essential for the WACC-based analysis that determines whether value is created or destroyed. capital-allocation

The four categories are:

  • Going concern investments: Maintain existing operations
  • Regulatory/compliance investments: Meet legal requirements (connects to governance)
  • Expansion investments: Grow existing business lines
  • New ventures: Enter new markets or create new products

Formulas & Calculations

  • Investment classification matrix:
    Strategic Value = (Revenue Impact × Probability) + (Cost Savings × Certainty)
    Risk Score = Probability of Failure × Capital at Risk
    Priority Score = Strategic Value / Risk Score
    
  • Capital intensity ratio:
    Capital Intensity = Capital Expenditures / Revenue
    Industry benchmarks: Tech (5-10%), Manufacturing (15-25%), Utilities (30-40%)
    
  • HP 12C steps:
    • Capital intensity: [CapEx] ENTER [Revenue] ÷ 100 ×
    • Priority score: [Strategic Value] ENTER [Risk Score] ÷

Practical Examples

  • Traditional Finance Example: Amazon’s investment types
    • Going concern: Data center maintenance ($15B/year)
    • Regulatory: GDPR compliance systems ($500M)
    • Expansion: New fulfillment centers ($10B/year)
    • New ventures: Healthcare (Amazon Pharmacy), Cloud (AWS originally)
  • Interpretation: Balanced portfolio across all types ensures sustainability while driving growth

DeFi Application

defi-application Uniswap’s treasury allocation decisions map cleanly onto the traditional capital investment framework:

  • Going concern: Liquidity mining incentives to maintain existing pools
  • Regulatory: Geo-blocking for compliance (an involuntary but necessary “investment”)
  • Expansion: Multi-chain deployments to Polygon, Arbitrum, and other L2s
  • New ventures: Uniswap v4’s hooks system, enabling permissionless customization

The advantage of DAO-governed capital allocation is transparency: every treasury disbursement is a public governance vote. The disadvantage is coordination difficulty and a bias toward short-term thinking when token holders have short time horizons. capital-allocation

LO2: Describe the capital allocation process, calculate net present value (NPV), internal rate of return (IRR), and return on invested capital (ROIC), and contrast their use in capital allocation

Core Concept

Capital allocation is the process of deciding how to deploy financial resources across competing investment opportunities to maximize shareholder value. Effective capital allocation distinguishes great companies from mediocre ones — it determines long-term competitive position and shareholder returns. The discount rate used in NPV analysis is the WACC, creating a direct link between capital structure and investment decisions. exam-focus capital-allocation

The core metrics are:

  • NPV: Absolute value creation measure (uses time value of money)
  • IRR: Rate of return measure
  • ROIC: Efficiency of deployed capital (must exceed WACC for value creation)
  • Decision criteria and hurdle rates

Formulas & Calculations

formula

  • Net Present Value (NPV):
    NPV = Σ[CFt / (1+r)^t] - Initial Investment
    Where: CFt = Cash flow at time t, r = discount rate (typically WACC)
    Decision rule: Accept if NPV > 0
    
  • Internal Rate of Return (IRR):
    0 = Σ[CFt / (1+IRR)^t] - Initial Investment
    Decision rule: Accept if IRR > Hurdle Rate
    
  • Return on Invested Capital (ROIC):
    ROIC = NOPAT / Invested Capital
    Where: NOPAT = Net Operating Profit After Tax
           Invested Capital = Debt + Equity - Cash
    Value creation: ROIC > WACC (see [[Topic-6-Capital-Structure|Capital Structure]])
    
  • HP 12C steps:
    • NPV: [CF0] CHS g CF0, [CF1] g CFj, [CF2] g CFj… [i] i, f NPV
    • IRR: [CF0] CHS g CF0, [CF1] g CFj, [CF2] g CFj… f IRR
    • ROIC: [NOPAT] ENTER [Invested Capital] ÷ 100 ×

Practical Examples

  • Traditional Finance Example: Evaluating two projects
    • Project A: Initial -40M/year for 4 years, r=10%
      • NPV = 100M = $26.8M
      • IRR = 21.9%
    • Project B: Initial -20M/year for 10 years, r=10%
      • NPV = 100M = $22.9M
      • IRR = 15.1%
  • Interpretation: Project A has higher NPV and IRR but shorter duration; choice depends on reinvestment opportunities

DeFi Application

defi-application Yearn Finance vault strategies automate capital allocation using on-chain metrics:

// Simplified strategy evaluation
function evaluateStrategy(uint capital, uint expectedReturn, uint risk) public view returns (bool) {
  uint hurdle = getHurdleRate();
  uint adjustedReturn = expectedReturn - (risk * riskPremium);
  return adjustedReturn > hurdle;
}
  • Advantages/Challenges:
    • Advantages: Automated allocation, transparent metrics
    • Challenges: Difficulty modeling DeFi risks, rapid strategy obsolescence

LO3: Describe principles of capital allocation and common capital allocation pitfalls

Core Concept

Capital allocation principles are guidelines for making investment decisions that maximize long-term value while avoiding behavioral biases and analytical errors. Poor capital allocation destroys more value than almost any other management failure — it is the arena where agency conflicts do the most damage. exam-focus capital-allocation

  • Principles: Value focus, opportunity cost thinking, risk-adjusted returns
  • Pitfalls: Sunk cost fallacy, empire building, short-termism, overconfidence

Formulas & Calculations

  • Economic Value Added (EVA): formula
    EVA = NOPAT - (Invested Capital × WACC)
    Positive EVA = Value creation
    
    The WACC is the critical bridge between capital structure and capital allocation.
  • Capital allocation effectiveness:
    CAE = (Market Value Added / Total Capital Invested) × 100
    Where: MVA = Market Cap - Book Value of Equity
    
  • Hurdle rate adjustment:
    Project Hurdle Rate = WACC + Project Risk Premium
    Risk Premium = β_project × Market Risk Premium
    
  • HP 12C steps:
    • EVA: [NOPAT] ENTER [IC] [WACC] × -
    • CAE: [Market Cap] [Book Equity] - [Total Capital] ÷ 100 ×

Practical Examples

  • Traditional Finance Example: General Electric’s capital allocation failures
    • Pitfall: Empire building - acquiring businesses outside core competency
    • Pitfall: Sunk cost fallacy - continuing to invest in failing power division
    • Pitfall: Financial engineering - using buybacks to boost EPS while business deteriorated
    • Result: $500B+ market cap destruction (2000-2020)
  • Interpretation: Violated fundamental principles of value-focused allocation

DeFi Application

defi-application Olympus DAO’s (3,3) game theory serves as a cautionary tale for capital allocation in DeFi. The protocol attempted to align individual and protocol incentives through bonding and staking rewards, but fell into the classic pitfall of unsustainable return promises — essentially “empire building” automated by smart contracts. The result was a collapse from 8 per OHM token.

This parallels the GE case in traditional finance: growth at any cost, without regard for whether ROIC exceeds the true cost of capital, destroys value regardless of the organizational form. capital-allocation

LO4: Describe types of real options relevant to capital investments

Core Concept

Real options are the rights, but not obligations, to take business actions (expand, contract, delay, abandon) that are embedded in capital investment projects. Traditional NPV analysis undervalues projects with flexibility; real options capture the value of managerial flexibility in uncertain environments. This concept bridges to derivatives pricing theory. exam-focus

The four types:

  • Timing options: When to invest
  • Sizing options: How much to invest
  • Flexibility options: Ability to switch/alter
  • Abandonment options: Exit strategies

Formulas & Calculations

  • Option value components:
    Total Project Value = Static NPV + Option Value
    Option Value = max(0, S - X)
    Where: S = Value of underlying asset, X = Exercise price
    
  • Black-Scholes adaptation for real options:
    Call Value = S×N(d1) - X×e^(-rt)×N(d2)
    Where: d1 = [ln(S/X) + (r + σ²/2)t] / (σ√t)
           d2 = d1 - σ√t
    
  • Binomial tree valuation:
    Up move: u = e^(σ√Δt)
    Down move: d = 1/u
    Risk-neutral probability: p = (e^(rΔt) - d)/(u - d)
    
  • HP 12C steps:
    • Simple option value: [S] ENTER [X] - 0 CHS x≤y [result] ×

Practical Examples

  • Traditional Finance Example: Pharmaceutical R&D pipeline
    • Timing option: When to advance to Phase 2 trials
    • Expansion option: License drug for additional indications
    • Abandonment option: Kill project if Phase 1 fails
    • Value: Project NPV = -200M
  • Interpretation: Options thinking justifies seemingly negative NPV investments

DeFi Application

defi-application DeFi positions inherently contain rich real option structures. Using Compound Finance cTokens as an example:

  • Timing: When to enter/exit lending positions (exercisable 24/7, unlike traditional markets)
  • Flexibility: Switch between supply/borrow instantly
  • Abandonment: Liquidate position anytime with no paperwork
  • Expansion: Leverage through recursive borrowing (see leverage discussion)

The key advantage over traditional real options is that DeFi options are exercisable continuously with no counterparty negotiation. The key disadvantage is that gas costs create exercise friction — effectively an option premium paid to the blockchain.

Core Concepts Summary (80/20 Principle)

Must-Know Concepts

exam-focus

  1. NPV Rule: Accept projects with NPV > 0 at appropriate discount rate (WACC)
  2. IRR vs. NPV: NPV better for mutually exclusive projects; IRR for independent projects
  3. ROIC > WACC: Fundamental value creation condition
  4. Real Options: Flexibility has value beyond static NPV (connects to Derivatives)
  5. Capital Allocation Pitfalls: Sunk cost fallacy, empire building, short-termism

Quick Reference Table

MetricFormulaDecision RuleBest Use CaseDeFi Parallel
NPVΣ[CF/(1+r)^t] - I0Accept if > 0Absolute valueProtocol TVL growth
IRRSolve: NPV = 0Accept if > hurdleReturn comparisonAPY calculation
ROICNOPAT/ICCompare to WACCCapital efficiencyProtocol fee/TVL
PaybackTime to recover I0Industry specificLiquidity focusImpermanent loss recovery
Real OptionB-S or BinomialIf option value > 0Uncertainty/flexibilityLiquidity provision options

Comprehensive Formula Sheet

Essential Formulas

1. Net Present Value (Complete)
NPV = -I0 + Σ[CFt / (1+r)^t] for t=1 to n
Where: I0 = Initial investment
       CFt = Cash flow at time t
       r = Discount rate (usually WACC)
       n = Project life
Used for: Evaluating absolute value creation

2. Internal Rate of Return
0 = -I0 + Σ[CFt / (1+IRR)^t]
Solve iteratively or with calculator
Multiple IRR possible with unconventional cash flows
Used for: Comparing returns across projects

3. Modified Internal Rate of Return (MIRR)
MIRR = [(FV of positive CF / PV of negative CF)^(1/n)] - 1
Where: Reinvestment at finance rate assumed
Used for: Addressing IRR's reinvestment assumption

4. Profitability Index
PI = PV of Future Cash Flows / Initial Investment
    = (NPV + I0) / I0
Decision: Accept if PI > 1.0
Used for: Capital rationing situations

5. Economic Value Added (EVA)
EVA = NOPAT - (Invested Capital × WACC)
    = IC × (ROIC - WACC)
Used for: Performance measurement

HP 12C Calculator Sequences

Operation 1: NPV Calculation
RPN Steps: 100000 CHS g CF0
          30000 g CFj
          35000 g CFj
          40000 g CFj
          45000 g CFj
          10 i
          f NPV
Example: -$100K initial, CFs of 30K, 35K, 40K, 45K, r=10%
Result: NPV = $15,607

Operation 2: IRR Calculation
RPN Steps: [Same CF entry as above]
          f IRR
Result: IRR = 18.03%

Operation 3: ROIC Calculation
RPN Steps: 15000000 ENTER 125000000 ÷ 100 ×
Example: NOPAT=$15M, IC=$125M
Result: ROIC = 12%

Practice Problems

Basic Level (Understanding)

  1. Problem: Compare NPV and IRR for project selection
    • Given:
      • Project A: -70K in year 2, r=10%
      • Project B: -20K/year for 4 years, r=10%
    • Find: NPV and IRR for each, which to choose?
    • Solution:
      • Project A: NPV = 50K = $7,851, IRR = 18.3%
      • Project B: NPV = 50K = $13,398, IRR = 21.9%
    • Answer: Project B superior on both NPV and IRR

Intermediate Level (Application)

  1. Problem: Evaluate expansion option value
    • Given:
      • Initial project: -2M/year for 10 years
      • Expansion option: In year 3, invest additional 1.5M/year
      • Discount rate: 12%
    • Find: Value with and without expansion option
    • Solution:
      • Base NPV = 10M = $1.3M
      • With expansion: Additional NPV = (5M)/1.12³ = $1.77M
      • Total value = 1.77M = $3.07M
    • Answer: Expansion option adds $1.77M value (136% increase)

Advanced Level (Analysis)

  1. Problem: Design capital allocation framework for DeFi treasury
    • Given:
      • Treasury: $50M in stablecoins
      • Investment opportunities:
        • Liquidity provision: 15% APY, low risk
        • Yield farming: 40% APY, high risk, possible 50% loss
        • Protocol development: -$5M cost, potential 10x protocol value
      • Risk tolerance: Maximum 20% loss acceptable
    • Find: Optimal allocation
    • Solution:
      • Apply portfolio theory with risk constraints
      • Liquidity provision: 4.5M return
      • Yield farming: Limited to 50M max loss)
        • Expected: 500K
      • Development: $5M with 10x potential = high option value
      • Remaining: $5M reserve
    • Answer: Allocate 60% stable yield, 20% high risk, 10% development, 10% reserve

DeFi Applications & Real-World Examples

Traditional Finance Context

  • Institution Example: Berkshire Hathaway’s capital allocation excellence
    • No dividends - all capital reinvested at high ROIC
    • Acquisition discipline - walk away from overpriced deals
    • Float from insurance provides negative cost capital
    • Result: 20% compound returns over 50+ years
  • Market Application: Private equity leveraged buyout model - IRR focus drives strategy
  • Historical Case: Cisco’s acquisition spree (1999-2000) - destroyed $300B+ in value through poor allocation

DeFi Parallels

defi-application

  • Protocol Implementation: Convex Finance capital efficiency
    // Optimized capital allocation across Curve gauges
    function allocateToGauges(uint256 amount) external {
      uint256 bestAPR = 0;
      address bestGauge;
      
      for (uint i = 0; i < gauges.length; i++) {
        uint256 gaugeAPR = calculateAPR(gauges[i]);
        if (gaugeAPR > bestAPR) {
          bestAPR = gaugeAPR;
          bestGauge = gauges[i];
        }
      }
      
      depositToGauge(bestGauge, amount);
    }
  • Advantages: Algorithmic optimization, no human bias
  • Limitations: Cannot evaluate qualitative factors

Case Studies

  1. Case 1: WeWork’s Capital Allocation Disaster

    • Background: Raised 47B valuation
    • Failures:
      • Negative unit economics masked by growth
      • Empire building - unrelated acquisitions
      • No ROIC focus - growth at any cost
    • Outcomes: Near bankruptcy, 95% value destruction
    • Lessons: Growth without positive unit economics destroys value
  2. Case 2: Aave’s Strategic Capital Deployment defi-application

    • Background: DeFi lending protocol with governance token
    • Smart allocation:
      • Safety module staking (risk mitigation)
      • Liquidity incentives (strategic pools only — liquidity management)
      • Grant program (ecosystem development)
    • Outcomes: $12B+ TVL, profitable protocol
    • Lessons: Focused capital deployment beats spray-and-pray

Common Pitfalls & Exam Tips

Frequent Mistakes

  • Mistake 1: Using wrong discount rate - project risk ≠ company WACC
  • Mistake 2: Ignoring option value - flexibility worth more in volatile environments
  • Mistake 3: IRR for mutually exclusive projects - can lead to wrong choice

Exam Strategy

  • Time management: NPV/IRR problems take 3-4 minutes - know calculator shortcuts
  • Question patterns: Often combine NPV with real options or ask for metric comparison
  • Quick checks: IRR should be close to ROI for simple projects

Key Takeaways

Essential Points

✓ NPV is the gold standard for capital allocation - measures absolute value creation ✓ IRR useful but flawed - assumes reinvestment at IRR rate ✓ ROIC must exceed WACC for value creation - fundamental law of finance ✓ Real options add significant value in uncertain environments ✓ Capital allocation discipline separates great companies from failures

Memory Aids

  • Mnemonic: “NIPRI” for metrics - NPV, IRR, Payback, ROIC, Index
  • Visual: Think of NPV as “net worth added” to company
  • Analogy: Real options like “insurance policies” - pay premium for flexibility

Cross-References & Additional Resources

Source Materials

  • Primary Reading: Volume 3 (Corporate Issuer), Chapter 5
  • Key Sections: NPV/IRR calculations, capital allocation framework
  • Practice Questions: Focus on metric calculations and decision rules

External Resources

  • Videos: “Capital Allocation Excellence” - Buffett’s Letters
  • Articles: “The Real Options Approach” - McKinsey Quarterly
  • Tools: NPV/IRR calculators, Monte Carlo simulators

Review Checklist

Before moving on, ensure you can:

  • Identify and categorize the four types of capital investments
  • Calculate NPV, IRR, and ROIC from cash flow data
  • Explain when to use NPV vs. IRR for decisions
  • List three common capital allocation pitfalls with examples
  • Identify the four main types of real options
  • Value a simple expansion option
  • Complete NPV and IRR calculations in under 3 minutes