PDF download Download Article
Easy to follow instructions on making a simple program to simplify radicals on a TI-84
PDF download Download Article

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

  1. Press PRGM and create a new program.
  2. Add the ClrTable command from the PRGM menu.
  3. Add an Input command for the variable N ("N=",N).
  4. Add a formula with the N variable and store it in Y₁ ("N/X²"→Y₁).
  5. Finish the program by adding a DispTable and a Stop command.
  6. Press 2ND > MODE (Quit) to exit and save the program.
Section 1 of 4:

Creating a Radical Simplifier Program

PDF download Download Article
  1. To do this, press the PRGRM button, use the right-arrow to scroll to NEW , and then press ENTER . [2]
  2. 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
  3. 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.
  4. 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.
  5. 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.
  6. 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 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.
  7. 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.
  8. 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.
  9. 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
  10. Advertisement
Section 2 of 4:

Running the Radical Simplifier Program

PDF download Download Article
  1. 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.
  2. 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.
  3. In the example, the first decimal that starts with 0 is on line 7 (0.9183673469).
  4. In the example, the first row with a whole number above line 7 is line 3, and the Y₁ value is 5.
  5. 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.
  6. Advertisement
Section 3 of 4:

Creating the Legacy Program

PDF download Download Article
  1. 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.
  2. 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.
  3. Press PRGRM , go to the I/O tab and select Prompt . Then type the letter N and press ENTER .
  4. Type 1 , then press STO> , then type C and hit ENTER .
  5. Type 2 , then press STO> , then type F and hit ENTER .
  6. 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 .
  7. 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]
  8. Write C*F , press STO> , write C , and hit ENTER .
  9. Write N/F² , press STO> , write N , and hit ENTER .
  10. Press PRGRM , select End , and hit ENTER .
    • Press PRGRM , select If , and write F .
    • Then, press 2ND and then MATH .
    • Select = , write 2 , and hit ENTER .
  11. Type 1 and then press STO> . Then, type F and hit ENTER .
  12. Type 2+F and then press STO> . Next, type F and hit ENTER .
  13. Press PRGRM , select End , and then hit ENTER .
  14. Here's how:
    • Press PRGRM .
    • Go to the I/O tab and select Disp .
    • Type C and press ALPHA + , 2ND , , ALPHA + and write N .
  15. After you're finished creating the program, press 2ND and then QUIT to exit. Your changes will be saved automatically.
  16. Advertisement
Section 4 of 4:

Running the Legacy Program

PDF download Download Article
  1. To open your program, press the PRGRM button on the calculator, scroll to your program, select it, and then press ENTER .
  2. For example, if you want to simplify √(88), you'd enter 88 .
  3. The first number displayed is the coefficient of the simplified radical, while the second is the number under the simplified radical.
  4. Advertisement

Expert Q&A

Ask a Question
      Advertisement

      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.
      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      Advertisement

      About This Article

      Article Summary X

      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 .

      Did this summary help you?
      Thanks to all authors for creating a page that has been read 160,693 times.

      Is this article up to date?

      Advertisement