How to Calculate Implied Cap Rate

.icr-calculator-wrapper { max-width: 700px; margin: 20px auto; padding: 25px; background: #f9fbfd; border: 1px solid #e1e4e8; border-radius: 8px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .icr-calculator-wrapper h2 { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; } .icr-input-group { margin-bottom: 15px; display: flex; flex-direction: column; } .icr-input-group label { font-weight: 600; margin-bottom: 5px; color: #4a5568; font-size: 14px; } .icr-input-group input { padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 16px; transition: border-color 0.2s; } .icr-input-group input:focus { border-color: #3182ce; outline: none; box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1); } .icr-row { display: flex; gap: 20px; } .icr-col { flex: 1; } .icr-calc-btn { width: 100%; padding: 14px; background-color: #2b6cb0; color: white; border: none; border-radius: 6px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; margin-top: 10px; } .icr-calc-btn:hover { background-color: #2c5282; } .icr-result-container { margin-top: 25px; padding: 20px; background-color: #fff; border: 1px solid #e2e8f0; border-radius: 8px; text-align: center; display: none; } .icr-result-value { font-size: 36px; font-weight: 800; color: #2b6cb0; margin: 10px 0; } .icr-result-label { font-size: 14px; color: #718096; text-transform: uppercase; letter-spacing: 0.5px; } .icr-sub-results { display: flex; justify-content: space-around; margin-top: 20px; border-top: 1px solid #edf2f7; padding-top: 15px; } .icr-sub-item { text-align: center; } .icr-sub-val { font-weight: 700; color: #2d3748; } .icr-sub-lbl { font-size: 12px; color: #718096; } .icr-note { font-size: 12px; color: #718096; margin-top: 5px; font-style: italic; } @media (max-width: 600px) { .icr-row { flex-direction: column; gap: 0; } }

Implied Cap Rate Calculator (REITs)

Total annual income generated by the property portfolio after operating expenses.
Implied Capitalization Rate
0.00%
$0
Equity Market Cap
$0
Implied Asset Value (EV)
function calculateImpliedCapRate() { // Get Inputs var noi = parseFloat(document.getElementById('icr_noi').value); var sharePrice = parseFloat(document.getElementById('icr_share_price').value); var shares = parseFloat(document.getElementById('icr_shares').value); var debt = parseFloat(document.getElementById('icr_debt').value); var cash = parseFloat(document.getElementById('icr_cash').value); // Validation if (isNaN(noi) || isNaN(sharePrice) || isNaN(shares) || isNaN(debt) || isNaN(cash)) { alert("Please enter valid numeric values for all fields."); return; } if (shares <= 0 || sharePrice <= 0) { alert("Shares and Share Price must be greater than zero."); return; } // Calculation Logic // 1. Calculate Equity Market Capitalization var marketCap = sharePrice * shares; // 2. Calculate Implied Enterprise Value (Net Asset Value proxy) // Formula: Market Cap + Debt – Cash // This represents the total value of the properties implied by the stock market var impliedEV = marketCap + debt – cash; if (impliedEV <= 0) { alert("Implied Enterprise Value is zero or negative. Check your debt and cash inputs."); return; } // 3. Calculate Implied Cap Rate // Formula: (NOI / Implied Enterprise Value) * 100 var impliedCapRate = (noi / impliedEV) * 100; // formatting helpers var formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', maximumFractionDigits: 0 }); // Display Results document.getElementById('icr_final_rate').innerText = impliedCapRate.toFixed(2) + "%"; document.getElementById('icr_market_cap').innerText = formatter.format(marketCap); document.getElementById('icr_ev').innerText = formatter.format(impliedEV); document.getElementById('icr_result').style.display = 'block'; }

How to Calculate Implied Cap Rate for REITs

The Implied Capitalization Rate (Implied Cap Rate) is a fundamental valuation metric used by real estate investors to analyze Real Estate Investment Trusts (REITs). Unlike a private real estate transaction where the price is negotiated directly, a REIT is traded on the stock market. The Implied Cap Rate helps investors understand the yield the market is assigning to the REIT's portfolio of properties based on its current share price.

The Implied Cap Rate Formula

To calculate the implied cap rate, you must first determine the implied value of the REIT's assets (often called the Implied Enterprise Value) and compare it to the Net Operating Income (NOI). The formula is:

Implied Cap Rate = (Net Operating Income / Implied Enterprise Value) × 100

Where Implied Enterprise Value is calculated as:

  • Market Capitalization (Share Price × Shares Outstanding)
  • + Total Debt
  • Cash & Cash Equivalents

Why is Implied Cap Rate Important?

This metric allows investors to compare the valuation of a public REIT against the private market.

  • Trading at a Discount: If a REIT's implied cap rate is higher than the cap rates for similar properties selling in the private market, the REIT may be undervalued (trading at a discount to Net Asset Value).
  • Trading at a Premium: If the implied cap rate is lower than private market rates, the REIT shares might be expensive relative to the underlying real estate value.

Example Calculation

Imagine a REIT with the following financials:

  • NOI: $50,000,000
  • Share Price: $20.00
  • Shares Outstanding: 20,000,000
  • Total Debt: $400,000,000
  • Cash: $10,000,000

Step 1: Calculate Market Cap
$20.00 × 20,000,000 shares = $400,000,000.

Step 2: Calculate Implied Enterprise Value
$400M (Market Cap) + $400M (Debt) – $10M (Cash) = $790,000,000.

Step 3: Calculate Implied Cap Rate
($50,000,000 / $790,000,000) = 0.0632 or 6.32%.

Leave a Comment