Sunday, June 18, 2017

Calculate the factorial or permutation of a number

Calculate the factorial or permutation of a number

Let's say you have six bells, each with a different tone, and you want to find the number of unique sequences in which each bell can be rung once. In this example, you are calculating the factorial of six. In general, use a factorial to count the number of ways in which a group of distinct items can be arranged (also called permutations). To calculate the factorial of a number, use the FACT function.

Example

The example may be easier to understand if you copy it to a blank worksheet.

How to copy an example

  1. Create a blank workbook or worksheet.

  2. Select the example in the Help topic.

    Note: Do not select the row or column headers.

    Selecting an example from Help

    Selecting an example from Help

  3. Press CTRL+C.

  4. In the worksheet, select cell A1, and press CTRL+V.

  5. To switch between viewing the results and viewing the formulas that return the results, press CTRL+` (grave accent), or on the Formulas tab, in the Formula Auditing group, click the Show Formulas button.

1

2

A

Data

6

Formula

Description (Result)

=FACT(A2)

Factorial of 6, or 6*5*4*3*2*1 (720)

=FACT(3)

Factorial of 3, or 3*2*1 (6)

=FACT(A2+4)

Factorial of 10 (3628800)

Function details

FACT

No comments:

Post a Comment