How to Calculate Hurdle Rate Private Equity

Private Equity Hurdle Rate Calculator

Distribution Analysis

Total Preferred Return (Hurdle Amount):
Total Capital + Preferred Return:
Excess Profit (Above Hurdle):
function calculateHurdle() { var capital = parseFloat(document.getElementById('capital_contributed').value); var rate = parseFloat(document.getElementById('hurdle_rate_percent').value); var years = parseFloat(document.getElementById('investment_years').value); var proceeds = parseFloat(document.getElementById('exit_proceeds').value); if (isNaN(capital) || isNaN(rate) || isNaN(years) || isNaN(proceeds)) { alert("Please enter valid numbers in all fields."); return; } // Calculation for Preferred Return (Compounded Annually) // FV = P * (1 + r)^n var totalPrefReturnAmount = capital * Math.pow((1 + (rate / 100)), years); var hurdleOnly = totalPrefReturnAmount – capital; var excessProfit = proceeds – totalPrefReturnAmount; document.getElementById('res_total_hurdle').innerText = '$' + hurdleOnly.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('res_total_pref').innerText = '$' + totalPrefReturnAmount.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); var excessEl = document.getElementById('res_excess_profit'); var statusEl = document.getElementById('hurdle_status'); if (excessProfit > 0) { excessEl.innerText = '$' + excessProfit.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); excessEl.style.color = '#2f855a'; statusEl.innerText = "HURDLE MET: General Partner may now receive carried interest."; statusEl.style.backgroundColor = "#c6f6d5"; statusEl.style.color = "#22543d"; } else { excessEl.innerText = '$0.00'; excessEl.style.color = '#c53030'; statusEl.innerText = "HURDLE NOT MET: Limited Partners receive all remaining proceeds."; statusEl.style.backgroundColor = "#fed7d7"; statusEl.style.color = "#822727"; } document.getElementById('hurdle_results').style.display = 'block'; }

Understanding the Hurdle Rate in Private Equity

In the world of private equity, the hurdle rate (also known as the "preferred return") is a critical threshold that determines how profits are distributed between the Limited Partners (LPs) and the General Partner (GP). It represents the minimum annual return the fund must achieve before the GP is entitled to "carried interest" or performance fees.

How to Calculate the Hurdle Rate

Most private equity funds use a compounded annual hurdle rate. The formula follows the standard compound interest math:

Preferred Return Amount = Initial Capital × (1 + Hurdle Rate)Years

Once the initial capital plus this preferred return is paid back to the LPs, the fund enters the "catch-up" or "carried interest" phase.

Hard Hurdle vs. Soft Hurdle

  • Hard Hurdle: The GP only receives carried interest on the profits above the hurdle rate. If the hurdle is 8% and the fund returns 10%, the GP only gets a share of the 2% excess.
  • Soft Hurdle: If the fund hits the 8% hurdle, the GP is entitled to a share of the entire profit (all 10%), usually facilitated by a "GP Catch-up" clause.

Example Calculation

Imagine a Private Equity fund with the following terms:

  • Initial Investment: $10,000,000
  • Hurdle Rate: 8%
  • Hold Period: 5 Years
  • Exit Proceeds: $20,000,000

First, calculate the required preferred return for the LPs: $10M × (1 + 0.08)^5 ≈ $14,693,280. This means the first $14.69 million goes directly to the LPs. The remaining $5,306,720 represents the excess profit available for distribution according to the waterfall structure (including the GP's carried interest).

Why the Hurdle Rate Matters

The hurdle rate serves as a primary alignment tool. It ensures that the General Partner is only rewarded for delivering performance that exceeds a baseline cost of capital. For LPs, it provides a safety margin, ensuring they receive a predetermined rate of return before sharing upside with the fund managers.

Leave a Comment