Skip to content

Commit

Permalink
compound and simple interest formulae
Browse files Browse the repository at this point in the history
  • Loading branch information
yozaam committed Nov 5, 2020
1 parent 579c331 commit 3aaff8a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions aptitude_quant.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,3 +341,18 @@ a invests 10k, b 5k at the start
after 5 months, b is sad or happy so he increases or decreases his investment, now the ratio becomes

`10k * 12 : 5k * 5 + (5k ± change) * 7`


## Simple & Compound Interest
```
| SI | CI
amount | p + pnr/100 | p (1 + r/100)^n
interest | pnr/100 | p (1 + r/100)^n - p
```

what if it is a quarterly rate?
for SI: divide r by 4
for CI: divide r by 4 and multiply n by 4 in the exponent

formula in two years, given any of these:
`CI - SI = p (r/100)^2`

0 comments on commit 3aaff8a

Please sign in to comment.