Golang : Compound interest over time example
It is time for me to do something "lighter" now.... such as investing rather than heavy duty programming ..... so that I get to spend more quality time with friends and family members. In investing, the open secret is to compound your money over time.
In fact, according to Albert Einstein :
“Compound interest is the eighth wonder of the world. He who understands it, earns it ... he who doesn't ... pays it.”
The common compound formula that most people understand is how to calculate compound interest over certain time. There are other compound formulas to calculate other types of cash flow(stream of money or earnings), but we will just use the basic compound interest formula.
Below is an example of how to calculate compound interest in Golang. I've tested the function with the given examples found in Wikipedia and the result matched. It should be accurate as far as my own mathematical knowledge goes.
Here you go!
package main
import (
"fmt"
"math"
)
// calculate the compound interest with formula from Wikipedia
// https://en.wikipedia.org/wiki/Compound_interest#Calculation_of_compound_interest
func compoundInterest(principal float64, interestRate float64, frequencyPerYear float64, overYears int) float64 {
// (1 + interestRate / frequencyPerYear)
block := 1 + (interestRate / float64(frequencyPerYear))
// frequencyPerYear * overYears
exponent := frequencyPerYear * float64(overYears)
compoundInterest := principal * math.Pow(block, float64(exponent))
return compoundInterest
}
func main() {
wikiExample := compoundInterest(1500, 0.043, 4, 6)
fmt.Println(wikiExample)
var p, rate, freq float64
var time int
fmt.Println("Enter the principal : ")
fmt.Scanf("%f", &p)
fmt.Println("Enter the interest rate : ")
fmt.Scanf("%f", &rate)
fmt.Println("Enter the compounding frequency per year : ")
fmt.Println("[1 for yearly, 4 for quarterly and 12 for monthly]")
fmt.Scanf("%f", &freq)
fmt.Println("Enter the duration in years : ")
fmt.Scanf("%d", &time)
result := compoundInterest(p, rate, freq, time)
fmt.Println(result)
}
Sample output:
1938.8368221341061
Enter the principal :
1500
Enter the interest rate :
0.043
Enter the compounding frequency per year :
[1 for yearly, 4 for quarterly and 12 for monthly]
0.5 <--- n = 1/2 = 0.5 (the interest is compounded every two years)
Enter the duration in years :
6
1921.2360840000001
Happy coding and may the wealth be with you!
References:
https://www.socketloop.com/tutorials/golang-how-to-read-float-value-from-standard-input
https://en.wikipedia.org/wiki/Compoundinterest#Calculationofcompoundinterest
https://www.socketloop.com/tutorials/golang-how-to-read-integer-value-from-standard-input
http://www.goodreads.com/quotes/76863-compound-interest-is-the-eighth-wonder-of-the-world-he
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+27.1k Golang : Find files by name - cross platform example
+6.1k Linux/Unix : Commands that you need to be careful about
+32.9k Delete a directory in Go
+5.1k Python : Create Whois client or function example
+10k Golang : Edge detection with Sobel method
+13.7k Golang : Convert spaces to tabs and back to spaces example
+22k Golang : How to run Golang application such as web server in the background or as daemon?
+16.3k CodeIgniter/PHP : Create directory if does not exist example
+19.4k Golang : How to Set or Add Header http.ResponseWriter?
+9.2k Golang : How to check if a string with spaces in between is numeric?
+8.2k Golang : Emulate NumPy way of creating matrix example
+17.8k Golang : Qt image viewer example