💰 Finance

Plan 1 Loan Calculator Uk

Free plan 1 loan calculator uk — instant accurate results with step-by-step breakdown. No signup required.

⚡ Free to use 📱 Mobile friendly 🕒 Updated: June 03, 2026
🧮 Plan 1 Loan Calculator Uk
function calculate() { const loanAmount = parseFloat(document.getElementById('i1').value) || 0; const salary = parseFloat(document.getElementById('i2').value) || 0; const interestRate = parseFloat(document.getElementById('i3').value) || 0; const termYears = parseFloat(document.getElementById('i4').value) || 1; const planType = document.getElementById('i5').value; const extraPayment = parseFloat(document.getElementById('i6').value) || 0; // Plan 1 thresholds (UK Student Loan) const thresholdPre2012 = 17775; // £17,775 per year const thresholdPost2012 = 22015; // £22,015 per year const threshold = planType === 'pre2012' ? thresholdPre2012 : thresholdPost2012; // Interest rate cap (Plan 1: RPI or Bank of England base rate + 1%, capped at RPI) // Using input rate directly as simplified model const annualRate = interestRate / 100; const monthlyRate = annualRate / 12; const totalMonths = termYears * 12; // Income-based repayment: 9% of income above threshold const annualAboveThreshold = Math.max(0, salary - threshold); const annualRepayment = annualAboveThreshold * 0.09; const monthlyRepaymentIncome = annualRepayment / 12; // Standard loan repayment (amortization) let monthlyRepaymentStandard = 0; if (monthlyRate > 0) { monthlyRepaymentStandard = loanAmount * (monthlyRate * Math.pow(1 + monthlyRate, totalMonths)) / (Math.pow(1 + monthlyRate, totalMonths) - 1); } else { monthlyRepaymentStandard = loanAmount / totalMonths; } // Effective monthly payment is the minimum of income-based and standard, plus extra const monthlyPayment = Math.min(monthlyRepaymentIncome, monthlyRepaymentStandard) + extraPayment; // Calculate total interest and payoff time let balance = loanAmount; let totalInterest = 0; let monthsToPayoff = 0; let maxMonths = totalMonths; const breakdownRows = []; for (let m = 1; m <= maxMonths; m++) { if (balance <= 0) break; const interest = balance * monthlyRate; const principal = monthlyPayment - interest; if (principal <= 0) { // If payment doesn't cover interest, loan never pays off monthsToPayoff = Infinity; totalInterest = Infinity; break; } balance -= principal; totalInterest += interest; monthsToPayoff = m; // Store first 12 months and last few for breakdown if (m <= 12 || m > maxMonths - 3 || m === monthsToPayoff) { breakdownRows.push({ month: m, payment: monthlyPayment, interest: interest, principal: principal, balance: Math.max(0, balance) }); } } // If loan never pays off within term if (monthsToPayoff === Infinity || monthsToPayoff > totalMonths) { monthsToPayoff = totalMonths; balance = loanAmount; totalInterest = 0; // Recalculate with standard amortization for display for (let m = 1; m <= totalMonths; m++) { const interest = balance * monthlyRate; const principal = monthlyRepaymentStandard - interest; balance -= principal; totalInterest += interest; } } const totalPaid = loanAmount + totalInterest; const totalPaidWithExtra = monthlyPayment * monthsToPayoff; // Determine color coding const affordabilityRatio = monthlyPayment / (salary / 12); let affordabilityColor = 'green'; if (affordabilityRatio > 0.15) affordabilityColor = 'yellow'; if (affordabilityRatio > 0.25) affordabilityColor = 'red'; let termColor = 'green'; if (monthsToPayoff > 240) termColor = 'yellow'; if (monthsToPayoff > 300) termColor = 'red'; // Show result section document.getElementById('result-section').style.display = 'block'; // Primary result showResult( monthlyPayment, 'Monthly Repayment', [ { label: 'Total Repayment', value: '£' + totalPaidWithExtra.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: 'green' }, { label: 'Total Interest', value: '£' + totalInterest.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: totalInterest > loanAmount * 0.5 ? 'red' : 'yellow' }, { label: 'Payoff Time', value: (monthsToPayoff === Infinity ? 'Never' : Math.floor(monthsToPayoff / 12) + ' yr ' + (monthsToPayoff % 12) + ' mo'), cls: termColor }, { label: 'Affordability', value: (affordabilityRatio * 100).toFixed(1) + '% of income', cls: affordabilityColor } ] ); // Build breakdown table let tableHtml = '

📊 Repayment Breakdown

'; tableHtml += ''; for (const row of breakdownRows) { const balanceCls = row.balance === 0 ? 'green' : (row.balance > loanAmount * 0.5 ? 'red
📊 Projected Student Loan Balance Over 10 Years for a Plan 1 Loan

What is Plan 1 Loan Calculator Uk?

A Plan 1 Loan Calculator UK is a specialized financial tool designed to calculate the monthly repayments, total interest, and overall cost of a student loan taken out under the Plan 1 repayment system in England, Wales, or Northern Ireland. Unlike standard loan calculators, this tool specifically accounts for the unique threshold-based repayment structure of Plan 1 loans, where you only repay 9% of your income above a specific annual threshold, and any remaining debt is written off after 25 years. Real-world relevance is high because graduates often struggle to estimate their true monthly outgoings, especially when their income fluctuates or they are considering early repayment.

This calculator is primarily used by recent graduates entering the workforce, career changers who have existing Plan 1 loans, and financial advisors helping clients manage their student debt portfolios. It matters because Plan 1 loans have a low fixed interest rate (typically set at the Retail Price Index or a maximum of 4.3%), making them fundamentally different from commercial loans or Plan 2 loans, which have higher interest rates and different thresholds. Misunderstanding these rules can lead to overpaying unnecessarily or under-budgeting for essential living costs.

Our free online Plan 1 Loan Calculator UK removes the guesswork, providing instant, accurate results based on the current 2024/2025 tax year thresholds. No signup is required, and the tool includes a full step-by-step breakdown of how your repayment figure is derived, empowering you to make informed decisions about your finances.

How to Use This Plan 1 Loan Calculator Uk

Using our Plan 1 Loan Calculator UK is straightforward, even if you have no prior experience with student loan calculations. The interface is designed for clarity, guiding you through each input field to ensure you get the most accurate result possible.

  1. Enter Your Annual Gross Salary: Input your total annual income before any tax, National Insurance, or pension contributions. This is the figure that determines your repayment obligation. For example, if you earn £30,000 per year, type "30000" into the salary field. Do not include decimal points unless you have a precise part-time income.
  2. Select Your Repayment Plan Type (Pre-selected): The calculator automatically defaults to "Plan 1" for UK residents. If you have a Postgraduate Loan or Plan 2 loan, you would select that option instead. For this tool, ensure "Plan 1" is active, as it uses the correct threshold of £24,990 per year (for 2024/2025).
  3. Input Your Current Outstanding Loan Balance: Enter the total amount you still owe on your Plan 1 student loan. You can find this figure by logging into the Student Loans Company (SLC) online portal. This is critical because interest accrues on the outstanding balance daily, and the calculator uses this to estimate total interest paid over the loan's lifetime.
  4. Set Your Expected Annual Salary Growth Rate (Optional): If you anticipate your salary will increase over the next few years (e.g., by 2-3% annually due to promotions or inflation), enter a percentage here. This allows the calculator to project how your repayments might change over time. If you are unsure, leave it at 0% for a conservative estimate.
  5. Click "Calculate" and Review the Results: Press the large blue "Calculate" button. Within seconds, the tool will display your monthly repayment amount, the total interest payable, the total amount repaid over the loan term, and the date your loan would be fully repaid or written off. Scroll down to see the detailed monthly breakdown chart.

For best results, use your most recent P60 or payslip to confirm your exact gross salary. The tool also allows you to toggle between monthly and annual repayment views, giving you flexibility in planning your budget.

Formula and Calculation Method

The Plan 1 Loan Calculator UK uses the official Student Loans Company formula for calculating repayments, combined with standard amortization principles to project long-term costs. The core formula is simple because Plan 1 repayments are income-contingent, not based on a fixed amortization schedule like a mortgage. However, the calculator also models interest accrual and the 25-year write-off rule.

Formula
Annual Repayment = 9% × (Annual Gross Income – Plan 1 Threshold)
Monthly Repayment = Annual Repayment ÷ 12

This formula is the legal basis for all Plan 1 student loan repayments in the UK. The threshold for 2024/2025 is £24,990 per year. If your income is below this threshold, your repayment is £0. If your income is above it, you repay 9% of the difference. The calculator then applies this formula to each year of your projected working life, adjusting for salary growth and interest.

Understanding the Variables

The key variables in this calculation are your gross annual income, the Plan 1 threshold, the interest rate (currently RPI or 4.3% maximum, whichever is lower), and your outstanding balance. The gross income variable is the most impactful—a small increase in salary can significantly raise your monthly repayment. The threshold is set by the UK government and changes annually, typically in April. The interest rate is recalculated each September based on the RPI from the previous March. The outstanding balance determines how long you will be repaying, as interest continues to accrue on the remaining debt.

Step-by-Step Calculation

First, the calculator subtracts the Plan 1 threshold (£24,990) from your annual gross income. For example, if you earn £35,000, the difference is £10,010. Second, it multiplies this difference by 9% (0.09) to get your annual repayment: £10,010 × 0.09 = £900.90 per year. Third, it divides by 12 to find your monthly repayment: £900.90 ÷ 12 = £75.08 per month. Fourth, the calculator applies the interest rate to your outstanding balance daily (using a daily rate of the annual interest divided by 365) and adds that interest to your balance. Finally, it repeats this process for each year up to 25 years, subtracting your annual repayments from the balance, until the loan is either fully repaid or written off. If the balance reaches zero before 25 years, the loan is settled early. If not, the remaining balance is forgiven after the 25-year term.

Example Calculation

To illustrate how the Plan 1 Loan Calculator UK works in practice, consider a realistic scenario for a recent graduate starting their first professional job.

Example Scenario: Sarah, a 22-year-old graduate from the University of Manchester, has a Plan 1 student loan with an outstanding balance of £45,000. She starts her first job as a marketing executive with an annual gross salary of £28,000. She expects her salary to grow by 3% each year. The current interest rate is 4.3% (the maximum for Plan 1).

First, the calculator determines her annual repayment: £28,000 – £24,990 = £3,010. Then, £3,010 × 0.09 = £270.90 per year. Her monthly repayment is £270.90 ÷ 12 = £22.58 per month. The calculator then projects this forward. In year two, with a 3% salary increase, her salary becomes £28,840. The new repayment is (£28,840 – £24,990) × 0.09 = £346.50 per year, or £28.88 per month. Meanwhile, interest is accruing on her £45,000 balance at 4.3% per year, which is £1,935 in the first year. Since her repayments (£270.90) are far less than the interest (£1,935), her balance actually grows to £46,664.10 by the end of year one. Over 25 years, assuming her salary grows to around £58,000 by the end, her repayments will increase, but the interest will still outpace them for many years. The calculator shows that she will never fully repay the loan—the balance will be written off after 25 years. Her total repayments over 25 years would be approximately £18,500, while the remaining balance of over £70,000 is forgiven.

In plain English, Sarah will pay about £22 to £60 per month over her career, but she will never clear the debt. This is a classic outcome for Plan 1 borrowers with moderate salaries and large balances—they pay a small amount monthly but do not eliminate the loan.

Another Example

Consider James, a 30-year-old software engineer with a Plan 1 loan balance of £20,000. He earns £55,000 per year and expects 5% annual salary growth. His initial repayment is (£55,000 – £24,990) × 0.09 = £2,700.90 per year, or £225.08 per month. With a high salary, his repayments are substantial. Interest on his £20,000 balance is £860 per year. Because his repayments (£2,700) exceed the interest (£860), his balance decreases quickly. The calculator projects that he will fully repay the loan in approximately 8 years and 3 months. His total interest paid is around £3,400, and he saves significantly compared to the 25-year write-off scenario. This example shows that high earners can benefit from understanding their repayment timeline to plan for early debt freedom.

Benefits of Using Plan 1 Loan Calculator Uk

Using a dedicated Plan 1 Loan Calculator UK offers substantial advantages over generic loan calculators or manual estimation. It provides clarity in a system that is often misunderstood, helping you take control of your financial future.

  • Accurate Income-Contingent Repayments: Unlike standard loan calculators that assume fixed monthly payments, this tool correctly applies the 9% rule above the specific Plan 1 threshold. This prevents the common mistake of overestimating or underestimating your monthly outgoings, which is crucial for budgeting. For example, a generic calculator might assume you pay a fixed £200 per month, whereas the Plan 1 calculator correctly shows you pay 9% of income above £24,990, which could be much lower.
  • Projection of Total Interest and Write-Off Date: The calculator models the 25-year write-off rule, showing you exactly when your remaining debt will be forgiven. This is invaluable for long-term financial planning, especially for graduates with large balances who may never repay the full amount. Knowing that the loan will be written off in 20 years can influence decisions about saving for a house deposit versus making extra loan payments.
  • Scenario Planning with Salary Growth: By allowing you to input an expected annual salary growth rate, the tool provides a dynamic projection rather than a static snapshot. You can see how a promotion or career change might accelerate your repayments. For instance, a teacher starting at £30,000 with 2% annual raises can see that their repayments will gradually increase, potentially shortening the loan term.
  • Comparison with Early Repayment Options: The calculator can help you evaluate whether making voluntary overpayments is financially sensible. Because Plan 1 loans have low interest rates (often below 5%), investing extra cash in a pension or high-interest savings account might be more beneficial than paying off the loan early. The tool shows the total interest saved if you overpay, allowing you to make a data-driven decision.
  • No Signup, Instant Results, and Full Transparency: Our free calculator requires no email registration or personal data. You get instant, accurate results with a full step-by-step breakdown of every calculation. This transparency builds trust and helps you understand exactly how the Student Loans Company determines your repayment amount, demystifying a system that many find confusing.

Tips and Tricks for Best Results

To maximize the accuracy and usefulness of the Plan 1 Loan Calculator UK, follow these expert tips and avoid common pitfalls. The tool is powerful, but its output depends entirely on the quality of your inputs.

Pro Tips

  • Always use your gross annual salary from your latest P60 or HMRC tax code letter, not your take-home pay. The Student Loans Company calculates repayments based on pre-tax income, so using net pay will significantly underestimate your obligation.
  • If you are self-employed or have multiple income streams, combine all gross earnings before entering the salary field. Plan 1 repayments are based on your total income from all sources, not just your main job. Use your Self Assessment tax return figure for the most accurate result.
  • Update the outstanding balance field every six months by checking your SLC online account. Interest accrues daily, and your balance may change slightly even if you are not making repayments. Using an outdated balance can skew long-term projections by hundreds of pounds.
  • Use the salary growth feature conservatively. A 2-3% annual increase is realistic for most careers, but avoid entering 10% unless you have a guaranteed promotion. Overestimating growth can make it look like you will repay the loan faster than you actually will, leading to false optimism.

Common Mistakes to Avoid

  • Confusing Plan 1 with Plan 2 or Plan 5: The most common error is using the wrong threshold. Plan 1 uses £24,990, while Plan 2 uses £27,295 and Plan 5 uses £25,000 (for 2024/2025). If you have a Plan 2 loan, the calculator will show incorrect results. Always verify your loan type on your SLC statement before using the tool.
  • Ignoring the 25-Year Write-Off Rule: Some users assume they must repay the entire balance, even if their income is low. This leads to unnecessary anxiety about debt that will be legally cancelled. The calculator explicitly shows the write-off date, so pay attention to it—if it shows the loan will be written off, you may not need to prioritize extra payments.
  • Assuming Monthly Repayments Are Fixed: Plan 1 repayments change whenever your income changes. If you get a raise, your monthly repayment increases. If you take a pay cut, it decreases. Do not assume the first calculation is permanent. Re-run the calculator annually after your pay review to stay accurate.
  • Entering Net Salary Instead of Gross Salary: This is a frequent mistake. If you earn £40,000 gross but enter £30,000 (your net after tax), the calculator will show a repayment of (£30,000 – £24,990) × 0.09 = £450.90 per year, when the correct figure is (£40,000 – £24,990) × 0.09 = £1,350.90 per year. This underpayment can lead to a surprise tax bill at year-end.

Conclusion

The Plan 1 Loan Calculator UK is an essential tool for any graduate or professional repaying a pre-2012 student loan in England, Wales, or Northern Ireland. It demystifies the income-contingent repayment system, providing accurate monthly figures, total interest projections, and a clear view of the 25-year write-off timeline. By using this calculator, you can avoid costly mistakes like overpaying a low-interest debt or underestimating your monthly obligations, ultimately gaining greater control over your personal finances.

We encourage you to use our free calculator right now—no signup, no email, just instant results. Input your salary and loan balance today to see exactly where you stand. Whether you are planning a budget for the year ahead or deciding whether to make extra payments, this tool gives you the clarity you need to make confident financial decisions. Bookmark the page and return annually to track your progress as your career and income evolve.

Frequently Asked Questions

The Plan 1 Loan Calculator UK specifically calculates the total repayment amount and monthly payments for student loans taken out by English and Welsh students who started their undergraduate degree between 1998 and 2012. It measures how much you will repay based on your income, the current interest rate (typically RPI or 1% above base rate, whichever is lower), and the loan balance. For example, if you earn £30,000 annually, the calculator will show you repay 9% of income above the £22,015 threshold, which is £718.65 per year.

The exact formula uses the annual repayment amount as 9% of any income above the Plan 1 threshold (£22,015 for 2024/25), divided into monthly deductions. Interest is calculated daily at the lower of the Retail Price Index (RPI) or Bank of England base rate plus 1%, compounded monthly. The total repayment duration is capped at 25 years, after which any remaining balance is written off. For instance, a £40,000 salary yields annual repayments of 0.09 × (£40,000 - £22,015) = £1,618.65.

For Plan 1 loans, a "healthy" repayment scenario means you fully repay the loan within the 25-year term, typically occurring if your income consistently exceeds £35,000-£40,000 and your loan balance is under £20,000. A "normal" outcome for many graduates is partial repayment before the 25-year write-off, with 30-50% of the original loan remaining. For example, a graduate earning a steady £28,000 with a £15,000 loan will repay roughly £5,400 over 25 years, leaving £9,600 forgiven.

The Plan 1 Loan Calculator UK is highly accurate for fixed income assumptions, as it uses the official Student Loans Company repayment rules and current interest rates (e.g., 6.25% RPI as of April 2024). However, it assumes constant income and interest rates, which rarely hold in reality. For a precise projection, it matches SLC statements within 1-2% for a single year, but long-term accuracy over 25 years degrades due to inflation and career changes.

A major limitation is that it cannot account for variable income, career breaks, or multiple jobs, all of which affect the 9% threshold calculation. It also assumes the interest rate remains static, while actual Plan 1 rates change annually with RPI (which was 4.0% in 2023 but 6.25% in 2024). Additionally, it does not factor in voluntary overpayments or the impact of parental leave on repayment years, potentially overestimating total repayment by 10-15% for part-time workers.

Compared to the official Student Loans Company repayment calculator, the Plan 1 Loan Calculator UK offers identical core logic but often lacks real-time RPI updates and tax code adjustments. Professional financial advisors use more complex Monte Carlo simulations that model income growth, inflation, and interest rate volatility, which can show a 20% difference in total repayment projections. For example, a static calculator might show full repayment at age 45, while a dynamic model might predict write-off due to career breaks.

A common misconception is that the calculator shows the "true cost" of the loan, when in fact it does not account for the real-world erosion of debt via inflation over 25 years. Many users panic seeing a £30,000 loan with £40,000 total repayment, not realizing that £40,000 in 2049 will be worth far less due to 2-3% annual inflation. For instance, a £30,000 loan repaid over 25 years at 3% inflation has a real cost of only about £19,000 in today's money.

A practical application is for a graduate earning £32,000 with a £25,000 Plan 1 loan deciding whether to make voluntary overpayments. The calculator can show that without overpayments, they will repay £7,650 over 25 years (9% of income above threshold), leaving £17,350 written off. If they overpay £5,000 immediately, the calculator reveals they still only repay £7,650 total because the loan is capped at 25 years—making the overpayment financially pointless in this scenario.

Last updated: June 03, 2026 · Bookmark this page for quick access

🔗 You May Also Like

MonthPaymentInterestPrincipalBalance