Standard Monthly
Pay ${{ base_payment | money }}/month
Payoff{{ standard_months }} months ({{ (standard_months / 12) | round(1) }} yrs)
Total interest${{ "{:,.2f}".format(total_interest_standard) }}
Interest saved—
Biweekly Payments
Pay ${{ (base_payment / 2) | money }} every 2 weeks
Payoff{{ bi_months_total }} months ({{ bi_years }} yrs)
Total interest${{ "{:,.2f}".format(bi_interest) }}
Interest saved
${{ "{:,.2f}".format(interest_saved_biweekly) }}
({{ months_saved_biweekly }} months sooner)
One extra payment per year
{% if extra_monthly > 0 %}
Extra ${{ "%.0f" | format(extra_monthly) }}/Month
Pay ${{ (base_payment + extra_monthly) | money }}/month total
Payoff{{ extra_months }} months ({{ (extra_months / 12) | round(1) }} yrs)
Total interest${{ "{:,.2f}".format(total_interest_extra) }}
Interest saved
${{ "{:,.2f}".format(interest_saved_extra) }}
({{ months_saved_extra }} months sooner)
{% else %}
Extra Monthly Payment
Enter an extra monthly amount above to see the impact
{% endif %}