This documentation is compiled for the latest release of Mathos Core Library
Assembly: Mathos (in Mathos.dll) Version: 1.0.5.1 (1.0.5.1)
Remaining balance of an annuity
Returns the remaining balance of an annuity given the original value, payment amount, rate per period and number of periods paid
Namespace: Mathos.Finance
Assembly: Mathos (in Mathos.dll) Version: 1.0.5.1 (1.0.5.1)
Syntax
public static decimal RemainingBalanceOfAnnuity( decimal originalValue, decimal payment, decimal ratePerPeriod, int numberOfPeriods, bool round = true )
Parameters
- originalValue
- Type: SystemDecimal
Originial annuity value - payment
- Type: SystemDecimal
Payment amount - ratePerPeriod
- Type: SystemDecimal
Rate per peroid (6 = 6%) - numberOfPeriods
- Type: SystemInt32
Number of periods - round (Optional)
- Type: SystemBoolean
Determines whether the result is rounded to 2 decimal places
Return Value
Type: DecimalRemaining balance of an annuity
See Also