Calculate your percentage salary increase or Compound Annual Growth Rate (CAGR)
Enter "1" for a simple raise calculation.
Income Difference:–
Total Percentage Growth:–
Annualized Growth Rate (CAGR):–
Start to Finish Multiplier:–
function calculateGrowth() {
var startIncome = parseFloat(document.getElementById('startIncome').value);
var endIncome = parseFloat(document.getElementById('endIncome').value);
var years = parseFloat(document.getElementById('timePeriod').value);
var resultArea = document.getElementById('result-area');
// Validation
if (isNaN(startIncome) || isNaN(endIncome) || startIncome <= 0) {
alert("Please enter valid income amounts. Starting income must be greater than zero.");
resultArea.style.display = 'none';
return;
}
if (isNaN(years) || years 1) {
// Formula: (End / Start)^(1/n) – 1
var cagrDecimal = Math.pow((endIncome / startIncome), (1 / years)) – 1;
var cagrPercent = cagrDecimal * 100;
document.getElementById('cagrVal').innerHTML = cagrPercent.toFixed(2) + '%';
cagrRow.style.display = 'flex';
} else {
cagrRow.style.display = 'none';
}
resultArea.style.display = 'block';
}
How to Calculate Income Growth Rate
Understanding how your income grows over time is a fundamental aspect of personal finance and career management. Whether you are negotiating a salary increase, evaluating the performance of your business, or tracking your net worth, calculating your income growth rate gives you a clear metric to measure progress against inflation and your personal goals.
The Basic Income Growth Formula
To calculate the simple growth rate between two periods (usually year-over-year), you use the standard percentage change formula:
Example: If you earned 50,000 last year and 55,000 this year:
Difference = 55,000 – 50,000 = 5,000
Division = 5,000 / 50,000 = 0.10
Percentage = 0.10 × 100 = 10% Growth
Calculating Annualized Growth (CAGR)
If you want to measure your income growth over a longer period, such as 5 or 10 years, a simple percentage change isn't enough because it doesn't account for the compounding effect. For this, you use the Compound Annual Growth Rate (CAGR). This tells you what your constant annual growth rate would have been to get from your starting salary to your ending salary.
CAGR = ( (Ending Value / Beginning Value) ^ (1 / Number of Years) ) – 1
Example: You started at 40,000 and five years later you earn 60,000:
Ratio = 60,000 / 40,000 = 1.5
Exponent = 1 / 5 = 0.2
Calculation = 1.5 ^ 0.2 = 1.0845
Result = 1.0845 – 1 = 0.0845 or 8.45% per year
Why Tracking This Metric Matters
Calculating your income growth rate helps you answer critical financial questions:
Beating Inflation: If inflation is 3% and your income growth is 2%, your purchasing power is actually decreasing.
Career Trajectory: Are you staying stagnant in your role? A flattening growth rate might indicate it's time to upskill or switch jobs.
Financial Independence: High income growth rates in your early career can significantly accelerate your path to retirement by allowing for higher savings rates.
What is a Good Income Growth Rate?
While this varies heavily by industry and career stage, a "good" growth rate typically exceeds the inflation rate significantly. Early in a career, double-digit growth (10-15%) is often common due to promotions and job hopping. In later career stages, growth often stabilizes to match cost-of-living adjustments (3-5%).