13
From the article by Rebeca Schuman at slate.com Opinions? acher evaluations are d

From the article by Rebeca Schuman at slate

  • Upload
    alcina

  • View
    25

  • Download
    0

Embed Size (px)

DESCRIPTION

From the article by Rebeca Schuman at slate.com. Teacher evaluations are due. Opinions ?. Plan for today. “Open up” the calculator with. Two (intertwined) discussions: π cos (1.2 radians) … what does it mean? Graphs in the TI 84. Start with integer powers. - PowerPoint PPT Presentation

Citation preview

Page 1: From the article by  Rebeca  Schuman at  slate

From the article by Rebeca Schuman at slate.com

Opinions?

Teacher evaluations are due

Page 2: From the article by  Rebeca  Schuman at  slate

Plan for today“Open up” the calculator with

Two (intertwined) discussions:

πcos(1.2 radians)… what does it mean?

Graphs in the TI 84

Page 3: From the article by  Rebeca  Schuman at  slate

Start with integer powers

1. Define (positive) integer powers.2. Use the recursive definition of integer powers to write down

a program to compute integer powers in the calculator.

Food for thoughtInteger powers are to multiplication by integers, as multiplication by integers is to addition.

Page 4: From the article by  Rebeca  Schuman at  slate

• In 1626, Peter Minuet bought the island of Manhattan to native Americans for trinkets valued at $24.

• Suppose those $24 were invested at 8% annual. What would their $24 be worth today?

Compute with our own program and with the calculator program. Time both results and compare.

Page 5: From the article by  Rebeca  Schuman at  slate

Positive integer powers

Prompt B,E1->PWhile E>0

E – 2 * int(E/2)->RIf R=1

P*B->PB*B->Bint(E/2)->E

EndDisp P

Write down a table following the values of B, E, P and R in the following situations1. Before the while loop.2. After the first pass on the

while loop.3. After the second pass on the

while loop and so on until the value E=0 is reached.

Use this program to compute the “price of Manhattan” and compare the timing with the first program we discussed.

Page 6: From the article by  Rebeca  Schuman at  slate

Integer powers (positive or negative exponents)

Modify the positive integer powers program to compute also non-negative powers of positive numbers.

Page 7: From the article by  Rebeca  Schuman at  slate

To display a table in the TI 84

1. Make sure that the equal sign in the Y= of your function is highlighted.

2. Press 2nd-Window to get to the Table Set Up Menu.3. Choose the appropriate values for your table.4. Make sure that Auto is highlighted in Indepnt and Depend5. Press 2nd Graph to display the table.

Page 8: From the article by  Rebeca  Schuman at  slate

• Graph in your calculator y=(1+x)1/x

• Is the graph you obtained the graph of a function?• If so, what is the domain?• Consider the points on the graph on the left side of the line x=-

1. Can you find the coordinates of those points?• Can explain the graph?

Warning: The graph on the right of the line y=-1

produced by the TI 84 is NOT mathematically correct

Page 9: From the article by  Rebeca  Schuman at  slate

Non-integer powers

1. Write down 0.714 in base 2. 2. Use 1. to compute 30.714 in your TI 84 using only the square

root and product keys.

Page 10: From the article by  Rebeca  Schuman at  slate
Page 11: From the article by  Rebeca  Schuman at  slate
Page 12: From the article by  Rebeca  Schuman at  slate

• Design a program that draws a line (any line!) on your calculator using Pxl-On and a For-loop.

Page 13: From the article by  Rebeca  Schuman at  slate

• Log(385) ~2.585• Log(38.5)~1.585• Log(3.85)~0.585• Long(0.385) ~ ?