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



AJ PHP Software Source Code Math Library
Factorial Integer


integer factorial_integer ( integer n)

Description:

factorial_integer returns the the factorial given an integer.

integer factorial

Source Code:

function factorial_integer ($k)
{
  //variable and initializations
  $the_result = 1;

  //check to see if k is an integer
  if (!is_int($k))
  {
    return "error";
  }

  //check for k < 0
  if ($k < 0)
  {
    return "error";
  }

  //0! = 1
  if ($k == 0)
  {
    return 1;
  }

  //calculate the result
  for ($i = 2; $i <= $k; $i++)
  {
    $the_result = $the_result * $i;
  }

  //return the value
  return $the_result;
}

Example:

<?
include ("ajmath.php");

$n = 5;

$the_factorial = factorial_integer($n);

echo "n = $n<br>";
echo "the_factorial = $the_factorial<br>";
?>

Run Example


array average solve for the average of an array
factorial integer solve for the factorial of an integer
log base solve for the base of the logarithm function

References - Books:

Max A. Sobel, Nobert Lerner. 1991. Precalculus Mathematics. Prentice Hall.

Subwoofer Box Software Downloads for Sealed, Ported and Bandpass
Salary Wage Pay Calculator - Jobs Career
Baby Infant Growth Charts - Weight Age Percentile
Photography - Depth of Field Calculator for Film and Digital Cameras
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
Wind Power Turbine Generator Calculator - Green Renewable Energy
Dog Age Calculator - How Old is Your Pet In Human Years?
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 Shopping Calculator - Percent Off Price

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

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, Researchers, K-12 Education, College and High School Students, Science Fair Projects and Scientists

contact email

Privacy Policy, Disclaimer and Terms

Copyright 2002-2011