monthly_interest = yearly_interest / 12.0
months = years * 12.0
payments = principle * monthly_interest / (1.0 - (1.0 + monthly_interest) ^ -months)
costOfLoan = payments * months - principle

