How to Program a Quadratic Solver for TI-83/84

Tony St John
14 Apr 201704:17
EducationalLearning
32 Likes 10 Comments

TLDRIn this instructional video, the presenter guides viewers on programming a TI-83 or TI-84 calculator to solve the quadratic formula. The tutorial is particularly useful for students in advanced math and science courses, like Chemistry 163. The process involves creating a new program named 'quad', prompting for A, B, and C values, and entering the quadratic formula with careful attention to parentheses. The program calculates the roots and displays them, exemplified with an input problem, demonstrating the practical application of the calculator in solving quadratic equations.

Takeaways
  • πŸ“š The video is a tutorial on programming a TI-83 or TI-84 calculator to solve the quadratic formula.
  • πŸ’‘ It's particularly useful for subjects like Chemistry 163 and other math classes.
  • πŸ”‘ The process starts by accessing the 'Program' menu and creating a new program named 'quad' or 'quadratic formula'.
  • πŸ“ The program prompts the user to input values for 'A', 'B', and 'C' using the calculator's prompt feature.
  • πŸ”’ The quadratic formula is entered into the calculator, carefully including the negative sign and square root operations.
  • πŸ“ˆ The formula involves calculating the discriminant (B squared minus 4AC) and then using it to find the roots.
  • πŸ”„ The program stores the calculated roots in variables X and Y, representing the two possible solutions.
  • πŸ‘‰ The 'sto' and 'arrow' buttons are used to store the results, ensuring proper syntax with parentheses.
  • πŸ–₯ The final step is to display the roots with a message, formatted as 'roots equal X, Y'.
  • βœ… The program can be exited using the 'Quit' function and then run to input values and calculate the roots.
  • πŸ“ˆ An example calculation is demonstrated, showing how to input scientific notation and receive the calculated roots.
Q & A
  • What is the purpose of the video?

    -The video demonstrates how to program a TI-83 or TI-84 calculator to solve the quadratic formula, which is useful for subjects like chemistry and math.

  • Which calculator models are discussed in the video?

    -The TI-83 and TI-84 calculator models are the focus of the video.

  • What is the first step in creating a new program on the calculator?

    -The first step is to press the program button, then select 'new' to create a new program.

  • How do you name a new program on the calculator?

    -You use the keypad to type in the name of the program, in this case, 'quad' or 'quadratic'.

  • What does the 'prompt' command in the calculator program do?

    -The 'prompt' command is used to have the calculator ask for the values of A, B, and C for the quadratic formula.

  • How is the negative sign represented in the calculator program?

    -The negative sign is represented by the negative key on the calculator, not the minus sign.

  • What does the 'store' command do in the calculator program?

    -The 'store' command is used to save the calculated value, in this case, storing the result in variable X.

  • How do you enter the square root in the calculator program?

    -You use the Alpha key to get the variable, then press the 'x squared' button to indicate a square root.

  • What is the significance of using parentheses in the program?

    -Parentheses are used to ensure that the correct order of operations is followed and to enclose the numerator of the quadratic formula correctly.

  • How do you display the results of the program?

    -You use the 'display' command to show the results, formatting the output to show 'roots equal' followed by the calculated values X and Y.

  • What does the video suggest to do after programming the calculator?

    -The video suggests quitting the program editing mode and then running the program to input values and get the roots of the quadratic equation.

Outlines
00:00
πŸ“š Programming the TI-83/84 for Quadratic Formula

This paragraph introduces a tutorial on how to program a TI-83 or TI-84 calculator to solve the quadratic formula, which is particularly useful for students in chemistry or math courses. The process begins by creating a new program named 'quad' or 'quadratic formula' using the calculator's program mode. The user is guided to prompt for A, B, and C values using the calculator's 'Prompt' function and then to input the quadratic formula correctly, ensuring to use negative signs and square root functions. The formula is entered in two parts, representing the plus and minus scenarios, and stored as 'X' and 'Y'. The final step is to display the roots using the 'Display' function, formatting the output to show 'roots equal X, Y'. The tutorial concludes with instructions on how to run the program and input example values to calculate the roots of a quadratic equation.

