pow() in Python

Learn via video course
FREE
View all courses
Python Course for Beginners With Certification: Mastering the Essentials
Python Course for Beginners With Certification: Mastering the Essentials
by Rahul Janghu
1000
4.90
Start Learning
Python Course for Beginners With Certification: Mastering the Essentials
Python Course for Beginners With Certification: Mastering the Essentials
by Rahul Janghu
1000
4.90
Start Learning
Topics Covered

Overview

In Python, the pow() function is used to calculate the nth power of a number (ana^n, where aa is a number and nn is its power). There are two types of pow() function, one is an inbuilt function, and the other one is imported from the math module.

Syntax of pow() in Python

Python has two types of pow() functions (inbuilt and imported from the math module).

Syntax of inbuilt pow() function

The inbuilt pow() function accepts three arguments (base, exponent, and modulus), out of which the modulus is an optional parameter.

Syntax of math.pow() function

The math.pow() function accepts two arguments (base and exponent)

Parameters of pow() in Python

Parameters of the inbuilt pow() function:

  • base: Base is the number whose nth power is to be found. It can be an integer, floating point, or even a complex number.
  • exponent: Exponent is the power to which the base is raised. It can be an integer, floating point, or even a complex number.
  • modulus (optional): Modulus divides the result (base^exponent) and gives its remainder (result%modulus). It can be an integer only and is an optional parameter.

Parameters of the math.pow() function are the same as the inbuilt pow() except for the fact that it doesn't accept the 3rd argument (modulus). The parameters of the pow() function cannot be a complex number.

Return Values of pow() in Python

The return value of the inbuilt pow() function:
The inbuilt pow() function returns the value of the base to the power of the exponent (ana^n). The return value can be an integer, floating point, or complex number. The return value of the math.pow() function:
The math.pow() function returns the value of base to the power of exponent (ana^n). The return value is always a floating point number.

Exceptions of pow() in Python

While the base and exponents of the pow() function can be negative, a floating point number, or even a complex number, there are some exceptions to the inbuilt pow() function when using the third argument (modulus)

ValueError: complex base with modulus in pow()

When we pass a complex number as the base while using the third argument (modulus), we get a "ValueError", which states that a complex number can't be used with a modulus.

TypeError: floating point number arguments with modulus in pow()

When we pass a floating point number as the base while using the third argument (modulus), we get a "TypeError", which states that floating-point arguments can't be used with a modulus as we can use modulus only with integers.

ValueError: negative exponent with modulus in pow()

When we pass a negative number as the exponent while using the third argument (modulus), we get a "ValueError", which states that a negative exponent can't be used with a modulus. This error is thrown because a negative exponent gives the result as a floating point number between 0 and 1; we already know that we cannot use a modulus with a floating point number.

ValueError: negative base with floating point exponent in math.pow()

When we pass a negative number as the base and a floating point number as the exponent to math.pow(), we get a "ValueError" as a result which states that we can't use a negative base with a floating point exponent.

OverflowError: Large values (greater than1e3081e308) returned with math.pow()

When we use math.pow(), the result can't be greater than 1e3081e308, and if we try to return a number that big, we get an "OverflowError", which states that the calculated value overflows the range of math.pow() return value.

Example of pow() in Python

Source Code

Output

In the above example, we calculate the 3rd power of 33 using the inbuilt pow() function. As a result, we get 33=273^3 = 27.

What is the pow() Function in Python?

The Python pow() function returns the power of the given numbers. There are two types of pow() function, one is inbuilt, and the other one is imported from the math module. The inbuilt pow() function is the same as using the ** operator.

Using the inbuilt pow() function, we can also find the modulus of the result using the optional third argument, which is not supported by the math pow() function. The modulus is useful in modular exponentiation (exponentiation performed over a modulus).

The pow() function is useful in complex calculations and helps write clean code (as implementing a power function can be trivial). inbuilt mathpow function

Differences between inbuilt pow() function and math.pow() function

pow()math.pow()
pow() is an inbuilt function.math.pow() is imported from the math module.
It accepts an optional third argument (modulus).It doesn't accept a third argument.
It accepts an integer, floating point, and complex numbers as base or exponent.It accepts integer and floating point numbers.
It doesn't change its arguments.It changes its arguments to floating point numbers.
The return value of pow() can be an integer, floating point, or even a complex number.The return value of math.pow() is always a floating point number.

