Created
July 20, 2019 23:10
-
-
Save samuell/15c288aa3133c7deed726fa80b4daa85 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
monthlyPaymentUSD := Mul( | |
Div( | |
Mul( | |
Div(Val(rate), | |
Val(1200.0)), | |
Exp( | |
Add( | |
Val(1.0), | |
Div( | |
Val(rate), | |
Val(1200.0))), | |
Val(months))), | |
Sub( | |
Exp( | |
Add( | |
Val(1.0), | |
Div( | |
Val(rate), | |
Val(1200.0))), | |
Val(months)), | |
Val(1.0))), | |
borrowedAmount) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment