Factorial Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

medium
Solve for nn: n!(nโˆ’2)!=30\frac{n!}{(n-2)!} = 30.

Solution

  1. 1
    Expand the factorial quotient: n!(nโˆ’2)!=n(nโˆ’1)\frac{n!}{(n-2)!} = n(n-1).
  2. 2
    Set up the equation: n(nโˆ’1)=30โ‡’n2โˆ’nโˆ’30=0n(n-1) = 30 \Rightarrow n^2 - n - 30 = 0.
  3. 3
    Factor: (nโˆ’6)(n+5)=0(n-6)(n+5) = 0, so n=6n = 6 or n=โˆ’5n = -5.
  4. 4
    Since factorials use nonnegative integers here, n=6n = 6.

Answer

n=6n = 6
Factorial quotients often simplify by canceling common factors. After simplification, the problem becomes a standard quadratic equation.

About Factorial

The factorial of a non-negative integer nn, written n!n!, is the product of all positive integers from 1 to nn: n!=nโ‹…(nโˆ’1)โ‹ฏ2โ‹…1n! = n \cdot (n-1) \cdots 2 \cdot 1.

Learn more about Factorial โ†’

More Factorial Examples