Owning a home is a keystone of wealth - both financial affluence and emotional security
Suze Orman
The most powerful force in the universe is compound interest
Albert Einstein
Ryan M. Swartz
Owning a home is a keystone of wealth - both financial affluence and emotional security
Suze Orman
The most powerful force in the universe is compound interest
Albert Einstein
price <- 500000; per.down <- 0.2; rate <- 0.0375 / 12; n <- 30 * 12
monthly.payment <- (rate * price * (1 - per.down) * ((1 + rate)^n)) / (((1 + rate)^n) - 1); monthly.payment
## [1] 1852
base.total.interest <- (monthly.payment * n) - (price * (1 - per.down)); base.total.interest
## [1] 266886
extra <- 200
new.n <- log(((monthly.payment + extra) / rate) / (((monthly.payment + extra) / rate) - (price * (1 - per.down)))) / log(1 + rate)
new.interest <- ((monthly.payment + extra) * new.n) - (price * (1 - per.down))
interest.savings <- base.total.interest - new.interest; interest.savings
## [1] 49127