.pro-rata-calculator-box {
background: #fdfdfd;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 30px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
margin-bottom: 40px;
}
.pro-rata-title {
text-align: center;
color: #2c3e50;
margin-bottom: 25px;
font-size: 24px;
font-weight: 700;
}
.pro-rata-form-group {
margin-bottom: 20px;
}
.pro-rata-label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #444;
}
.pro-rata-input-wrapper {
position: relative;
}
.pro-rata-input {
width: 100%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 16px;
box-sizing: border-box;
transition: border-color 0.3s;
}
.pro-rata-input:focus {
border-color: #3498db;
outline: none;
}
.pro-rata-symbol {
position: absolute;
top: 50%;
transform: translateY(-50%);
color: #777;
font-weight: 500;
}
.symbol-left { left: 15px; }
.input-pad-left { padding-left: 30px; }
.symbol-right { right: 15px; }
.input-pad-right { padding-right: 30px; }
.pro-rata-btn {
display: block;
width: 100%;
padding: 14px;
background-color: #27ae60;
color: white;
border: none;
border-radius: 6px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.2s;
margin-top: 10px;
}
.pro-rata-btn:hover {
background-color: #219150;
}
.pro-rata-results {
margin-top: 30px;
padding: 20px;
background-color: #f8f9fa;
border-radius: 6px;
border-left: 5px solid #3498db;
display: none;
}
.result-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.result-row:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.result-label {
font-size: 15px;
color: #666;
}
.result-value {
font-size: 18px;
font-weight: bold;
color: #2c3e50;
}
.result-big {
font-size: 28px;
color: #27ae60;
}
.article-content h2 { color: #2c3e50; margin-top: 40px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.article-content h3 { color: #34495e; margin-top: 30px; }
.article-content ul { padding-left: 20px; }
.article-content li { margin-bottom: 10px; }
.info-box { background: #e8f4fd; padding: 15px; border-radius: 5px; margin: 20px 0; border-left: 4px solid #3498db; }
function calculateProRata() {
// Get inputs by specific IDs
var roundSizeInput = document.getElementById('roundSize');
var ownershipInput = document.getElementById('currentOwnership');
// Parse values
var roundSize = parseFloat(roundSizeInput.value);
var ownershipPercent = parseFloat(ownershipInput.value);
// Validation
if (isNaN(roundSize) || roundSize < 0) {
alert("Please enter a valid Total New Round Size.");
return;
}
if (isNaN(ownershipPercent) || ownershipPercent 100) {
alert("Please enter a valid Current Ownership Percentage (0-100).");
return;
}
// Calculation Logic:
// Pro Rata Investment = Total New Round Size * (Current Ownership % / 100)
var requiredInvestment = roundSize * (ownershipPercent / 100);
// Formatting Currency
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 0,
maximumFractionDigits: 0
});
// Update Result Elements
document.getElementById('displayRoundSize').innerText = formatter.format(roundSize);
document.getElementById('displayOwnership').innerText = ownershipPercent + "%";
document.getElementById('finalInvestment').innerText = formatter.format(requiredInvestment);
// Show Results
document.getElementById('resultsArea').style.display = 'block';
}
How to Calculate Pro Rata Investment Rights
In the world of venture capital and angel investing, a pro rata right is one of the most valuable provisions an investor can secure. It grants the investor the right, but not the obligation, to participate in future funding rounds to maintain their percentage of ownership in the company.
Without exercising pro rata rights, an early investor's stake typically gets "diluted" as new shares are issued to new investors. This calculator helps you determine exactly how much capital you need to deploy in a new financing round to keep your equity stake constant.
The Pro Rata Formula
The calculation for determining your pro rata investment allocation is relatively straightforward. It is based on the size of the new funding round and your ownership percentage just before that round (often referred to as pre-money ownership).
Formula:
Investment Amount = Total New Round Size × Current Ownership Percentage
Example Calculation
Let's say you were an early Seed investor in a startup and currently own 5% of the company's fully diluted shares. The startup is now raising a Series A round of $10,000,000.
To calculate your pro rata allocation:
- Total New Round Size: $10,000,000
- Your Ownership: 5% (0.05)
- Calculation: $10,000,000 × 0.05 = $500,000
You would need to invest $500,000 in the Series A round to maintain your 5% ownership stake. If you choose not to invest (or invest less), your 5% stake will decrease proportionally to the new shares issued.
Why Calculate Pro Rata?
Understanding your pro rata obligation is critical for portfolio management for several reasons:
- Capital Reserves: VCs and Angels must reserve capital (often 50% or more of their fund) specifically for follow-on investments.
- Dilution Protection: In high-growth companies (a "unicorn"), maintaining your ownership percentage can exponentially increase returns. A 5% stake in a $1B company is significantly more valuable than a diluted 1% stake.
- Allocation Negotiation: In hot deals, new lead investors may try to squeeze out smaller existing investors. Knowing your exact pro rata calculation gives you the legal leverage to demand your allocation.
Exceptions and "Super Pro Rata"
While the standard formula above covers the vast majority of scenarios, there are edge cases:
- Super Pro Rata: Sometimes investors negotiate the right to purchase more than their current percentage, effectively increasing their ownership in a new round.
- Pay-to-Play: Some term sheets include provisions that force an investor to exercise their pro rata rights or lose them entirely (and sometimes have their preferred stock converted to common).
- ESOP Pools: The creation of new employee option pools can complicate the math slightly, usually slightly diluting everyone, including those exercising pro rata rights, depending on whether the pool is calculated pre-money or post-money.