Published on

Student Loans, Dividends and Calculators

Introduction

I've recently become curious about how long I have left on my student loan repayments. The only issue is I can't find an online calculator that handles multiple sources of income, including dividends. So I decided to make my own.

Context

It's that time of year in the UK when self-assessments are due. For those outside the UK, this is when you declare to the taxman how much tax you owe. Most employees don't need to do this as their employer deducts tax from their salary. However, if you have other sources of income, are self-employed or a few other reasons, including receiving dividends, you need to do this.

Reviewing the self assessment form it got me thinking about how long I have left on my student loan. I have a student loan from my time at university. The way student loans work in the UK is that you only pay them back if you earn over a certain threshold. If you earn over this amount, you pay 9% of your income over this threshold. This is regardless of how much you earn over this amount.

For me that's a few hundred a month. That's not a small amount so I'd like to know how long I have to pay this for. So then, to Google to find a calculator!

Problem

Turns out, most online calculators for this are way too simple. I couldn't find many calculators that handled multiple sources of income, including dividends.

And where they did, they made assumptions about amounts increasing by a certain percentage each year. They also didn't account for the previous tax year's income.

Solution

So what to do? Revert to type of course and make my own!

But wait! Where do I host this for easy access....? I know! I'll host it on a website! That way I can easily access it and so can others.

Crap... I don't have a website. Once more, revert to type. I'll make one!

Fortunately, getting started is easier than ever. I grabbed a blog template that uses Tailwind from Vercel (perfect, I've been meaning to get some exposure to React and Next.js). After a few tweaks I deployed it to Vercel.

Then I threw together a calculator as a react component that takes into account multiple sources of income, including dividends. It also takes into account the previous tax year's income. Hopefully, I've modeled the intricacies of the UK tax system correctly.

It tells you when the loan will be paid back or if it's going to be written off. It then breaks down by year and month how much you'll pay back.

There's some assumptions in there, like the interest rate remaining the same, not having an option to account for SMART on the salary sacrifice, other pension types etc, but it's a good start to give you an estimate.

Turns out I'll pay it off in about 3 years, which is a lot sooner than expected.

Conclusion

This was a nice little entry back into coding outside of work. Getting some exposure to React and Next.js is a bonus, and it provided me the perfect excuse for the first blog post, which I've been meaning to do for a while.

You can find it in the projects section. Hopefully the calculator is useful to others too.