Implementation cases in pow()

The implementation cases of using the inbuilt pow() function

  • Using a non-negative base with a non-negative exponent: Returns an integer
  • Using a non-negative base with a negative exponent: Returns a floating point number
  • Using a negative base with a non-negative exponent: Returns an integer
  • Using a negative base with a negative exponent: Returns a floating point number Implementation cases in pow

The implementation cases of using the math.pow() function

In math.pow() function, it doesn't matter if the base or exponent is negative or non-negative. The return value is always a floating point number. The implementation cases of using the math.pow function

More examples

Let's have a look at some more examples of the implementation of the pow() function for a better understanding:

Using the inbuilt pow() function with integers

Source Code:

Output:

In the above example, we are using the inbuilt pow() function with integers to calculate 333*3, and as a result, we get 32=93^2 = 9 as the output.

Using the inbuilt pow() function with floating point numbers

Source Code:

Output:

In the above example, we are using the inbuilt pow() function with a floating point number to calculate 3.53.53.5*3.5, and as a result, we get (3.5)2=12.25(3.5)^2 = 12.25 as the output.

Using the inbuilt pow() function with complex numbers

Source Code:

Output:

In the above example, we are using the inbuilt pow() function with a complex number to calculate (3+2j)2(3+2j)^2, and as a result we get (3+2j)2=(5+12j)(3+2j)^2 = (5+12j) in the output as (3+2j)(3+2j)=3222+12j(3+2j) * (3+2j) = 3^2 - 2^2 + 12j, which further simplifies to 94+12j=(5+12j)9 - 4 + 12j = (5 + 12j).

Using the inbuilt pow() function with the third argument (modulus)

Source Code:

Output:

In the above example, we are using the inbuilt pow() function with the third argument (modulus) to calculate (210210)%40000(210*210)\%40000, and as a result we get (2102)%40000=4100(210^2) \% 40000 = 4100 in the output as 210210=44100210*210=44100 and 44100%40000=410044100\%40000=4100.

Using the math.pow() function

Source Code:

Output:

In the above example, we are using the math.pow() function to calculate 21221^2, and as a result, we get 212=441.021^2 = 441.0 as the output. The output is a floating point number because the math.pow() function converts its parameters (base and exponent) to floating point numbers.

Using a complex base with modulus

Source Code:

Error:

In the above example, we pass a complex number as the base while using the third argument (modulus), and as a result, we get a "ValueError", which states that we cannot use a complex base with the modulus.

Using floating point number arguments with modulus

Source Code:

Error:

The above example passes a floating point number as the base while using the third argument (modulus). As a result, we get a "TypeError" which states that we cannot use floating point number arguments with the modulus as we can use modulus only with integers.

Using negative exponent with modulus

Source Code:

Error:

In the above example, we pass a negative number as the exponent while using the third argument (modulus). As a result, we get a "ValueError", which states that we cannot use a negative exponent with the modulus.

This error is thrown because a negative exponent gives the result as a floating point number between 00 and 11, and as we already know, we cannot use a modulus with a floating point number.

Using negative base with floating point exponent in math.pow()

Source Code:

Error:

ValueError: math domain error
    res = math.pow(base, exponent)
Line 9 in <module> (Solution.py)

In the above example, we pass a negative integer as the base and a floating point number as the exponent to the math.pow() function. As a result, we get a "ValueError" which states that we cannot use a negative base with a floating point exponent.

Large values (greater than 1e3081e308) returned with math.pow()

Source Code:

Error:

In the above example, we calculate 1000^103 using the math.pow() function. As a result, we get a "OverflowError", which states that the calculated value overflows the range of math.pow() return value.

Conclusion

  • The pow() function is used to find the nth power of a value.
  • There are two types of pow() function: inbuilt and imported from the math module.
  • The inbuilt pow() function accepts three arguments (base, exponent, and modulus), out of which the third argument (modulus) is optional.
  • We can also find the nth power of complex numbers using the inbuilt pow() function.
  • The math.pow() function accepts only two arguments (base and exponent).

See Also: