1 / 13

From the article by Rebeca Schuman at slate

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.

alcina
Télécharger la présentation

From the article by Rebeca Schuman at slate

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. From the article by Rebeca Schuman at slate.com Teacher evaluations are due Opinions?

  2. Plan for today “Open up” the calculator with Two (intertwined) discussions: πcos(1.2 radians)… what does it mean? Graphs in the TI 84

  3. Start with integer powers • Define (positive) integer powers. • Use the recursive definition of integer powers to write down a program to compute integer powers in the calculator. Food for thought Integer powers are to multiplication by integers, as multiplication by integers is to addition.

  4. 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.

  5. Positive integer powers • Use this program to compute the “price of Manhattan” and compare the timing with the first program we discussed. Prompt B,E 1->P While E>0 E – 2 * int(E/2)->R If R=1 P*B->P B*B->B int(E/2)->E End Disp P Write down a table following the values of B, E, P and R in the following situations • Before the while loop. • After the first pass on the while loop. • After the second pass on the while loop and so on until the value E=0 is reached.

  6. Integer powers (positive or negative exponents) Modify the positive integer powers program to compute also non-negative powers of positive numbers.

  7. To display a table in the TI 84 • Make sure that the equal sign in the Y= of your function is highlighted. • Press 2nd-Window to get to the Table Set Up Menu. • Choose the appropriate values for your table. • Make sure that Auto is highlighted in Indepnt and Depend • Press 2nd Graph to display the table.

  8. 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

  9. Non-integer powers • Write down 0.714 in base 2. • Use 1. to compute 30.714 in your TI 84 using only the square root and product keys.

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

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

More Related