File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 363
363
## Financial
364
364
* [ Equated Monthly Installments] ( financial/equated_monthly_installments.py )
365
365
* [ Interest] ( financial/interest.py )
366
+ * [ Present Value] ( financial/present_value.py )
366
367
* [ Price Plus Tax] ( financial/price_plus_tax.py )
367
368
368
369
## Fractals
655
656
* [ Sum Of Harmonic Series] ( maths/sum_of_harmonic_series.py )
656
657
* [ Sumset] ( maths/sumset.py )
657
658
* [ Sylvester Sequence] ( maths/sylvester_sequence.py )
659
+ * [ Tanh] ( maths/tanh.py )
658
660
* [ Test Prime Check] ( maths/test_prime_check.py )
659
661
* [ Trapezoidal Rule] ( maths/trapezoidal_rule.py )
660
662
* [ Triplet Sum] ( maths/triplet_sum.py )
Original file line number Diff line number Diff line change 6
6
2. An array of cash flows, with the index of the cash flow being the associated year
7
7
8
8
Note: This algorithm assumes that cash flows are paid at the end of the specified year
9
+ """
9
10
10
11
11
12
def present_value (discount_rate : float , cash_flows : list [float ]) -> float :
You can’t perform that action at this time.
0 commit comments