We're aware that some users are experiencing technical issues which the team are working to resolve. See the Community Noticeboard for more info. Thank you for your patience.
📨 Have you signed up to the Forum's new Email Digest yet? Get a selection of trending threads sent straight to your inbox daily, weekly or monthly!

Bank miscalculated interest due at end of fixed rate investment - Lessons learnt?

Options
13

Comments

  • TheTelltaleChart
    TheTelltaleChart Posts: 60 Forumite
    10 Posts
    SnowMan said:
    The gross interest estimate of £10.28 has been calculated using the formula
    =IF(G18="Y",I17*(1+H17)^((A18-A17)/365.25)+C18-D18-J18," ")
    Your use of 365.25 days in a year has already been discussed. The other thing that strikes me is that you're compounding interest daily. That's how I originally assumed it should be done, but when I looked at deposit takers' descriptions of how they calculated interest (which I admit I haven't bothered to do recently), they all seemed to compound only when interest is actually credited.

    Mathematically: how much interest is accrued overnight, if the starting balance is B, the accrued interest since the last interest payment is A, the interest rate is R%, and there are Y days in a year (e.g. 365.25)?

    With daily compounding, it's:
    (B + A) * ( (1 + R/100) ^ (1 / Y) - 1)

    With compounding when interest is credited, it's:
    B * R / 100 / Y

    (Noting that R is not necessarily the same in the 2 formulae: in the first formula, it's the AER, as you specified; in the second, it's the contractual interest rate, which differs from the AER when interest isn't credited annually.)

    Daily compounding is generally going to give less interest than compounding when interest is credited.
  • friolento
    friolento Posts: 2,381 Forumite
    1,000 Posts Second Anniversary Name Dropper Photogenic
    1spiral said:
    SnowMan said:
    Economme said:

    I'm more interested in the general 'lessons learnt', rather than pursuing my own individual case (very low interest! - on many levels)
    I don't think most systems are set up to provide independent print-offs of how interest has been calculated
    But the info for this must be stored in the systems because most accounts state "interest accrues daily " so it shouldn't be rocket science to add a field to statements that shows these accrued amounts.
    If you could see how much interest accrues between transactions, it would be quite easy to work out how these figures are arrived at.


    You are assuming that the daily interest is calculated daily and then stored against the account. I think this is highly unlikely/ Much more likely that they calculate the total interest when interest payment becomes due.
  • masonic
    masonic Posts: 27,176 Forumite
    Part of the Furniture 10,000 Posts Photogenic Name Dropper
    edited 5 May at 6:47PM
    SnowMan said:
    The gross interest estimate of £10.28 has been calculated using the formula
    =IF(G18="Y",I17*(1+H17)^((A18-A17)/365.25)+C18-D18-J18," ")
    Your use of 365.25 days in a year has already been discussed. The other thing that strikes me is that you're compounding interest daily.
    ...
    Daily compounding is generally going to give less interest than compounding when interest is credited.
    Clearly I was not looking closely enough at the formula as I didn't notice that caret when I raised the 0.25! The difference will be quite minor when interest is paid monthly, but it will bring in greater error for annual interest. More than the leap year workaround would.
  • TheTelltaleChart
    TheTelltaleChart Posts: 60 Forumite
    10 Posts
    masonic said:
    SnowMan said:
    The gross interest estimate of £10.28 has been calculated using the formula
    =IF(G18="Y",I17*(1+H17)^((A18-A17)/365.25)+C18-D18-J18," ")
    Your use of 365.25 days in a year has already been discussed. The other thing that strikes me is that you're compounding interest daily.
    ...
    Daily compounding is generally going to give less interest than compounding when interest is credited.
    Clearly I was not looking closely enough at the formula as I didn't notice that caret when I raised the 0.25! The difference will be quite minor when interest is paid monthly, but it will bring in greater error for annual interest. More than the leap year workaround would.
    Not necessarily.

    Daily compounding, as SnowMan is doing it, doesn't just give you more interest by applying the same rate with more frequent compounding. The rate applied daily is reduced, to compensate for the fact that it is being applied to a higher balance (viz. visible balance + previously accrued interest).

    The effect is that, if the applicalbe AER and the account balance are constant between 2 interest payament dates, then daily compounding will result in exactly the same amount of interest being paid on the second date. But there is a more subtle point that, if the AER or balance vary, daily compounding will give less interest than compounding only when interest is paid. The size of this effect depends on the size of the changes in the AER and balance.
  • TheTelltaleChart
    TheTelltaleChart Posts: 60 Forumite
    10 Posts
    The effect is that, if the applicalbe AER and the account balance are constant between 2 interest payament dates, then daily compounding will result in exactly the same amount of interest being paid on the second date. But there is a more subtle point that, if the AER or balance vary, daily compounding will give less interest than compounding only when interest is paid. The size of this effect depends on the size of the changes in the AER and balance.
    Sorry, that's wrong. I should have said ...

    If the AER varies, daily compounding will give less interest than compounding only when interest is paid.

    If the account balance varies, daily compounding may result in either more or less interest.
  • SnowMan
    SnowMan Posts: 3,676 Forumite
    Part of the Furniture 1,000 Posts Name Dropper Photogenic
    edited 5 May at 9:14PM
    SnowMan said:
    The gross interest estimate of £10.28 has been calculated using the formula
    =IF(G18="Y",I17*(1+H17)^((A18-A17)/365.25)+C18-D18-J18," ")
    Your use of 365.25 days in a year has already been discussed. The other thing that strikes me is that you're compounding interest daily. That's how I originally assumed it should be done, but when I looked at deposit takers' descriptions of how they calculated interest (which I admit I haven't bothered to do recently), they all seemed to compound only when interest is actually credited.

    Mathematically: how much interest is accrued overnight, if the starting balance is B, the accrued interest since the last interest payment is A, the interest rate is R%, and there are Y days in a year (e.g. 365.25)?

    With daily compounding, it's:
    (B + A) * ( (1 + R/100) ^ (1 / Y) - 1)

    With compounding when interest is credited, it's:
    B * R / 100 / Y

    (Noting that R is not necessarily the same in the 2 formulae: in the first formula, it's the AER, as you specified; in the second, it's the contractual interest rate, which differs from the AER when interest isn't credited annually.)

    Daily compounding is generally going to give less interest than compounding when interest is credited.
    The daily compounding I use for simplicity. With daily compounding method you don't need to factor in whether interest is paid monthly, annually or quarterly. But I have added in the compounding when credited calculation into my savings interest spreadsheet as a separate check. And I've made the days in the year used changeable. It requires a separate interest frequency input for the compounding when credited method. I'm tying in actual interest payments exactly to within one pence in most cases using the compounding when credited method. Which is not surprising because as you say it's the method most savings institution use.
    I agree that the daily compounding method will give less interest than the compounding when credited method on average. But it won't always do. See this example. As an aside note if interest had been payable monthly the annual interest rate column (for the compounding when credited calculation) changes to the gross rate payable monthly i.e. 100 x 12 x (1.05^(1/12) - 1) = 4.889%


    I can make the spreadsheet available if anyone is interested

    I came, I saw, I melted
  • masonic
    masonic Posts: 27,176 Forumite
    Part of the Furniture 10,000 Posts Photogenic Name Dropper
    edited 5 May at 9:15PM
    masonic said:
    SnowMan said:
    The gross interest estimate of £10.28 has been calculated using the formula
    =IF(G18="Y",I17*(1+H17)^((A18-A17)/365.25)+C18-D18-J18," ")
    Your use of 365.25 days in a year has already been discussed. The other thing that strikes me is that you're compounding interest daily.
    ...
    Daily compounding is generally going to give less interest than compounding when interest is credited.
    Clearly I was not looking closely enough at the formula as I didn't notice that caret when I raised the 0.25! The difference will be quite minor when interest is paid monthly, but it will bring in greater error for annual interest. More than the leap year workaround would.
    Not necessarily.
    Surely the error will be least when the actual compounding frequency is greater (it will be completely accurate for the very small number of accounts that do compound daily), a bit less accurate for monthly, and even less accurate for annual. Which was the point I was making.
    Though if you think the error doesn't increase with decreasing actual compounding frequency (i.e. 365.25 compounding periods is a better proxy for 1 than it is for 12) then that would be interesting to explore in more detail.
  • TheTelltaleChart
    TheTelltaleChart Posts: 60 Forumite
    10 Posts
    SnowMan said:
    I agree that the daily compounding method will give less interest than the compounding when credited method on average. But it won't always do. See this example.
    Agreed (I got there in a later post).

    Your example shows daily compounding paying more interest when there is a higher balance earlier in the period, lower later on. If it were the other way round  — lower balance earlier, higher balance later — then daily compounding would give less interest. So this part can go either way.

    Changes in the AER work differently, in that they will always lead to daily compounding paying less interest than compounding when credited.
  • TheTelltaleChart
    TheTelltaleChart Posts: 60 Forumite
    10 Posts
    masonic said:
    masonic said:
    SnowMan said:
    The gross interest estimate of £10.28 has been calculated using the formula
    =IF(G18="Y",I17*(1+H17)^((A18-A17)/365.25)+C18-D18-J18," ")
    Your use of 365.25 days in a year has already been discussed. The other thing that strikes me is that you're compounding interest daily.
    ...
    Daily compounding is generally going to give less interest than compounding when interest is credited.
    Clearly I was not looking closely enough at the formula as I didn't notice that caret when I raised the 0.25! The difference will be quite minor when interest is paid monthly, but it will bring in greater error for annual interest. More than the leap year workaround would.
    Not necessarily.
    Surely the error will be least when the actual compounding frequency is greater (it will be completely accurate for the very small number of accounts that do compound daily), a bit less accurate for monthly, and even less accurate for annual. Which was the point I was making.
    Though if you think the error doesn't increase with decreasing actual compounding frequency (i.e. 365.25 compounding periods is a better proxy for 1 than it is for 12) then that would be interesting to explore in more detail.
    I wasn't clear. I do agree that daily compounding will give more similar results to monthly compounding than to annual. I was trying to say that the differences might not be greater than the effect of the leap year workaround.
  • SnowMan
    SnowMan Posts: 3,676 Forumite
    Part of the Furniture 1,000 Posts Name Dropper Photogenic
    edited 5 May at 9:41PM
    Should have said if interest is paid monthly then the two methods will give near identical answers, there isn't long enough between interest payments for the straight line vs curved interest accrual to cause differences, noting that for periods between interest payments where there are no transactions and no interest rate changes the answers are essentially the same. See this example (assumes interest paid away to keep it simple)


    I came, I saw, I melted
Meet your Ambassadors

🚀 Getting Started

Hi new member!

Our Getting Started Guide will help you get the most out of the Forum

Categories

  • All Categories
  • 350.9K Banking & Borrowing
  • 253.1K Reduce Debt & Boost Income
  • 453.5K Spending & Discounts
  • 243.9K Work, Benefits & Business
  • 598.7K Mortgages, Homes & Bills
  • 176.9K Life & Family
  • 257.2K Travel & Transport
  • 1.5M Hobbies & Leisure
  • 16.1K Discuss & Feedback
  • 37.6K Read-Only Boards

Is this how you want to be seen?

We see you are using a default avatar. It takes only a few seconds to pick a picture.