Open In App

PHP expm1() Function

Last Updated : 22 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report


Euler’s Number or commonly known as e is a very popular irrational number which approximates to 2.718281828 and is one of the most important mathematical constants. e is the base of the Natural system of logarithms. The exponential values are broadly used in many occasions such as Compound Interests, Bernoulli trials, Normal Distribution, Calculus and many more.

The expm1() function is an inbuilt function in PHP and is used to calculate e raised to the power of the given argument minus one.

Syntax:

float expm1($power)

Parameter: This function takes a single parameter $power which defines the power e has to be raised to.

Return Value: This function returns a floating point value which is the value of e raised to the $power of the given argument -1. That is, it will return (e$power-1).

Examples:

Input : $power = 1 
Output : (e1-1) = 1.718281828459

Input : $power = 0 
Output : (e0-1) = 0 

Below programs illustrate the expm1() function in PHP:

Program 1: PHP program to demonstrate the expm1() function.




<?php
// PHP program to demonstrate the expm1() function 
  
$n1 = 1; 
$n2 = 0; 
  
//prints value of e^1 - 1 
echo "e^", $n1, "-1 = ", expm1($n1), "\n"
  
//prints value of e^0 - 1 
echo "e^", $n2, "-1 = ", expm1($n2), "\n"
  
?>


Output:

e^1-1 = 1.718281828459
e^0-1 = 0

Program 2: PHP program to demonstrate the expm1() function using an array.




<?php
   
// PHP code to illustrate the working 
// of expm1() Function 
  
// input array 
$array = array(2, 3, 1, 5); 
  
// print all the e^x-1 value in the arrays
foreach($array as $i)
    echo 'e^'.$i.'-1 = '.expm1($i)."\n";
   
?>


Output:

e^2-1 = 6.3890560989307
e^3-1 = 19.085536923188
e^1-1 = 1.718281828459
e^5-1 = 147.41315910258

Reference:
http://php.net/manual/en/function.expm1.php



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads