The total amount of money available to pay all claimants.
$
The sum of all accepted claims from every party involved.
$
The specific amount you are owed or have claimed.
Your Claim Percentage:0.00%
Recovery Rate (Cents on the Dollar):$0.00
Estimated Pro Rata Share:$0.00
function calculateShare() {
// Get input elements by exact ID
var fundInput = document.getElementById('totalSettlementFund');
var totalClaimsInput = document.getElementById('totalValidClaims');
var myClaimInput = document.getElementById('individualClaim');
var errorDiv = document.getElementById('errorMessage');
var resultDiv = document.getElementById('results');
// Parse values
var fundAmount = parseFloat(fundInput.value);
var totalClaimsAmount = parseFloat(totalClaimsInput.value);
var myClaimAmount = parseFloat(myClaimInput.value);
// Reset display
errorDiv.style.display = 'none';
resultDiv.style.display = 'none';
// Validation Logic
if (isNaN(fundAmount) || isNaN(totalClaimsAmount) || isNaN(myClaimAmount)) {
errorDiv.innerText = "Please enter valid numbers in all fields.";
errorDiv.style.display = 'block';
return;
}
if (totalClaimsAmount <= 0) {
errorDiv.innerText = "Total Amount of All Valid Claims must be greater than zero.";
errorDiv.style.display = 'block';
return;
}
if (fundAmount < 0 || myClaimAmount claim).
// For strictly pro rata, if the fund is 2x the claims, you get 2x your claim. In legal settlements, it usually caps at 100% of claim.
// We will assume standard bankruptcy/insolvency logic where Fund Claims, we calculate straight proportion but usually limit to claim amount in text explanation.
var percentageDisplay = (claimRatio * 100).toFixed(4) + '%';
// Formatting currency
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
});
document.getElementById('percentageResult').innerText = percentageDisplay;
document.getElementById('recoveryRateResult').innerText = formatter.format(recoveryRate) + " per $1 claimed";
document.getElementById('shareAmountResult').innerText = formatter.format(myShare);
resultDiv.style.display = 'block';
}
How to Calculate Your Pro Rata Share of a Settlement
In legal and financial contexts, settlements are often distributed on a "pro rata" basis. This Latin term translates to "in proportion." This calculation is essential when the total amount of money available (the settlement fund) is less than the total sum of all legitimate claims against that fund.
This situation frequently occurs in class action lawsuits, bankruptcy proceedings, and insurance cases where the policy limit is insufficient to cover all damages. Our calculator above helps you determine exactly what portion of the settlement you are entitled to based on the size of your individual claim relative to the whole.
The Core Concept: You receive a percentage of the settlement fund equal to the percentage of the total debt/damages that your claim represents.
The Pro Rata Formula
To calculate your share manually, you need three specific numbers, which correspond to the inputs in our calculator:
Total Settlement Fund ($F): The fixed pot of money available for distribution.
Total Valid Claims ($T): The sum of all approved claims from every participant involved.
Your Individual Claim ($I): The specific amount approved for your case.
The math is performed in two steps:
Step 1: Determine Your Ratio
Divide your claim by the total of all claims.
Ratio = Your Individual Claim / Total Valid Claims
Step 2: Calculate Your Share
Multiply that ratio by the settlement fund.
Your Share = Ratio × Total Settlement Fund
Real-World Example Calculation
Let's assume a company declares bankruptcy. There is a limited pool of assets available to pay creditors.
Total Settlement Fund: $1,000,000
Total Valid Claims: $5,000,000 (The company owes far more than it has)
In this scenario, even though you are owed $100,000, your pro rata share of the available settlement is $20,000. This is often referred to as recovering "20 cents on the dollar."
Why Does Pro Rata Distribution Matter?
Pro rata distribution ensures fairness (equity) among claimants. Without this method, the first person to sue or file a claim might deplete the entire fund, leaving nothing for others. By distributing funds proportionally, every claimant suffers the shortfall or enjoys the recovery at the exact same rate.
Common Use Cases
Class Action Lawsuits: When a settlement is capped, payments are divided among all class members who submit valid claim forms.
Insurance Policy Limits: If multiple people are injured in an accident and the total damages exceed the at-fault driver's insurance limits, the insurer offers a pro rata split.
Bankruptcy & Liquidation: Unsecured creditors typically receive a pro rata distribution from the liquidation of assets.
What if the Settlement Fund is Larger than Total Claims?
If the Total Settlement Fund exceeds the Total Amount of All Valid Claims, claimants typically receive 100% of their claim value. Pro rata calculations are specifically designed for scenarios involving a shortfall (insolvency or capped funds).