How to Put Factorial in Calculator Ti-84
Calculating factorials on your TI-84 calculator is straightforward once you know the correct method. This guide will walk you through the process step-by-step, including how to input factorials in equations and programs.
Introduction
The factorial function, denoted by an exclamation mark (!), is a fundamental concept in mathematics that represents the product of all positive integers up to a given number. For example, 5! = 5 × 4 × 3 × 2 × 1 = 120.
While the TI-84 doesn't have a dedicated factorial button, you can calculate factorials using the calculator's built-in functions. This guide will show you exactly how to do it.
Factorial Basics
The factorial of a non-negative integer n is defined as:
n! = n × (n-1) × (n-2) × ... × 1
0! = 1 (by definition)
Factorials are used in combinatorics, probability, algebra, and many other mathematical fields. They appear in formulas for permutations, combinations, binomial coefficients, and more.
TI-84 Factorial Method
Since the TI-84 doesn't have a direct factorial key, you'll need to use one of these methods:
- Use the math print (MATH) menu and select "math" → "factorial"
- Use the gamma function (MATH → "prob" → "gamma") with n+1
- Write a program to calculate factorials
The first method is the simplest for one-time calculations, while the program method is best for repeated use.
Step-by-Step Guide
Method 1: Using the Math Menu
- Press the MATH key
- Scroll down to PRB (probability) and press ENTER
- Scroll to ! (factorial) and press ENTER
- Enter the number you want to calculate the factorial of
- Press ENTER to see the result
Method 2: Using the Gamma Function
- Press the MATH key
- Scroll down to PRB and press ENTER
- Scroll to gamma( and press ENTER
- Enter the number you want to calculate the factorial of plus 1 (e.g., for 5!, enter 6)
- Press ENTER to see the result
Note: The gamma function is more general than factorial, but for integer values, gamma(n+1) = n!
Method 3: Creating a Factorial Program
For repeated use, create a program:
- Press PRGM → EDIT
- Press NEW and name it (e.g., FACT)
- Enter these lines:
- Lbl FACT
- If A=0
- Then
- 1→B
- Else
- A×fact(A-1)→B
- End
- Return
- Press EXIT to save
- To use: Press PRGM → EXECUTE → select FACT
- Enter a number and press ENTER
Examples
Let's calculate 4! using each method:
Method 1 Example
- MATH → PRB → !
- Enter 4 → ENTER
- Result: 24
Method 2 Example
- MATH → PRB → gamma(
- Enter 5 → ENTER
- Result: 24
Program Example
- PRGM → EXECUTE → FACT
- Enter 4 → ENTER
- Result: 24
All methods should give you the same result of 24 for 4!.
FAQ
- Can I calculate factorials with decimals on the TI-84?
- No, the factorial function only works with non-negative integers. For decimal values, you would need to use the gamma function.
- What's the maximum number I can calculate a factorial for on the TI-84?
- The TI-84 can calculate factorials up to 69! before encountering overflow errors. For larger numbers, you might need a more advanced calculator.
- Is there a difference between ! and gamma( for factorials?
- For integer values, gamma(n+1) equals n!. The gamma function is more general and works with non-integers, but for factorial calculations, the ! function is more straightforward.
- Can I use factorials in equations on the TI-84?
- Yes, you can use the factorial function in equations by using the MATH → PRB → ! method. Just enter the equation and use the factorial function where needed.