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
Percent Interest Rate


number percent_interest_rate ( number, number )

Description:

percent_interest_rate returns the interest rate given interest accrued and the original amount.

Percent Interest Rate = interest accrued / original amount X 100%

Source Code:

function percent_interest_rate ($interest_accrued, $original_amount)
{
  //variable and initializations
  $the_result = 0.0;

  //calculate interest rate
  $the_result = $interest_accrued / $original_amount * 100;

  //return the value
  return $the_result;
}

Example:

<?
include ("ajfinancial.php");

$accrued_amount = 6.00; //6 dollars
$original_amount = 100.00; //100 dollars

$precent_interest_rate = percent_interest_rate($accrued_amount, $original_amount);

echo "accrued amount = $accrued_amount<br>";
echo "original_amount = $original_amount<br>";
echo "precent_interest_rate = $precent_interest_rate<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