12
Bill Stiggers [email protected] Lisa M Suarez- Caraballo [email protected] Cleveland Municipal School District Cleveland, Ohio Simple Programming on the TI-84 Plus . 54th Annual Conference October 14-16, 2004

Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

  • Upload
    ivory

  • View
    40

  • Download
    0

Embed Size (px)

DESCRIPTION

54th Annual Conference October 14-16, 2004. Simple Programming on the TI-84 Plus. Bill Stiggers [email protected] Lisa M Suarez-Caraballo [email protected] Cleveland Municipal School District Cleveland, Ohio. Programming Basics. Naming a program Writing a Program Editing a Program. - PowerPoint PPT Presentation

Citation preview

Page 1: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Bill [email protected]

Lisa M [email protected]

Cleveland Municipal School District

Cleveland, Ohio

Simple Programming on the

TI-84 Plus

.

54th Annual ConferenceOctober 14-16, 2004

Page 2: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Programming Basics

•Naming a program•Writing a Program•Editing a Program

Page 3: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Naming a Program• Press PRGM (Program)• Arrow over to NEW and

press ENTER

• Use the ALPHA Keys to name your program and press ENTER.

• Note: the calculator is automatically put into ALPHA lock mode.

Page 4: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Writing a Program

•Program Menu•Mode Menu•Alpha keys

Page 5: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Writing a Program• To write basic

programs today we will mostly use the PRGM (Program) I/O Menu.

• We will start the program with 8:ClrHome and

press ENTER.

• From the MODE Menu choose 2 to fix

the decimal and press ENTER.

Page 6: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Writing a Program• We’re going to write a program to find the area and the perimeter of

a rectangle. • We will use the Disp and Input commands that can be found in the

PRGM I/O Menu.

Use the Disp function and the ALPHA keys to ask the user for information like the length and

width.Use Input to assign a variable to the number you just asked

for.Make sure you press ENTER to

move to the next line.

Page 7: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Writing a Program

Write the equations on a new line and STOre the answer into a variable. Press ENTER.

Place the Disp command on the next line followed by the sentence you would like to have displayed along with the answer.

Don’t forget the comma!!

Page 8: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Test Your Program

Run your program to find the area and perimeter of the following rectangles a.) L=34 , W=27

b.)L=13 , W=15

c.) L=5.5 , W=6.28Select and run your program from the PRGM Menu

Page 9: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Editing a ProgramWe’re going to Edit the program to display the area and perimeter as a fraction. Arrow over to EDIT and press ENTER.

Add the Frac function from the MATH menu to the program

right after each Disp “PERIMETER” and “AREA” lines.

Now Re-Do # 4C

Page 10: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Write your own Programs

• Write a program to find the area and the circumference of a circle given its radius.

• Write a program to find the distance between two points given two points.

• Write a program to find the slope of a line when given two points.

Page 11: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Any other programs you would like to write?

Page 12: Bill Stiggers Bill@apk Lisa M Suarez-Caraballo LisaS@copper

Thank You