Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- 단축키
- profile
- netsh
- grep
- 줄바꿈 문자
- VirtualBox
- port
- xargs
- resource
- Eclipse
- tomcat
- find
- JavaScript
- context
- IntelliJ
- Windows
- plugin
- lsof
- import
- vscode
- GIT
- bash
- Source
- ssh
- maVen
- 네트워크
- Windows 10
- web.xml
- Quartz
- Mac
Archives
- Today
- Total
develog
원리금 균등 분할 상환 본문
원리금 균등 분할 상환
공식)
월불입금 =
대출원금 * 대출금리 / 12 * (1 + 대출금리 / 12) ^ 대출기간 / ((1 + 대출금리 / 12) ^ 대출기간 - 1)
예)
대출원금 = 1,000,000
대출금리 = 5 %
대출기간 = 24 개월
월불입금 = 1,000,000 * 0.05 / 12 * (1 + 0.05 / 12) ^ 24 / ((1 + 0.05 / 12) ^ 24 - 1)
= 43,871 (소수점 반올림)