Pi Estimation#

```{epigraph} This mysterious Pi, which comes in at every door and window, and down every chimney, calling itself the circumference to a unit of diameter.

– August De Morgan, ```

TODO

Instructions#

  1. Read through the Background section.

  2. Read through the Project section. As you read through this section, follow along on your own calculator.

  3. Read through the Analysis. As you read through, complete the questions in the Analysis section in a document. When you completed the Analysis section, upload the document to the Google Classroom assignment.

  4. On the due date, bring your calculator to class and connect to the ViewSonic. Use the TIConnect software to export your simulation for grading.

Videos#

Part One#

Estimating Pi With Simulation 1/3

Part Two#

Estimating Pi With Simulation 2/3

Part Three#

TODO

Background#

TI Basic#

Control Structures#

A control structure is a programmatic construct for controlling the logical flow of a program. This project will require the use of two fundamental control structures: FOR loops and IF-THEN statements.

Note

IF-THEN statements are often called “conditional statements

For Loop#

A FOR loop is a programmatic construct for repeating a block of instructions; The body of the FOR loop is the block of repeating instructions. The arguments provided to a FOR loop determine how many times the block of instructions execute.

Whenever a control structure is started, it must always be accompanied with a corresponding END statement.

Once a FOR has been inserted into a program and closed with an END, it must be supplied with appropriate arguments. A FOR has four arguments,

FOR(<INDEX>, <START>, <END>, <STEP>)

Important

The name of each argument is written between angle brackets, <>, but the angle brackets are not part of the syntax. See below for an example.

  1. INDEX assigns a variable to be used as the index of the loop.

  2. START sets the starting value for the index.

  3. END sets the ending value for the index.

  4. STEP sets the increment added to the index at the end of the loop.

As an example, the following code block will prompt the user to enter a value for N. Then it use the index I to iterate from I = 1, 2, 3, ..., N in steps of 1. For each value of I, it will print that value to screen,

: INPUT "ITERATIONS: ", N

: FOR(I, 1, N, 1)

: DISP I

: END

Note

Recall the DISP function can be found from the PRGM editor,

  • \text{BUTTON} : \text{PRGM}

  • \text{MENU} : \text{I/O}

  • 3 : \text{DISP}

Note

Recall the INPUT function can be found from the PRGM editor,

  • \text{BUTTON} : \text{PRGM}

  • \text{MENU} : \text{I/O}

  • 1 : \text{INPUT}

Conditional Statement#

A conditional statement provides a way of gating certain blocks of code behind a logical condition. Consider the instructions,

If it rains, take an umbrella. Otherwise, pack a lunch.

The condition of this proposition is the actual event of rain. If it is raining, then the condition has been met and the operation of taking an umbrella is performed. In the event it does not rain, the operation of taking an umbrella is replaced with the operation of packing a lunch.

An IF-THEN-ELSE idiom provides exactly this sort of control structure for programs on TI calculators. If a condition is met, a certain operation is performed while if the condition is not met, a different operation is performed.

Important

The ELSE command is optional. Every conditional statement needs an IF and a THEN, but the inclusion of ELSE is not necessary.

The following code block will generate a random number between 0 and 1. If the number is greater than 0.5, it will print YAHTZEE to screen; otherwise, it will print WHOMP WHOMP.

: RAND -> A
: IF A>0.5
: THEN
: DISP "YAHTZEE"
: ELSE
: DISP "WHOMP WHOMP"
: END

Graphing#

TODO: PT-ON function

Project#

Monte Carlo Simulation#

TODO: walk through it

Analysis#