AJ Design Engineering Software Home Page
  Home    Page 2    Page 3    Page 4    Page 5    Physics    Math    Fluid Mechanics    Investment Finance     Mortgage Calculator     Nursing


AJ PHP Software Source Code Financial Library
Future Worth
Single Payment Compound Amount Factor


number future_worth_SPCAF ( number, number, number)

Description:

future_worth_SPCAF returns the future value given present worth, interest rate and number or periods.

future value

Source Code:

function future_worth_SPCAF ($present_worth, $interest_rate, $number_of_years)
{
//variable and initializations
$the_result = 0.0;
$SPCAF = 0.0;

//calculate future value with the
//single payment compound amount factor
$SPCAF = pow(1.0 + $interest_rate, $number_of_years);
$the_result = $present_worth * $SPCAF;

//return the value
return $the_result;
}

Example:

<?
include ("ajfinancial.php");

$present_value = 100.00; //100 dollars
$interest_rate = 0.06; //6 percent interest
$years = 2; //2 years

$future_value = future_worth_SPCAF($present_value, $interest_rate, $years);

echo "present value = $present_value<br>";
echo "interest rate = $interest_rate<br>";
echo "years = $years<br>";
echo "future value = $future_value<br>";
?>


Run Example


percent interest rate percent interest rate
simple interest simple interest
future worth SPCAF future worth
single payment compound amount factor
SPCAF
present worth SPPWF present worth
sing payment present worth factor
SPPWF

References - Books:
Leland T. Blank and Anthony J. Tarquin.r. 1989. Engineering Economy. McGraw-Hill, Inc.
Subwoofer Box Software Downloads for Sealed, Ported and Bandpass
Salary Wage Pay Calculator - Jobs Career
Baby Infant Growth Charts - Weight Age Percentile
Dog Age Calculator - Human Age Converter
Fraction Calculator - Simplify Reduce
Engine Horsepower Calculator
Earned Value Project Management
Present Worth Economics Calculator
Constant Acceleration Motion Calculator
Statistics Equations Formula Calculator
Mortgage Payment Finance Calculator
Weight Loss Formulas Calculator
Body Mass Index BMI Calculator
Fluorescent Light Bulb Cost Analysis Calculator
Automobile Fuel Economy Calculator
Gasoline Diesel

Car Truck Tire Size Comparison Calculator
Paycheck and Overtime Rate Calculator
Sale Discount Calculator - Percent Off Price

AJ Design - Online Science Mathematics Engineering Software Programs | 2 | 3 | 4 | 5

by Jimmy Raymond

Technical Tools, Specifications, How to Guides, Reviews, Training, Applications, Examples, Tutorials, Answers, Test Review Resources, Analysis, Homework Solutions, Help, Data and Information for Engineers, Technicians, Teachers, Tutors, Researchers, K-12 Education, College and High School Students, Science Fair Projects and Scientists

Contact: aj@ajdesigner.com

Privacy Policy, Disclaimer and Terms

Copyright 2002-2011