Mindmap
Keywords
πŸ’‘TI-83/TI-84
The TI-83 and TI-84 are graphing calculators produced by Texas Instruments. They are widely used in educational settings for various mathematical calculations and graphing. In the context of the video, these calculators are the primary tools for programming a solution to the quadratic formula, demonstrating their utility in solving complex mathematical problems beyond basic calculations.
πŸ’‘Quadratic Formula
The quadratic formula is a fundamental algebraic formula used to find the roots of a quadratic equation of the form ax^2 + bx + c = 0. It is given by x = (-b ± √(b^2 - 4ac)) / (2a). The video's main theme revolves around programming this formula into a calculator, showcasing a practical application of the formula in a technological context.
πŸ’‘Program
In the context of calculators, a 'program' refers to a sequence of instructions that the calculator can execute to perform a specific task. The video script details the steps to create a new program on a TI-83/TI-84 calculator to solve for the roots of a quadratic equation, emphasizing the programmable nature of these devices.
πŸ’‘Prompt
The term 'prompt' in the script refers to the action of the calculator requesting input from the user. Specifically, the program created will prompt the user to enter the coefficients A, B, and C for the quadratic equation, which are essential for calculating the roots using the quadratic formula.
πŸ’‘Alpha Lock
Alpha Lock is a feature on the TI-83/TI-84 calculators that allows users to enter alphabetic characters using the keypad. In the script, it is mentioned for typing the name of the program ('quad' or 'quadratic formula') and for entering the labels for the coefficients when prompting for input.
πŸ’‘Square Root
The square root is a mathematical operation that finds a number which, when multiplied by itself, gives the original number. In the quadratic formula, the term √(b^2 - 4ac) represents the square root of the discriminant, which is crucial for determining the nature of the roots of the quadratic equation.
πŸ’‘Store (STO)
The 'Store' command (abbreviated as STO) on the TI-83/TI-84 calculators is used to assign a calculated value to a variable. In the script, STO is used to assign the calculated roots to variables X and Y, which are then used for displaying the results.
πŸ’‘Display
The 'Display' command in the calculator's program is used to show the results of the calculations. In the video script, after calculating the roots, the program is instructed to display the roots with the message 'roots equal' followed by the calculated values X and Y.
πŸ’‘Parentheses
Parentheses are used in mathematics to group terms and indicate the order of operations. In the script, the importance of correctly placing parentheses in the quadratic formula is emphasized to ensure the correct calculation of the roots.
πŸ’‘Coefficients
In the context of the quadratic equation, coefficients refer to the numerical factors of the variables (A, B, and C in ax^2 + bx + c = 0). The video script instructs how to input these coefficients into the calculator program to solve for the equation's roots.
πŸ’‘Function Mode
Function Mode on the TI-83/TI-84 calculators is a mode that allows users to access additional functions and commands. In the script, it is mentioned in the context of quitting the program creation process by pressing the second function mode key to execute the 'Quit' command.
Highlights

Introduction to programming a TI-83/84 calculator for solving the quadratic formula.

The application of the calculator in chemistry and math classes.

Starting a new program by pressing the program button and naming it 'quad' or 'quadratic formula'.

Using the prompt command to input values for A, B, and C.

Entering the quadratic formula into the calculator program.

Explanation of the negative sign versus the subtraction sign in the formula.

Entering the square root and squaring B in the formula.

Careful attention to parentheses in the formula for correct calculation.

Storing the first part of the formula as 'X' using the store arrow button.

Re-entering the formula for the second root with the negative sign.

Storing the second part of the formula as 'Y'.

Using the display command to show the roots of the equation.

Formatting the display to show 'roots equal' with appropriate spacing.

Quitting the program setup with the second function mode.

Running the program and inputting values for A, B, and C.

Example calculation with specific values for A, B, and C.

Explanation of the output showing two different roots.

Conclusion and encouragement for viewers to apply this knowledge.

Transcripts
Rate This

5.0 / 5 (0 votes)

Thanks for rating: