function calculateProRata() {
// Retrieve inputs using var
var roundSizeInput = document.getElementById('fundingRoundSize');
var ownershipInput = document.getElementById('currentOwnership');
var resultBox = document.getElementById('result-box');
var errorMsg = document.getElementById('error-msg');
var displayRound = document.getElementById('displayRoundSize');
var displayOwnership = document.getElementById('displayOwnership');
var displayInvestment = document.getElementById('displayInvestment');
// Parse values
var roundSize = parseFloat(roundSizeInput.value);
var ownership = parseFloat(ownershipInput.value);
// Validation
if (isNaN(roundSize) || isNaN(ownership) || roundSize < 0 || ownership < 0) {
errorMsg.style.display = 'block';
resultBox.style.display = 'none';
return;
}
// Hide error if valid
errorMsg.style.display = 'none';
// Core Calculation
// Pro Rata Investment = Total Round Size * (Ownership % / 100)
var investmentAmount = roundSize * (ownership / 100);
// Formatting currency
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 0,
maximumFractionDigits: 2
});
// Update DOM
displayRound.innerText = formatter.format(roundSize);
displayOwnership.innerText = ownership + "%";
displayInvestment.innerText = formatter.format(investmentAmount);
// Show results
resultBox.style.display = 'block';
}
How to Calculate Pro Rata Investment Amount
In the world of venture capital and angel investing, maintaining your ownership percentage in a growing company is crucial for maximizing returns. This is known as exercising your Pro Rata Rights. Pro rata refers to the right of an investor to participate in subsequent funding rounds to maintain their percentage of ownership in the company.
Without exercising these rights, an early investor's stake gets "diluted" as the company issues new shares to new investors. Calculating the exact dollar amount required to hold your position is a fundamental skill for portfolio management.
The Pro Rata Formula
The calculation to determine your pro rata allocation is relatively straightforward. It is based on the size of the new funding round and your fully diluted ownership percentage immediately prior to that round.
Pro Rata Investment = Total New Round Size ($) × (Your Ownership Stake % / 100)
Step-by-Step Calculation Example
Let's assume you were an early Seed investor in a startup and you currently own 5% of the company on a fully diluted basis. The startup is now raising a Series A round of financing.
Current Ownership: 5%
Total Series A Round Size: $10,000,000
To calculate your allocation:
1. Take the total round size: $10,000,000
2. Multiply by your ownership percentage expressed as a decimal (0.05).
3. $10,000,000 × 0.05 = $500,000
Therefore, you must invest $500,000 in the new round to maintain your 5% ownership stake. If you choose not to invest (or invest less), your 5% stake will decrease proportionally as new shares are issued to other investors.
Why Pro Rata Calculation Matters
1. Anti-Dilution Defense: Startups typically issue 15% to 25% of the company in new shares during a priced round. If you do not follow on with your pro rata, your slice of the pie shrinks.
2. Reserve Planning: VCs and angel investors must "reserve" capital from their funds specifically for these follow-on investments. Accurate calculation helps in allocating reserves correctly so you don't run out of cash when your winners are raising money.
3. Super Pro Rata: In some cases, investors may have the opportunity to invest more than their pro rata amount to increase their ownership stake, known as "Super Pro Rata," though this requires specific negotiation with the founders and lead investors.
Factors That Complicate the Math
While the calculator above provides the core allocation amount, real-world scenarios can include variables such as:
Option Pool Refresh: If the company increases the employee option pool pre-money, it dilutes existing shareholders before the pro rata calculation applies.
Convertible Notes / SAFEs: If there are converting securities, the "fully diluted" share count must be calculated accurately before applying your percentage.
Major Investor Rights: Sometimes pro rata rights are contractually limited to "Major Investors" who hold above a certain threshold of shares.