File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 363363## Financial
364364 * [ Equated Monthly Installments] ( financial/equated_monthly_installments.py )
365365 * [ Interest] ( financial/interest.py )
366+ * [ Present Value] ( financial/present_value.py )
366367 * [ Price Plus Tax] ( financial/price_plus_tax.py )
367368
368369## Fractals
655656 * [ Sum Of Harmonic Series] ( maths/sum_of_harmonic_series.py )
656657 * [ Sumset] ( maths/sumset.py )
657658 * [ Sylvester Sequence] ( maths/sylvester_sequence.py )
659+ * [ Tanh] ( maths/tanh.py )
658660 * [ Test Prime Check] ( maths/test_prime_check.py )
659661 * [ Trapezoidal Rule] ( maths/trapezoidal_rule.py )
660662 * [ Triplet Sum] ( maths/triplet_sum.py )
Original file line number Diff line number Diff line change 662. An array of cash flows, with the index of the cash flow being the associated year
77
88Note: This algorithm assumes that cash flows are paid at the end of the specified year
9+ """
910
1011
1112def present_value (discount_rate : float , cash_flows : list [float ]) -> float :
You can’t perform that action at this time.
0 commit comments