Top Banner
Simple programming for your TI calculator
33

Simple programming

Jan 20, 2015

Download

Education

amcsquared

Simple steps that can be applied to make simple prompt-calculate-display programs for the TI calculator.
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Simple programming

Simple programming for your

TI calculator

Page 2: Simple programming

The four things you want your

program to do: • Prompt - to ask you for something

• Calculate and store – perform whatever

operations need to be done on that

something, and put it somewhere

• Display – to tell you what was the result of

those calculations on those somethings

Page 3: Simple programming

Let’s start simple:

• We’ll program the

calculator to find the

circumference of a

circle:

Page 4: Simple programming

Let’s start simple:

• We’ll program the

calculator to find the

circumference of a

circle:

• First click PRGM:

Page 5: Simple programming

Let’s start simple:

• We’ll program the

calculator to find the

circumference of a

circle:

• First click PRGM:

• Cursor to NEW:

Page 6: Simple programming

Let’s start simple:

• We’ll program the

calculator to find the

circumference of a

circle:

• First click PRGM:

• Cursor to NEW:

• Enter:

Page 7: Simple programming

Let’s start simple:

• Notice the cursor is a

letter A, which means

it’s in alpha mode.

Page 8: Simple programming

Let’s start simple:

• Notice the cursor is a

letter A, which means

it’s in alpha mode.

• The calculator is

waiting for you to type

in the name of the

program...call it

CIRCMFNC

Page 9: Simple programming

Let’s start simple:

• Notice the cursor is a

letter A, which means

it’s in alpha mode.

• The calculator is

waiting for you to type

in the name of the

program...call it

CIRCMFNC

• enter

Page 10: Simple programming

Let’s start simple:

• Click PRGM again

• This time you see a

different menu than

the last time you

clicked PRGM:

Page 11: Simple programming

Let’s start simple:

• Click PRGM again

• This time you see a

different menu than

the last time you

clicked PRGM:

• Cursor to I/O

Page 12: Simple programming

Let’s start simple:

• Click PRGM again

• This time you see a

different menu than

the last time you

clicked PRGM:

• Cursor to I/O

• Select Prompt, hit

enter:

Page 13: Simple programming

Let’s start simple:

• Now the calc is

waiting for you to tell

it what to prompt for

Page 14: Simple programming

Let’s start simple:

• Now the calc is

waiting for you to tell

it what to prompt for

• You have to get back

into alpha mode

before you answer

Page 15: Simple programming

Let’s start simple:

• Now the calc is

waiting for you to tell

it what to prompt for

• You have to get back

into alpha mode

before you answer

• So press ALPHA,

then type R, then

enter:

Page 16: Simple programming

Let’s start simple:

• Now we have to give

the program a formula

to calculate

circumference, so

type in 2R

Page 17: Simple programming

Let’s start simple:

• Now we have to give

the program a formula

to calculate

circumference, so

type in 2R

• Then STO>

• Then alpha C, then

enter

Page 18: Simple programming

Let’s start simple:

• Now we have to give

the program a formula

to calculate

circumference, so

type in 2R

• Then STO>

• Then alpha C, then

enter

You just asked the

calculator to

perform the

calculation and

call the answer C!

Page 19: Simple programming

Let’s start simple:

• Now we have to ask

the calculator to

display the result of

the calculation

Page 20: Simple programming

Let’s start simple:

• Click PRGM again,

cursor to I/O as

before, and this time

select DISP

Page 21: Simple programming

Let’s start simple:

• Click PRGM again,

cursor to I/O as

before, and this time

select DISP, then

enter

Page 22: Simple programming

Let’s start simple:

• Click PRGM again,

cursor to I/O as

before, and this time

select DISP, then

enter

• Click 2ND ALPHA to

lock into alpha mode

Page 23: Simple programming

Let’s start simple:

• Click PRGM again,

cursor to I/O as

before, and this time

select DISP and enter

to get this:

• Click 2ND ALPHA to

lock into alpha mode

• Type “C EQUALS”, C

then enter

Page 24: Simple programming

Now let’s execute the program:

• Click 2ND QUIT to exit

this mode

Page 25: Simple programming

Now let’s execute the program:

• Click 2ND QUIT to exit

this mode

• PRGM

Page 26: Simple programming

Now let’s execute the program:

• Click 2ND QUIT to exit

this mode

• PRGM

• Enter:

Page 27: Simple programming

Now let’s execute the program:

• Click 2ND QUIT to exit

this mode

• PRGM

• Enter:

• Enter:

Page 28: Simple programming

Now let’s execute the program:

• Click 2ND QUIT to exit

this mode

• PRGM

• Enter:

• Enter:

Prompting you

for R, just like

you told it to

Page 29: Simple programming

Now let’s execute the program:

• Click 2ND QUIT to exit

this mode

• PRGM

• Enter:

• Enter:

• Type 10 then enter:

Page 30: Simple programming

Now let’s execute the program:

• Click 2ND QUIT to exit

this mode

• PRGM

• Enter:

• Enter:

• Type 10 then enter:

Displaying what

you told it to

display!

Page 31: Simple programming

Now let’s execute the program:

• Click 2ND QUIT to exit

this mode

• PRGM

• Enter:

• Enter:

• Type 10 then enter:

Calculated 2r

and now

displaying the

result!

Page 32: Simple programming

You can use this “prompt, store, display”

procedure to input programs for:

• Vertex formula

Page 33: Simple programming

You can use this “prompt, store, display”

procedure to input programs for:

• Quadratic formula to

find zeros: