This article was co-authored by David Jia and by wikiHow staff writer, Hannah Dillon. David Jia is an Academic Tutor and the Founder of LA Math Tutoring, a private tutoring company based in Los Angeles, California. With over 10 years of teaching experience, David works with students of all ages and grades in various subjects, as well as college admissions counseling and test preparation for the SAT, ACT, ISEE, and more. After attaining a perfect 800 math score and a 690 English score on the SAT, David was awarded the Dickinson Scholarship from the University of Miami, where he graduated with a Bachelor’s degree in Business Administration. Additionally, David has worked as an instructor for online videos for textbook companies such as Larson Texts, Big Ideas Learning, and Big Ideas Math.
This article has been fact-checked, ensuring the accuracy of any cited facts and confirming the authority of its sources.
This article has been viewed 170,444 times.
It can be difficult to simplify radicals, even if you have a calculator. It can be even more difficult on a TI-84 calculator, as these calculators don't have a Computer Algebra System that can display radicals in solutions.[1] However, that doesn't mean you can't make a program to help you simplify radicals in a snap. This wikiHow will teach you how to create your own TI-84 program to easily simply radicals.
Quick Steps for TI-84 Radical Simplifier
- Press PRGM and create a new program.
- Add the ClrTable command from the PRGM menu.
- Add an Input command for the variable N ("N=",N).
- Add a formula with the N variable and store it in Y₁ ("N/X²"→Y₁).
- Finish the program by adding a DispTable and a Stop command.
- Press 2ND > MODE (Quit) to exit and save the program.
Steps
Creating a Radical Simplifier Program
-
Create a new program. To do this, press the PRGRM button, use the right-arrow to scroll to NEW, and then press ENTER.[2]
-
Enter a name for the program and press ↵ Enter. You can name the program anything you want, as long as it's 8 characters or less. In this guide, we'll be calling the program "SIMPRAD." After entering the program name, press ENTER to save it.Advertisement
-
Add the ClrTable command. This will ensure your table is cleared out before you begin to avoid data carryover.
- Press PRGM, scroll to the I/O tab, and press the 9 key to select ClrTable.
- Press ENTER to move to the next line.
-
Add some display text for explanation (optional). This step is optional, but is helpful incase you forget what number you're supposed to enter for this program. If you don't want to add this display text, skip to the next step.
- Press PRGM, scroll to the I/O tab, and press the 3 key to select Disp.
- Press 2ND then ALPHA and type something like "Enter the number under the radical for N".
- Press ALPHA again to close the alphabet menu.
- Press ENTER to move to the next line.
-
Add an Input command. This command allows you to input the radical you want to simplify. We'll be using the variable N to represent this number.
- Press PRGM, scroll to the I/O tab, and press 1 to select Input.
- Press ALPHA and write "N.
- Press 2ND then MATH (Test), scroll to the TEST tab, and press 1 to select the equals sign (=).
- Press ALPHA and write ".
- Press the comma button (,) to add a comma.
- Press ALPHA and write N.
- Press ENTER to move to the next line.
-
Add your formula and store it in the Y₁ variable. With this program, you'll be able to simplify radicals using a table. The formula added to the Y₁ variable will include the N variable you set up in the last step.
- Press ALPHA and write "N.
- Press the divide button to get a slash (/).
- Press X,TØn to add an X variable.
- Press X² to add a square root to the X.
- Press ALPHA and write ".
- Press STO>, then press VARS, scroll to the Y-VARS tab, and press 1 then 1 to select the Y₁ variable.
- Press ENTER to move to the next line.
-
Add a DispTable command. This will show you the table you've created with the formula and the value of the N variable.
- Press PRGM, scroll to the I/O tab, and press 5 to select DispTable.
- Press ENTER to move to the next line.
-
Add a Stop command. The Stop command tells the calculator that it's reached the end of the program.
- Press PRGM, scroll to the CTL tab, and press ALPHA F (or scroll with the arrows) to select Stop.
-
Exit the program editor. To do this, press 2ND and MODE (Quit). To recap, this is what your program should look like before you exit out of it:
PROGRAM:SIMPRAD :ClrTable :Disp "Enter the number under the radical for N" :Input "N=",N :"N/X²"→Y₁ :DispTable :Stop
Running the Radical Simplifier Program
-
Run the program. Press PRGM, go to the EXEC tab, and select the program you just made. In this guide, we made a program called SIMPRAD and we can run it by pressing the 2 button.
- Press ENTER to run the program.
-
Enter the radical you want to simplify. For example, if you are simplifying √45, you would enter "45" where it says "N=" and press ENTER to confirm your input. When you enter a number for N, you'll see a plot list appear on screen.
-
Find the first Y₁ value that is a decimal that starts with 0. In the example, the first decimal that starts with 0 is on line 7 (0.9183673469).
-
Scroll up until you find the first row with a whole number. In the example, the first row with a whole number above line 7 is line 3, and the Y₁ value is 5.
-
Use the row number and Y₁ value to create your simplified radical. In the example, since the row was 3 and the Y₁ value was 5, the simplified radical is 3√5.
- You can test this by calculating √45 and 3√5 on your calculator. Both give the result 6.7082039325.
Creating the Legacy Program
-
Create a new program. To do this, press the PRGRM button, use the right-arrow to scroll to NEW, and then press ENTER.
- This program is considered a legacy program because it may or may not work with the most recent TI-84 calculator models and/or operating systems.
-
Enter a name for the program and press ↵ Enter. Something like "SIMPRAD" should suffice. You can use up to 8 characters in your program name. After entering the program name, press ENTER to save it.
-
Write Prompt N. Press PRGRM, go to the I/O tab and select Prompt. Then type the letter N and press ENTER.
-
Store 1 in C. Type 1, then press STO>, then type C and hit ENTER.
-
Store 2 in F. Type 2, then press STO>, then type F and hit ENTER.
-
Write While F≤ √(N). To do this, follow these steps:
- Press PRGRM and select While.
- Write the letter F.
- Press 2ND and then MATH (test).
- Select the ≤ symbol.
- Write √(N) and hit ENTER.
-
Write While fPart(N/F²)=0. Because this part is wider than your screen, the line may be broken into two parts.
- Press PRGRM and select While.
- Press MATH.
- Go to the NUM tab and select fPART.
- Type N/F², and close the parentheses.
- Press 2ND and then MATH (test).
- Select = and enter 0 (equal to zero).[3]
-
Store C*F in C. Write C*F, press STO>, write C, and hit ENTER.
-
Store N/F² in N. Write N/F², press STO>, write N, and hit ENTER.
-
Write End. Press PRGRM, select End, and hit ENTER.
-
Write If F=2.
- Press PRGRM, select If, and write F.
- Then, press 2ND and then MATH.
- Select =, write 2, and hit ENTER.
-
Store 1 in F. Type 1 and then press STO>. Then, type F and hit ENTER.
-
Store 2+F in F. Type 2+F and then press STO>. Next, type F and hit ENTER.
-
Write End. Press PRGRM, select End, and then hit ENTER.
-
Write Disp C,"√(", N. Here's how:
- Press PRGRM.
- Go to the I/O tab and select Disp.
- Type C and press ALPHA +, 2ND, x², ALPHA + and write N.
-
Exit the program editor. After you're finished creating the program, press 2ND and then QUIT to exit. Your changes will be saved automatically.
Running the Legacy Program
-
Open the program. To open your program, press the PRGRM button on the calculator, scroll to your program, select it, and then press ENTER.
-
Enter the number under the radical you want to simplify. For example, if you want to simplify √(88), you'd enter 88.
-
Press ENTER. The first number displayed is the coefficient of the simplified radical, while the second is the number under the simplified radical.
Expert Q&A
Video
Tips
-
If your calculator runs out of batteries, you will lose this program and any others you've written unless you archive them.[4] To archive a program, press 2ND and then + (mem), scroll to the ARCHIVE option, and press ENTER. Press PRGRM, select your new program, and then press ENTER two times to save.Thanks
References
- ↑ https://education.ti.com/en/customer-support/knowledge-base/ti-83-84-plus-family/product-usage/11740
- ↑ https://mathclasscalculator.com/index.php/calculator-tutorials/create-run-program-ti-84/
- ↑ https://www.youtube.com/watch?v=et64gwmcAwQ
- ↑ https://www.zencalculator.com/guide/how-to-archive-programs-on-ti-84/
About This Article
First, create a program on your TI-84 and give it a name that's 8-characters or fewer. Then, enter the code for the program on each line. Pressing ENTER goes to the next line. After entering all lines of code, exit the editor, press the PRGRM button, and select your program. Enter the number for the radical you want to simplify and press ENTER.