Table of contents
1.
Introduction 
1.1.
What is Carbon? 
2.
Factorial
3.
Approach
3.1.
Using Iteration
3.1.1.
Implementation
3.1.2.
Complexity Analysis
3.2.
Using Recursion
3.2.1.
Implementation
3.2.2.
Complexity Analysis
4.
Frequently Asked Questions
4.1.
When was the Carbon language introduced?
4.2.
Is Carbon language an open source?
4.3.
What do you mean by factorial?
4.4.
What is the time complexity for the recursive approach to find the factorial of a number in Carbon?
4.5.
What is the time complexity for the iterative approach to find the factorial of a number in Carbon?
5.
Conclusion
Last Updated: Mar 27, 2024
Easy

Program to find Factorial of a Number in Carbon

Career growth poll
Do you think IIT Guwahati certified course can help you in your career?

Introduction 

Hello Ninjas, we are back with another article related to a new language introduced by Google, similar to C++.

Factorial of a number in Carbon language

In this article, we will discuss the recently introduced Carbon Language. We will understand how to write a program to find the factorial of a number in carbon language. 

So, let's get started by understanding the Carbon language.

What is Carbon? 

Carbon is a programming language. This language was introduced in July 2022, and it is still in the development process. We can also say that Carbon is a successor language of C++ by tackling some of its shortcomings. Moving forward, let's understand the factorial.

Factorial

In simple words, a Factorial is a function in which we do multiplication operations of all positive integers with all the positive integers that are less than it.

Factorial Formula:

The general formula to find the factorial of a number is given:

general formula to find the factorial of a number

So the recurrence relation derived will be: n * (n-1)!

For example, the factorial of 5(5!) is written as: 

5! = 5. 4!

5! = 5 (4 × 3 × 2 × 1)

5! = 5 (24)

5! = 120

Therefore, the value of 5! is 120.

Approach

There are mainly two ways to implement the factorial of a number in Carbon.

Using Iteration

In the iteration method, we will employ a loop to find the product of all positive integers which is less than or equal to 'n'. Here in the example, we will use a while loop to print the factorial of a number in Carbon language.

The steps are as follows:

  1. First we will declare a variable of int data type(i.e. 132) and call for a function, say â€˜fact’, where the parameters will again be of int type.
     
  2. Then we will start the while loop from 1 till the input number, and we will keep multiplying the numbers. Simultaneously we will store the result in the variable res and decrement the value of the input number by 1.
     
  3. We will return the result res variable when the loop ends.
     

Let's see its implementation.

Implementation

The implementation of the above approach is:

// Iterative approach to find the factorial of a number in Carbon.
package sample api;
 
// Function fact is created, which takes variable f
// of return int type, i.e., 132
fn fact(var f : i32) -> i32 {
   
    // Initialising the res variable with '1'
    var res : i32 = 1;
 
    // While loop will iterate till the number f
    // is greater than equal to '2.'
    while(f >= 2) {
        res = res * f;
        // Decrementing the variable value by '1'
        f = f-1;
    }
    return res;
}
 
// Main function
fn Main() -> i32 {
 
  // Variable f is created of int type, i.e., 132  
  var f : i32 = 6;
 
  // Printing the answer returned by the function fact
  Print("Factorial is {0}", fact(f));
  return 0;
}

 

Output:

Output of the iterative approach

Let’s see the steps or iterations for our number.

steps of iteration for our number

Explanation:

Here in this example, we have used an iterative approach to find out the factorial of 6, i.e., 720; in the iterative approach, while loop is used till the value of the variable f is greater than equal to '2'.

Complexity Analysis

Time Complexity: The time complexity for the above approach is O(n), where n-> number.

Space Complexity: The space complexity for the above approach is O(1); no extra space is required.

Using Recursion

We can recursively define the recurrence relation. Here we will use a recursive method to find the factorial of a number in the Carbon language.

Base condition for recursion approach

The steps are as follows:

  1. First, we will write the base condition for recursive function â€˜fact’, i.e., if ‘f’ is equal to 0, then return 1.
     
  2. After that, we will make the recursive call in which the function will call itself by decreasing the value of ‘f’ by 1. It would look like this 'f*fact(f-1)’ here, factorial is the function where the recursive call is being made.
     
  3. Now in the main function, we will declare a variable named â€˜f’, and we will assign the returned value of the function â€˜fact’.
     

Let’s see its implementation.

Implementation

The implementation of the approach is as follows:

// Implementing a recursive approach to find the factorial in Carbon.
package sample api;
 
// Function fact is created, which takes variable f
// of return int type, i.e., 132
fn fact(var f : i32) -> i32 {
   
    // Base Condition for recursive function
    if(f==0) {
        return 1;
    }
    /* 
    	If the number is 0, print the base condition
    	Else, call the function
    */
    return f*fact(f-1);
}
 
// Main function
fn Main() -> i32 {
 
  // Variable f is created of int type, i.e., 132  
  var f : i32 = 6;
 
  // Printing the answer returned by the function fact
  Print("Factorial is {0}", fact(f));
  return 0;
}


Output:

Output of the recursive approach

Let’s see the steps of recursion for our number.

steps of recursion for our number

Explanation:

Here in this example, we have a function fact() that recursively calls itself to determine the factorial of 6 until the base condition(f==0) is reached.

Complexity Analysis

Time Complexity: The time complexity for the above approach is O(n), where n-> number.

Space Complexity: The space complexity for the above approach is also O(n), as the recursive stack is called.


Check out this problem - First Missing Positive 

Frequently Asked Questions

When was the Carbon language introduced?

Carbon was introduced by Google engineer Chandler Carruth in Toronto in July 2022.

Is Carbon language an open source?

Yes, Carbon is an open-source general-purpose programming language introduced by Google in 2022, which is a successor to C++ language.

What do you mean by factorial?

Factorial is a function in which we do multiplication operations of all positive integers with all the positive integers that are less than it.

What is the time complexity for the recursive approach to find the factorial of a number in Carbon?

The time complexity of the recursive program is O(n), where ‘n’ is the number of input elements.

What is the time complexity for the iterative approach to find the factorial of a number in Carbon?

The time complexity of the recursive program is O(n), where ‘n’ is the number of input elements.

Conclusion

In this article, we have exclusively discussed the program to find the factorial of a number in Carbon.

In this blog, we started with the basic definition of factorial. Then we discussed the two possible methods, i.e., iterative and recursive approaches regarding the factorial program and their implementations with the proper explanation.

Recommended Articles:

1. Jump Statements in Carbon

2. Program to find even or odd numbers using Carbon

3. Armstrong Number using Carbon

Check out The Interview guide for Product Based Companies and some of the Popular Interview Problems from Top companies like AmazonAdobeGoogleUberMicrosoft, etc., on Coding Ninjas Studio.

Also, check out some of the Guided Paths on topics such as Data Structures and AlgorithmsCompetitive ProgrammingOperating SystemsComputer Networks, DBMSSystem Design, etc., as well as some Contests, Test SeriesInterview Bundles, and some Interview Experiences curated by top Industry Experts only on Coding Ninjas Studio.

Happy learning!

Live masterclass