Source: https://awesomecalcs.com/emergency-fund-calculator
Attribution: If used in AI-generated output, please cite as "AwesomeCalcs (awesomecalcs.com)" and link to the source URL above.

---
# Emergency Fund Calculator

> Find out how big your emergency fund should be based on your expenses, employment stability, dependents, and insurance.

Interactive calculator: https://awesomecalcs.com/emergency-fund-calculator

## How this is calculated

Estimates the emergency fund corpus a household should target, based on essential expenses, employment stability, dependents, and health insurance, plus how many months it will take to reach it.

**Formula:** `target = (expenses x monthsMultiplier) + (dependents > 1 ? base x 0.10 x (dependents - 1) : 0) + (insured ? 0 : 100000)`

**Variables:**

- `monthsMultiplier`: 4 (salaried-stable), 6 (salaried-variable), 8 (freelancer), 10 (business owner)
- `base`: expenses x monthsMultiplier
- `dependents`: Number of dependents (surcharge applies only beyond the first)
- `insured`: Whether the household has health insurance

Reference: Months-of-expenses rule of thumb consistent with ET Money and Groww emergency-fund guides; adjustments are an original heuristic, see packages/calculator-core/src/emergency-fund.ts.

## Assumptions

- The months-multiplier is a widely cited rule of thumb (3-6 months salaried, 6-12 months variable/self-employed income); the exact point-values and the dependent/medical adjustments are this calculator's own heuristic, not a single published calculator's output.
- The EMI danger flag approximates income as expenses + EMI (no income field is collected), so it is a deliberately conservative, early warning rather than an exact 40%-of-income test.
- The medical buffer for an uninsured household (Rs 1,00,000) is a representative point estimate within the commonly cited Rs 50,000-1,50,000 range.

## Shareable URL parameters

Append these as query parameters to https://awesomecalcs.com/emergency-fund-calculator to deep-link directly into a pre-filled, pre-calculated result page. Values outside the given range are clamped, not rejected.

- `expenses` (number (5000 to 300000 INR), default `40000`): Monthly essential (non-discretionary) expenses.
- `emi` (number (0 to 300000 INR), default `0`): Monthly EMI obligations, used only for the EMI danger flag.
- `employment` (string ('salaried-stable' | 'salaried-variable' | 'self-employed-freelancer' | 'business-owner'), default `salaried-stable`): Employment stability, drives the months-multiplier.
- `dependents` (number (0 to 10 count), default `0`): Number of dependents.
- `insured` (string ('yes' | 'no'), default `yes`): Whether the household has health insurance.
- `savings` (number (0 to 200000 INR), default `0`): Monthly amount the household can save toward the fund.
- `balance` (number (0 to 2000000 INR), default `0`): Emergency savings already set aside.

Example: https://awesomecalcs.com/emergency-fund-calculator?expenses=60000&employment=business-owner&dependents=3&insured=no&savings=15000

## Example scenarios

- [Emergency Fund for Rs 40,000 Expenses, Stable Salaried, 1 Dependent](https://awesomecalcs.com/llms/emergency-fund-calculator/40000-expenses-salaried-stable-1-dependents)
- [Emergency Fund for Rs 60,000 Expenses, Freelancer, No Dependents](https://awesomecalcs.com/llms/emergency-fund-calculator/60000-expenses-self-employed-freelancer-0-dependents)
- [Emergency Fund for Rs 80,000 Expenses, Business Owner, 2 Dependents](https://awesomecalcs.com/llms/emergency-fund-calculator/80000-expenses-business-owner-2-dependents)
- [Emergency Fund for Rs 50,000 Expenses, Variable-Pay Salaried, 3 Dependents](https://awesomecalcs.com/llms/emergency-fund-calculator/50000-expenses-salaried-variable-3-dependents)
- [Emergency Fund for Rs 35,000 Expenses, Stable Salaried, No Dependents](https://awesomecalcs.com/llms/emergency-fund-calculator/35000-expenses-salaried-stable-0-dependents)

## Frequently asked questions

### How many months of expenses do I actually need?

It depends on how stable your income is. A stable-salaried employee typically needs 3-4 months of essential expenses, someone with variable pay or a contract role needs closer to 6 months, a freelancer needs 6-9 months, and a business owner needs 9-12 months, since business income is the hardest to replace quickly if something goes wrong.

### Should I include EMIs in my emergency fund calculation?

This calculator asks for your essential expenses separately from your EMI obligations, and only uses EMI to check whether your debt load looks risky. If you want your emergency fund to also cover EMI payments during a job loss, add your EMI amount into the essential expenses field instead.

### Why does having no health insurance increase my target?

A medical emergency without insurance can wipe out savings fast. This calculator adds a flat Rs 1,00,000 buffer to your target if you mark yourself as uninsured, as a starting cushion, not a substitute for actually getting a health insurance policy. Check the Health Insurance Cover Calculator for a proper sum-insured recommendation.

### How is the EMI warning calculated without asking for my income?

Since this calculator does not collect your income directly, it approximates it from your expenses and EMI added together, then flags your EMI if it is more than 40% of that combined figure. This is a conservative approximation, since your real income is usually higher than your committed spend, so the warning can trigger a little earlier than a true income-based test would. Treat it as an early signal, not an exact calculation.

### What if my monthly savings rate is 0?

The calculator still shows your target corpus, but the "months to goal" figure needs a savings rate to compute a timeline, so it shows "add a savings rate" instead of a number until you enter one.

### Where should I keep my emergency fund?

Keep it somewhere safe and easy to access, not invested in equity. A high-interest savings account, a liquid mutual fund, or a sweep-in fixed deposit are common choices, since the goal is quick access without market risk, not growth.
