answersLogoWhite

0


Best Answer

Variables on the TI-84 Plus Silver hold numbers; there are like memory. Here is an example of how to wet the variable C to equal 24:

Enter the number 24, then press the STO> key. Then press ALPHA C (above PRGM). The calculator should show:

24->C

Press ENTER and the variable C will be set to 24. You can check this by pressing ALPHA C and then ENTER.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

To start a program, press PRGM and then NEW and make a program. To input values from the user, use Prompt (press PRGM and then I/O at the top.) These values will be stored in the letter variables on your calculator Use Disp (press PRGM and then I/O at the top) to display values to the user. For example, to ask the user for the values of A, B, and C and then display the value of AB2 - C, use this program:

:Prompt A,B,C

:Disp AB2 - C

The calculator can solve an equation with one variable. Doing so in a program gets kind of complex. You use solve to solve an equation (while editing a program, press MATH and look at the bottom of the list.) To use solve, give it an expression (which will be set equal to 0 and solved by the calculator as an equation, a variable (to tell the calculator what to solve for), and a guess (the calculator will find a number close to this guess. It only finds one number at a time, even if there is more than one solution.)

To ask the user for both sides of an equation, you will have to store these as strings. You will have to use Input, not Prompt, to ask the user for these strings. (Get to Input by pressing PRGM and then I/O at the top. Get to the strings by pressing VARS and then String...) When using input, you can tell the user what you want in quotes, then a comma, then where to store the data. For example, to ask the user for the left side of the equatino and store that to string 1, use this line of code:

:Input "LEFT:",Str1

Your strings will then need to be converted into equations. Use String>Equ to do this. (Press 2ND CATALOG (above 0), then 4 (to go to the letter t's) and then scroll up to find it.) Press VARS, then Y-VARS at the top, then Function... to get to the functions. For example, to convert string 1 into the function Y1:

:String>Equ(Str1,Y1)

Finally subtract the two equations from each other, which will be set equal to 0, and solve using the solve function. Here is a program that will solve for the variable X. (X must be used as the varaible. Any other letter will not work.) G is a guess input by the user so that the user can change which solution (if there is more than one) is found each time they run the program:

:Input "LEFT",Str1

:Input "RIGHT",Str2

:Prompt G

:String>Equ(Str1,Y1)

:String>Equ(Str1,Y2)

:Disp solve(Y1-Y2,X,G)

If you have a set equation you want to solve for where you know the values of all but one variable, you could do this:

(In this example the equation is A+B = CX, where X is unknown. G is still a user guess. Note that this is the same as A + B - CX = 0.)

:Prompt A,B,C,G

:Disp solve(A+B-CX,X,G)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you program TI-83 calculator to input variable values to solve or calculate an equation?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you calculate the fixed cost variable costs and break-even point for the program suggested in Appendix D?

Calculate the fixed cost, variable costs, and break-even point for the program suggested in Appendix D.


How do you calculate gcd and LCM in scientific calculator casio fx-991es?

yeah program it... :)


What is 56 plus 67?

The equation that is 56 plus 67 has an answer that is 123. You can solve simple equations like this one by using your calculator program on your computer.


How do you calculate 536665 KB into MB?

1MB is 1024KB (NOT 1000, as is commonly believed). Just pull up your calculator program and divide by 1024.


How do you program the quadratic formula into your calculator?

It all depends on what calculator you use to know how to program the formula into it.


Can i get a calculator?

If you have a computer, you already have the calculator that is part of the computer's program.


How do you use a reverse mortgage calculator?

If you are using a reverse mortgage calculator, you first need to plug in the variables that you know, such as loan amount, length of loan, interest rate. Then ask the program to calculate and it will find the unknown variables for you.


Where can one find a credit calculator?

One may find a credit card calculator at the site "Credit Canada". The program is available for and allows people to calculate their credit card payments, interest and help reduce debt.


Where could one find an alimony calculator online?

Using an alimony calculator isn't as easy as one would assume. Many factors play a role on how to calculate the alimony such as what state your reside in. An alimony calculator program can be found on the website of Traxlare Software. Their program is an easy to use tool but the drawback is it may cost one nearly $375 to purchase the software.


why a calculator is a computer?

it is part of a computer program


If the variable flag can only be declared once in the program it was declared as what type of variable?

It's a global variable.


What is rand on the graphing calculator and what does it do?

The calculator will run a certain number of random numbers to test a program.