Python Program to Find the Factorial of a Number

  1. What’s Factorial
  2. Factorial Components
  3. 10 factorial
  4. factorial of 5
  5. factorial of 0
  6. Factorial program in Python
    1. Factorial program in Python utilizing operate
    2. Factorial program in Python utilizing for loop
    3. Factorial program in Python utilizing recursion
  7. Depend Trailing Zeroes in Factorial
  8. Often requested questions

Drawback Assertion: We intend to make use of Python to cowl the fundamentals of factorial and computing factorial of a quantity.

What’s Factorial?

In easy phrases, if you wish to discover the factorial of a optimistic integer, hold multiplying it with all of the optimistic integers lower than that quantity. The ultimate consequence that you just get is the factorial of that quantity. So if you wish to discover the factorial of seven, multiply 7 with all optimistic integers lower than 7, and people numbers could be 6,5,4,3,2,1. Multiply all these numbers by 7, and the ultimate result’s the factorial of seven.

If you’re trying to construct your experience in Python factorial program, take into account getting licensed. This free course on Factorial Program in Python presents you full steering on the topic and in addition a certificates on completion which is certain to make your CV stand out.

Components of Factorial

Factorial of a quantity is denoted by n! is the product of all optimistic integers lower than or equal to n:
n! = n*(n-1)*(n-2)*…..3*2*1

10 Factorial

So what’s 10!? Multiply 10 with all of the optimistic integers that are lower than 10.
10! =10*9*8*7*6*5*4*3*2*1=3628800

Factorial of 5

To search out ‘5!’ once more, do the identical course of. Multiply 5 with all of the optimistic integers lower than 5. These numbers could be 4,3,2,1
5!=5*4*3*2*1=120

Factorial of 0

Since 0 isn’t a optimistic integer, as per conference, the factorial of 0 is outlined to be itself.
0!=1

Factorial of a quantity

Computing that is an fascinating downside. Allow us to take into consideration why easy multiplication could be problematic for a pc. The reply to this lies in how the answer is applied.

1! = 1
2! = 2
5! = 120
10! = 3628800
20! = 2432902008176640000
30! = 9.332621544394418e+157

The exponential rise within the values reveals us that factorial is an exponential operate, and the time taken to compute it could take exponential time.

Factorial Program in Python

We’re going to undergo 3 methods by which we will calculate factorial:

  • Utilizing a operate from the maths module
  • Iterative strategy(Utilizing for loop)
  • Recursive strategy

Factorial program in Python utilizing the operate

That is probably the most simple technique which can be utilized to calculate the factorial of a quantity. Right here we now have a module named math which comprises a number of mathematical operations that may be simply carried out utilizing the module.

import math
num=int(enter("Enter the quantity: "))
print("factorial of ",num," (operate): ",finish="")
print(math.factorial(num))

TEST THE CODE

Enter – Enter the quantity: 4
Output – Factorial of 4 (operate):24

Factorial program in python utilizing for loop

def iter_factorial(n):
    factorial=1
    n = enter("Enter a quantity: ")
    factorial = 1
    if int(n) >= 1:
        for i in vary (1,int(n)+1):
            factorial = factorial * i
        return factorial
  
num=int(enter("Enter the quantity: "))
print("factorial of ",num," (iterative): ",finish="")
print(iter_factorial(num))

TEST THE CODE

Enter – Enter the quantity: 5
Output – Factorial of 5 (iterative) : 120

Think about the iterative program. It takes lots of time for the whereas loop to execute. The above program takes lots of time, let’s say infinite. The very function of calculating factorial is to get the lead to time; therefore, this strategy doesn’t work for enormous numbers.

Factorial program in Python utilizing recursion

def recur_factorial(n):
    """Operate to return the factorial
    of a quantity utilizing recursion"""
    if n == 1:
        return n
    else:
        return n*recur_factorial(n-1)
num=int(enter("Enter the quantity: "))
print("factorial of ",num," (recursive): ",finish="")
print(recur_factorial(num))

TEST THE CODE

Enter – Enter – Enter the quantity : 4
Output – Factorial of 5 (recursive) : 24

On a 16GB RAM pc, the above program may compute factorial values as much as 2956. Past that, it exceeds the reminiscence and thus fails. The time taken is much less when in comparison with the iterative strategy. However this comes at the price of the house occupied.

What’s the resolution to the above downside?
The issue of computing factorial has a extremely repetitive construction.

To compute factorial (4), we compute f(3) as soon as, f(2) twice, and f(1) thrice; because the quantity will increase, the repetitions improve. Therefore, the answer could be to compute the worth as soon as and retailer it in an array from the place it may be accessed the following time it’s required. Due to this fact, we use dynamic programming in such circumstances. The situations for implementing dynamic programming are

  1. Overlapping sub-problems
  2. optimum substructure 

Think about the modification to the above code as follows:

def DPfact(N):
    arr={}
    if N in arr:
        return arr[N]
    elif N == 0 or N == 1:
        return 1
        arr[N] = 1
    else:
        factorial = N*DPfact(N - 1)
        arr[N] = factorial
    return factorial
    
num=int(enter("Enter the quantity: "))
print("factorial of ",num," (dynamic): ",finish="")
print(DPfact(num))

TEST THE CODE

Enter – Enter the quantity: 6
Output – factorial of 6 (dynamic) : 720

A dynamic programming resolution is very environment friendly when it comes to time and house complexities.

Depend Trailing Zeroes in Factorial utilizing Python

Drawback Assertion: Depend the variety of zeroes within the factorial of a quantity utilizing Python

num=int(enter("Enter the quantity: "))
  
# Initialize consequence 
depend = 0
# Preserve dividing n by 
# powers of 5 and 
# replace Depend 
temp = 5
whereas (num / temp>= 1):
    depend += int(num / temp) 
    temp *= 5
# Driver program  
print("Variety of trailing zeros", depend)

Output
Enter the Quantity: 5
Variety of trailing zeros 1

Discover ways to discover if a string is a Palindrome.

Discover ways to print the Fibonacci Sequence in Python. Additionally, be taught synthetic intelligence on-line with the assistance of this AI Course.

Often requested questions

What’s factorial in math?

Factorial of a quantity, in arithmetic, is the product of all optimistic integers lower than or equal to a given optimistic quantity and denoted by that quantity and an exclamation level. Thus, factorial seven is written 4! that means 1 × 2 × 3 × 4, equal to 24. Factorial zero is outlined as equal to 1. The factorial of Actual and Detrimental numbers don’t exist.

What’s the system of factorial?

To calculate the factorial of a quantity N, use this system:

Factorial=1 x 2 x 3 x…x N-1 x N

Is there a factorial operate in Python?

Sure, we will import a module in Python referred to as math which comprises nearly all mathematical features. To calculate factorial with a operate, right here is the code:

import math
num=int(enter("Enter the quantity: "))
print("factorial of ",num," (operate): ",finish="")
print(math.factorial(num))

Discovered this weblog fascinating? Be taught Synthetic Intelligence On-line with the assistance of Nice Studying’s PGP Synthetic Intelligence and Machine Studying course, and upskill immediately! Whilst you’re at it, try the python course for novices to be taught extra in regards to the primary Python.

Leave a Comment