Assignment 5 due Monday, May 7

Size: px
Start display at page:

Download "Assignment 5 due Monday, May 7"

Transcription

1 due Monday, May 7 Simulations and the Law of Large Numbers Overview In both parts of the assignment, you will be calculating a theoretical probability for a certain procedure. In other words, this uses the Classical Method discussed on p. 251 of the book (p. 4 of the Chapter 5 Handouts). Then you will simulate the procedure on the computer, and calculate the experimental probabilities using the Empirical Approach. This is discussed on p. 3 of the Chapter 5 Handouts. In both cases, you will investigate whether the Law of Large Numbers applies as the number of experiments becomes very large. Part A Getting a sum > 12 when rolling three 6-sided dice In Part A of the assignment, you re going to use STATDISK to simulate rolling three 6-sided dice, 1000 times. STATDISK will add the numbers on the three dice together. The event that you are looking for is getting a sum of the numbers on the three dice that is GREATER THAN 12. For example, the sum shown on these three dice is 13. After each roll of the dice, you will calculate your experimental probability of getting a sum > 12, using the relative frequency approximation of probability. Then you will plot the experimental probability as a function of trial # for trials 1 through You will compare the experimental probability to the theoretical probability, and see what happens as the number of trials in the experiment gets very large. Tip: you will probably want to look up the sample space for rolling three dice in order to calculate the theoretical probability of getting a sum > 12. Note: I am running Excel 2013 on my home computer. If you are running a different version, then my instructions below may not correspond exactly to your version. However in all cases it should be basically the same, so just do your best to figure out any modifications for your version of Excel. Page 1 of 14

2 Part A Procedure 1. Start Excel, and start with a new (blank) file. The first thing you want to do is create a column of numbers 1, 2, 3, 4,, 999, 1000 in column A. Here s a handy way to do that: Note: to enter something into a cell in Excel, click on the cell, type whatever you want (a number, or a formula), then always hit Enter. a. Enter the numbers 1, then 2, then 3 in the first three cells of column A. b. Click on cell A1 and, while holding the mouse button down, drag the mouse downward so that cells A1, A2, and A3 are highlighted, then release the mouse button. c. Now use the mouse to click and drag the lower right corner of cell A3 downward so that all of the cells down to A1000 are highlighted. Column A should now contain 1, 2, 3,, 999, 1000 in cells A1 through A Now open STATDISK. You are going to simulate rolling 3 six-sided dice a total of 1000 times. Along the top, go to Data/Dice Generator. Fill in the boxes for Sample Size 1000, Number of Dice 3 and Number of Sides 6, then hit Generate. You will see two columns, the Roll number , and the Total, which is the sum of the three dice. Hit the Copy button, which will ONLY copy the Total column. Now you re going to paste that column of totals into column B of your Excel file. Click on cell B1 again and hit Ctrl-V (to paste). You should now have an entire column of sums, representing the results of one thousand rolls of a three dice. See my screenshot of the first 15 rows: 3. Next, move to column C in Excel. In this column, you are going to calculate a running total of how many of the sums are greater than 12. Click on cell C1, and enter the following EXACTLY: =COUNTIF($B$1:B1,">12") Then hit enter. This command is telling Excel to update (increment) the count if you have a number that is greater than 12. In other words, if your sum was a 13, 14, 15, 16, 17 or 18, it will increment the count by 1. Page 2 of 14

3 So, if you happen to have a sum of > 12 in cell B1, then you will get a 1 in cell C1. Otherwise you will get a 0 in cell C1. In total, what this command will do is to count up how many numbers > 12 appear starting at cell B1 and continuing through the specified range. So it is a cumulative total of the successful rolls. So far, my range just starts and ends at B1, so there s not much to count up yet. Now you re going to copy and paste the formula in cell C1 to the rest of the cells in column C. Click on cell C1 and hit Ctrl-C (to copy). Then click on cell C2, and while you re clicking drag the mouse all the way down to cell C1000. Release the mouse and hit Ctrl-V (to paste). Here s my screenshot of the first 15 rows nows: Notice how every time I got another sum > 12, the cumulative total in column C is incremented up by one. That s what column C is doing: keeping track of the total number of sums > 12. Note: Check to make sure it is working correctly! 4. Okay, the last column you are going to calculate will be your empirical/experimental probability of getting a sum > 12. As defined on p. 3 of the Chapter 5 Handouts, this probability is: P(A) = Frequency of event Number of trials So in other words, you need to calculate the cumulative total of sums > 12 in column C divided by the number of trials in column A. To do this, Click on cell D1 and type: =C1/A1 (*see note in bold below) *Note: instead of actually typing the C1 and A1, you can just click on the cells themselves, and the cell references will be entered into the formula. Then hit enter. Copy and paste this formula to the rest of the cells in column D, just like you did in step 3. Page 3 of 14

4 Here s my screenshot now: Note: You will either have a 1 or a 0 in cell D1 depending on whether you got a sum > 12 (or not) in cell B1. 5. Now you re going to make a plot of the experimental probability (column D) as a function of the trial number (column A). This is going to be a scatter plot. Start by clicking in any empty cell near the top, so that you do not have any data currently selected. Along the top, go to the Insert Tab, choose the down arrow next to the scatter plot icon, and select the option in the second row, first column (Scatter with Straight Lines and Markers). An empty Chart box should appear in your worksheet. You should also now be on the Design Tab, so hit Select Data (upper right). Under Legend Entries (Series), hit Add. Under Series X values, click the little red arrow box and use your mouse to select the entire column A (cells A1 through A1000). Click the red arrow box again to return. Under Series Y values, click the little red arrow box and use your mouse to select the entire column D (cells D1 through D1000). Click the red arrow box again to return. Hit OK, OK. In other words, you are plotting column D as a function of column A, so each ordered pair is this: (trial number, probability). Page 4 of 14

5 At this point, you should have a rough plot which looks kind of like this: (although, if you DID get a sum > 12 on your first roll, your graph will start up at 1.0 on the y-axis). Use the following instructions to add a chart title, x-axis label and y-axis label: Chart Title: Experimental Probability of getting a sum > 12 on 3 dice X axis label: Trial Number Y axis label: Probability Click on the plot area, and go to the Design tab at the top right of the worksheet. Then at the upper left you should see the Add Chart Element box, as shown here: Click on the down arrow, and you will see options to add axis titles and a chart title. A couple of other minor improvements: Change the scale of the x-axis so that it goes from 0 through 1000 (instead of 1200). Right click on the x-axis to activate it, it should be outlined in a box now. Left click, and choose Format Axis. Change the maximum value to Here s what my plot looks like now. Remember these are RANDOM numbers, so yours won t look exactly like mine (especially at the beginning). Page 5 of 14

6 That s all the calculations you have to do for this portion of the assignment! See below under What you Need to Turn In. Page 6 of 14

7 Part B Spin the Spinner In Part B of the assignment, you re going to use an online applet to simulate spinning two spinners 10, 100 and 50,000 times. When you first go to the link below, you will see the following spinner set-up: Do exactly this, and in this order: 1. Hit the Clear button (both spinners will disappear) 2. Hit New spinner 3. Change the number in the box to 8 4. Hit New spinner (again) 5. Hit the sum/difference box in the upper right Now the spinner set-up should look like this, with one spinner 1-4 and one 1-8: This is the set-up that you need for this portion of the assignment, so make sure that you do this first! Make sure that it is recording the DIFFERENCE of the spinners (not the sum). Note: I think people with Macs may have trouble with this applet, you may need to use a different computer. Page 7 of 14

8 Each time you play, both spinners will randomly spin and each will land on a number: 1 4, or 1 8. The difference of the two numbers on the spinners will be calculated. It will always record the non-negative difference, in other words the absolute value. For example, if you get a 4 and an 8, the difference will be 4, never 4. Before you run the simulation, you should calculate the theoretical probabilities of each difference that is possible, that is, the differences of the two numbers on the spinners. The possible differences are: 0, 1, 2, 3, 4, 5, 6, and 7. You are using the Classical Method for this. Hint you could use a two-way table to help calculate these probabilities. Fill in the table on the Answer Sheet with the theoretical probabilities. Then you will run the actual simulation. Go to the following link: (also the link is given on the Assignment page) Note: I tested this in Internet Explorer, Mozilla and Google Chrome, and it worked in all three. If you get a weird error message in one browser, then try a different one. Or like I said above, if it doesn t work on your Mac, then try a different computer. You will run three different cases: 10 spins, 100 spins and 50,000 spins. To do the 10 spin case, you will have to hit the Run Once button 10 times. Each time, it will update the bar chart on the right hand side of the screen, and will update the number of spins in the lower right corner: Also, you can click on the Relative frequency table line (bottom right), and it will hide the bar chart and show the tabular data instead, so you can toggle back and forth between those if you want. (see screenshot next page) Page 8 of 14

9 The column on the left shows the differences that were obtained (the values 0 through 7), and the column on the right is the relative frequency in decimal form for each sum. Notice that there are other values included in the table (on up to 60 if you scroll down), but those do not apply for this procedure. So the applet has already taken the counts for each outcome and divided by the number of trials, so it has calculated the relative frequency for you. These relative frequencies are your experimental probabilities for each trial, because it represents the number of times that sum was obtained divided by the total number of trials. Page 9 of 14

10 For each of your three trials, I want you to print out the relative frequency table showing the relative frequencies and the number of spins at the bottom. This is what I want to see : Use the snipping tool to print these out, or do a screen print and then crop it. You will have a total of three of these to print out: 10 spins, 100 spins, and 50,000 spins. Make sure you hit the Clear button (on the right-hand side) after you do one trial (say of 10 spins) and before you start the next, otherwise it will add your new trials to the ones you already did. For example, you would end up with 110 spins instead of 100. Also, make sure that you go back and look at the bar chart each time, as it gives a good visual of what is happening as you do more trials. Actually it is interesting to watch the shape change if you just keep hitting the Run x 100 button several times. Page 10 of 14

11 What You Need to Turn In Part A Getting a sum > 12 when rolling three 6-sided dice 1. Printout of your plot from Excel. 2. Printout of the first 50 lines of your four data columns from Excel. Do NOT print out the whole thing! I do not want to see 1000 lines of data. You can select a range of cells that you want to print using the mouse, go to the Page Layout tab, then click Print Area/Set Print Area. 3. Filled out Answer Sheet (1 page). Part B Spin the Spinner 1. Printout of your Relative frequency table (see previous page) from the applet screen for each trial: 10, 100 and 50,000 spins. Make sure that you include the number of spins at the bottom of the printout. So, three total tables to print out. 2. Filled out Answer Sheet (2 pages). REMINDER Everyone needs to do their own Excel spreadsheet, and their own simulation on the applet! Page 11 of 14

12 Name: Answer Sheet Part A Getting a sum > 12 when rolling three 6-sided dice 1. What is the theoretical probability of getting a sum > 12 when rolling three 6-sided dice, using the Classical Method? Reduced fraction or decimal to three significant figures. 2. Fill in the following table with your experimental probabilities (from Excel) for the given trial number: Trial Number Experimental Probability of getting a sum > Briefly discuss how this simulation, including your results for questions (1) and (2), relates to the Law of Large Numbers. Give specific results as an example. Also, specifically comment on how the graph displays the Law of Large Numbers. Page 12 of 14

13 Name: Part B Spin the Spinners 1. Calculate the theoretical probability of getting each of the following differences when the two spinners are spun and the difference of the two numbers is found, using the Classical Method. Difference of Numbers on Spinners 0 Theoretical Probability in Decimal Form (do NOT round off) List the experimental probabilities that you observed for the following number of spins. Remember, that is the same as the relative frequencies. Do not round off the values. Difference of Numbers on Spinners Experimental Probability of Each Difference for 10 Spins Experimental Probability of Each Difference for 100 Spins Experimental Probability of Each Difference for 50,000 Spins Page 13 of 14

14 Name: 3. Briefly discuss how this simulation, including your results for questions (1) and (2), relates to the Law of Large Numbers. Give specific results as an example. Page 14 of 14

Excel Tool: Plots of Data Sets

Excel Tool: Plots of Data Sets Excel Tool: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

Environmental Stochasticity: Roc Flu Macro

Environmental Stochasticity: Roc Flu Macro POPULATION MODELS Environmental Stochasticity: Roc Flu Macro Terri Donovan recorded: January, 2010 All right - let's take a look at how you would use a spreadsheet to go ahead and do many, many, many simulations

More information

CHM 152 Lab 1: Plotting with Excel updated: May 2011

CHM 152 Lab 1: Plotting with Excel updated: May 2011 CHM 152 Lab 1: Plotting with Excel updated: May 2011 Introduction In this course, many of our labs will involve plotting data. While many students are nerds already quite proficient at using Excel to plot

More information

Try what you learned (and some new things too)

Try what you learned (and some new things too) Training Try what you learned (and some new things too) PART ONE: DO SOME MATH Exercise 1: Type some simple formulas to add, subtract, multiply, and divide. 1. Click in cell A1. First you ll add two numbers.

More information

Step 1: Set up the variables AB Design. Use the top cells to label the variables that will be displayed on the X and Y axes of the graph

Step 1: Set up the variables AB Design. Use the top cells to label the variables that will be displayed on the X and Y axes of the graph Step 1: Set up the variables AB Design Use the top cells to label the variables that will be displayed on the X and Y axes of the graph Step 1: Set up the variables X axis for AB Design Enter X axis label

More information

How to Make a Run Chart in Excel

How to Make a Run Chart in Excel How to Make a Run Chart in Excel While there are some statistical programs that you can use to make a run chart, it is simple to make in Excel, using Excel s built-in chart functions. The following are

More information

CHM 109 Excel Refresher Exercise adapted from Dr. C. Bender s exercise

CHM 109 Excel Refresher Exercise adapted from Dr. C. Bender s exercise CHM 109 Excel Refresher Exercise adapted from Dr. C. Bender s exercise (1 point) (Also see appendix II: Summary for making spreadsheets and graphs with Excel.) You will use spreadsheets to analyze data

More information

Excel 2003: Discos. 1. Open Excel. 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls

Excel 2003: Discos. 1. Open Excel. 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls Excel 2003: Discos 1. Open Excel 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls 3. Enter the following data into your spreadsheet: 4. Make the headings bold. Centre

More information

CREATING (AB) SINGLE- SUBJECT DESIGN GRAPHS IN MICROSOFT EXCEL Lets try to graph this data

CREATING (AB) SINGLE- SUBJECT DESIGN GRAPHS IN MICROSOFT EXCEL Lets try to graph this data CREATING (AB) SINGLE- SUBJECT DESIGN GRAPHS IN MICROSOFT EXCEL 2003 Lets try to graph this data Date Baseline Data Date NCR (intervention) 11/10 11/11 11/12 11/13 2 3 3 1 11/15 11/16 11/17 11/18 3 3 2

More information

This tutorial will lead you through step-by-step to make the plot below using Excel.

This tutorial will lead you through step-by-step to make the plot below using Excel. GES 131 Making Plots with Excel 1 / 6 This tutorial will lead you through step-by-step to make the plot below using Excel. Number of Non-Student Tickets vs. Student Tickets Y, Number of Non-Student Tickets

More information

Excel Lab 2: Plots of Data Sets

Excel Lab 2: Plots of Data Sets Excel Lab 2: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

UNIT TWO: Data for Simple Calculations. Enter and format a title Modify font style and size Enter column headings Move data Edit data

UNIT TWO: Data for Simple Calculations. Enter and format a title Modify font style and size Enter column headings Move data Edit data UNIT TWO: Data for Simple Calculations T o p i c s : Enter and format a title Modify font style and size Enter column headings Move data Edit data I. Entering and Formatting Titles: The information used

More information

What are the chances?

What are the chances? What are the chances? Student Worksheet 7 8 9 10 11 12 TI-Nspire Investigation Student 90 min Introduction In probability, we often look at likelihood of events that are influenced by chance. Consider

More information

Spreadsheets 3: Charts and Graphs

Spreadsheets 3: Charts and Graphs Spreadsheets 3: Charts and Graphs Name: Main: When you have finished this handout, you should have the following skills: Setting up data correctly Labeling axes, legend, scale, title Editing symbols, colors,

More information

MATHEMATICAL FUNCTIONS AND GRAPHS

MATHEMATICAL FUNCTIONS AND GRAPHS 1 MATHEMATICAL FUNCTIONS AND GRAPHS Objectives Learn how to enter formulae and create and edit graphs. Familiarize yourself with three classes of functions: linear, exponential, and power. Explore effects

More information

Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage

Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage These materials are based upon work supported by the National Science Foundation

More information

Appendix 3 - Using A Spreadsheet for Data Analysis

Appendix 3 - Using A Spreadsheet for Data Analysis 105 Linear Regression - an Overview Appendix 3 - Using A Spreadsheet for Data Analysis Scientists often choose to seek linear relationships, because they are easiest to understand and to analyze. But,

More information

Name Class Date. Introducing Probability Distributions

Name Class Date. Introducing Probability Distributions Name Class Date Binomial Distributions Extension: Distributions Essential question: What is a probability distribution and how is it displayed? 8-6 CC.9 2.S.MD.5(+) ENGAGE Introducing Distributions Video

More information

Microsoft Excel Lab Two (Completed 03/02/18) Transcript by Rev.com. Page 1 of 6

Microsoft Excel Lab Two (Completed 03/02/18) Transcript by Rev.com. Page 1 of 6 [00:00:31] Speaker 1: Hello everyone and welcome to excel lab two. To get started with this lab you will need two files. You will need excel lab two instructions file also, you will need excel lab two

More information

What is the expected number of rolls to get a Yahtzee?

What is the expected number of rolls to get a Yahtzee? Honors Precalculus The Yahtzee Problem Name Bolognese Period A Yahtzee is rolling 5 of the same kind with 5 dice. The five dice are put into a cup and poured out all at once. Matching dice are kept out

More information

Laboratory 1: Motion in One Dimension

Laboratory 1: Motion in One Dimension Phys 131L Spring 2018 Laboratory 1: Motion in One Dimension Classical physics describes the motion of objects with the fundamental goal of tracking the position of an object as time passes. The simplest

More information

Plotting scientific data in MS Excel 2003/2004

Plotting scientific data in MS Excel 2003/2004 Plotting scientific data in MS Excel 2003/2004 The screen grab above shows MS Excel with all the toolbars switched on - remember that some options only become visible when others are activated. We only

More information

Microsoft Excel: Data Analysis & Graphing. College of Engineering Engineering Education Innovation Center

Microsoft Excel: Data Analysis & Graphing. College of Engineering Engineering Education Innovation Center Microsoft Excel: Data Analysis & Graphing College of Engineering Engineering Education Innovation Center Objectives Use relative, absolute, and mixed cell referencing Identify the types of graphs and their

More information

PASS Sample Size Software. These options specify the characteristics of the lines, labels, and tick marks along the X and Y axes.

PASS Sample Size Software. These options specify the characteristics of the lines, labels, and tick marks along the X and Y axes. Chapter 940 Introduction This section describes the options that are available for the appearance of a scatter plot. A set of all these options can be stored as a template file which can be retrieved later.

More information

GotSoccer works well with and recommends using Internet Explorer, Safari and Google Chrome.

GotSoccer works well with and recommends using Internet Explorer, Safari and Google Chrome. Cal North CCSL Member Clubs Internet Browser Notice: GotSoccer works well with and recommends using Internet Explorer, Safari and Google Chrome. Some GotSoccer features will not work with Firefox Using

More information

Section 3 Correlation and Regression - Worksheet

Section 3 Correlation and Regression - Worksheet The data are from the paper: Exploring Relationships in Body Dimensions Grete Heinz and Louis J. Peterson San José State University Roger W. Johnson and Carter J. Kerk South Dakota School of Mines and

More information

Sensors and Scatterplots Activity Excel Worksheet

Sensors and Scatterplots Activity Excel Worksheet Name: Date: Sensors and Scatterplots Activity Excel Worksheet Directions Using our class datasheets, we will analyze additional scatterplots, using Microsoft Excel to make those plots. To get started,

More information

EXERCISE 1: CREATE LINE SPARKLINES

EXERCISE 1: CREATE LINE SPARKLINES EXERCISE 1: CREATE LINE SPARKLINES In this exercise you ll create line sparklines. Then you ll convert the line type to the column type. Part 1: Create the sparklines Before you start, notice that the

More information

Graphing with Excel. Data Table

Graphing with Excel. Data Table Graphing with Excel Copyright L. S. Quimby There are many spreadsheet programs and graphing programs that you can use to produce very nice graphs for your laboratory reports and homework papers, but Excel

More information

Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat )

Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat ) 60 Minutes of Excel Secrets Key Terms Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat ) Add-Ins AutoCorrect Module 1 Corrects typographical,

More information

Experiment 2: Electronic Enhancement of S/N and Boxcar Filtering

Experiment 2: Electronic Enhancement of S/N and Boxcar Filtering Experiment 2: Electronic Enhancement of S/N and Boxcar Filtering Synopsis: A simple waveform generator will apply a triangular voltage ramp through an R/C circuit. A storage digital oscilloscope, or an

More information

Microsoft Excel. Creating a Pie Chart on a Picture. 1. In order to create a pie chart on a picture, you need to first find

Microsoft Excel. Creating a Pie Chart on a Picture. 1. In order to create a pie chart on a picture, you need to first find Microsoft Excel Creating a Pie Chart on a Picture Name Date 1. In order to create a pie chart on a picture, you need to first find the picture you want to use. Click on the Internet Explorer icon. 2. When

More information

Brief introduction Maths on the Net Year 2

Brief introduction Maths on the Net Year 2 Brief introduction Maths on the Net Year 2 Mildenberger Verlag 77652 Offenburg Im Lehbühl 6 Tel. + 49 (7 81) 91 70-0 Fax + 49 (7 81) 91 70-50 Internet: www.mildenberger-verlag.de E-Mail: info@mildenberger-verlag.de

More information

3.6 Theoretical and Experimental Coin Tosses

3.6 Theoretical and Experimental Coin Tosses wwwck12org Chapter 3 Introduction to Discrete Random Variables 36 Theoretical and Experimental Coin Tosses Here you ll simulate coin tosses using technology to calculate experimental probability Then you

More information

Physics 253 Fundamental Physics Mechanic, September 9, Lab #2 Plotting with Excel: The Air Slide

Physics 253 Fundamental Physics Mechanic, September 9, Lab #2 Plotting with Excel: The Air Slide 1 NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT Physics 253 Fundamental Physics Mechanic, September 9, 2010 Lab #2 Plotting with Excel: The Air Slide Lab Write-up Due: Thurs., September 16, 2010 Place

More information

Chief Architect X3 Training Series. Layers and Layer Sets

Chief Architect X3 Training Series. Layers and Layer Sets Chief Architect X3 Training Series Layers and Layer Sets Save time while creating more detailed plans Why do you need Layers? Setting up Layer Lets Adding items to layers Layers and Layout Pages Layer

More information

Probability Interactives from Spire Maths A Spire Maths Activity

Probability Interactives from Spire Maths A Spire Maths Activity Probability Interactives from Spire Maths A Spire Maths Activity https://spiremaths.co.uk/ia/ There are 12 sets of Probability Interactives: each contains a main and plenary flash file. Titles are shown

More information

Honors Chemistry Summer Assignment

Honors Chemistry Summer Assignment Honors Chemistry Summer Assignment Page 1 Honors Chemistry Summer Assignment 2014-2015 Materials needed for class: Scientific or Graphing Calculator Mrs. Dorman ldorman@ringgold.org Notebook with folder

More information

Unit 6.5 Text Adventures

Unit 6.5 Text Adventures Unit 6.5 Text Adventures Year Group: 6 Number of Lessons: 4 1 Year 6 Medium Term Plan Lesson Aims Success Criteria 1 To find out what a text adventure is. To plan a story adventure. Children can describe

More information

Lab 15: EXL3 Microsoft Excel s AutoFill Tool, Multiple Worksheets, Charts and Conditional Formatting

Lab 15: EXL3 Microsoft Excel s AutoFill Tool, Multiple Worksheets, Charts and Conditional Formatting Lab 15: EXL3 Microsoft Excel s AutoFill Tool, Multiple Worksheets, Charts and Conditional Formatting Learn how to work with multiple worksheets, use the AutoFill tool, charts, and apply conditional formatting

More information

Probability Simulation User s Manual

Probability Simulation User s Manual Probability Simulation User s Manual Documentation of features and usage for Probability Simulation Copyright 2000 Corey Taylor and Rusty Wagner 1 Table of Contents 1. General Setup 3 2. Coin Section 4

More information

PASS Sample Size Software

PASS Sample Size Software Chapter 945 Introduction This section describes the options that are available for the appearance of a histogram. A set of all these options can be stored as a template file which can be retrieved later.

More information

Office 2016 Excel Basics 24 Video/Class Project #36 Excel Basics 24: Visualize Quantitative Data with Excel Charts. No Chart Junk!!!

Office 2016 Excel Basics 24 Video/Class Project #36 Excel Basics 24: Visualize Quantitative Data with Excel Charts. No Chart Junk!!! Office 2016 Excel Basics 24 Video/Class Project #36 Excel Basics 24: Visualize Quantitative Data with Excel Charts. No Chart Junk!!! Goal in video # 24: Learn about how to Visualize Quantitative Data with

More information

AP Art History Flashcards Program

AP Art History Flashcards Program AP Art History Flashcards Program 1 AP Art History Flashcards Tutorial... 3 Getting to know the toolbar:... 4 Getting to know your editing toolbar:... 4 Adding a new card group... 5 What is the difference

More information

Use sparklines to show data trends

Use sparklines to show data trends Use sparklines to show data trends New in Microsoft Excel 2010, a sparkline is a tiny chart in a worksheet cell that provides a visual representation of data. Use sparklines to show trends in a series

More information

Excel Module 2: Working with Formulas and Functions

Excel Module 2: Working with Formulas and Functions 1. An Excel complex formula uses more than one arithmetic operator. a. True b. False True QUESTION TYPE: True / False LEARNING OBJECTIVES: ENHE.REDI.16.018 - Create a complex formula by pointing 2. According

More information

CPM Educational Program

CPM Educational Program CC COURSE 2 ETOOLS Table of Contents General etools... 5 Algebra Tiles (CPM)... 6 Pattern Tile & Dot Tool (CPM)... 9 Area and Perimeter (CPM)...11 Base Ten Blocks (CPM)...14 +/- Tiles & Number Lines (CPM)...16

More information

Creating Journey In AgentCubes

Creating Journey In AgentCubes DRAFT 3-D Journey Creating Journey In AgentCubes Student Version No AgentCubes Experience You are a traveler on a journey to find a treasure. You travel on the ground amid walls, chased by one or more

More information

The Revolve Feature and Assembly Modeling

The Revolve Feature and Assembly Modeling The Revolve Feature and Assembly Modeling PTC Clock Page 52 PTC Contents Introduction... 54 The Revolve Feature... 55 Creating a revolved feature...57 Creating face details... 58 Using Text... 61 Assembling

More information

A graph is an effective way to show a trend in data or relating two variables in an experiment.

A graph is an effective way to show a trend in data or relating two variables in an experiment. Chem 111-Packet GRAPHING A graph is an effective way to show a trend in data or relating two variables in an experiment. Consider the following data for exercises #1 and 2 given below. Temperature, ºC

More information

SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer

SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer Introduction I don t have to tell you that Scrivener is an amazing writing program--you know that because you re taking this

More information

Heads Up! A c t i v i t y 5. The Problem. Name Date

Heads Up! A c t i v i t y 5. The Problem. Name Date . Name Date A c t i v i t y 5 Heads Up! In this activity, you will study some important concepts in a branch of mathematics known as probability. You are using probability when you say things like: It

More information

Math 106 Lecture 3 Probability - Basic Terms Combinatorics and Probability - 1 Odds, Payoffs Rolling a die (virtually)

Math 106 Lecture 3 Probability - Basic Terms Combinatorics and Probability - 1 Odds, Payoffs Rolling a die (virtually) Math 106 Lecture 3 Probability - Basic Terms Combinatorics and Probability - 1 Odds, Payoffs Rolling a die (virtually) m j winter, 00 1 Description We roll a six-sided die and look to see whether the face

More information

Getting Started. Right click on Lateral Workplane. Left Click on New Sketch

Getting Started. Right click on Lateral Workplane. Left Click on New Sketch Getting Started 1. Open up PTC Pro/Desktop by either double clicking the icon or through the Start button and in Programs. 2. Once Pro/Desktop is open select File > New > Design 3. Close the Pallet window

More information

Graphing Guidelines. Controlled variables refers to all the things that remain the same during the entire experiment.

Graphing Guidelines. Controlled variables refers to all the things that remain the same during the entire experiment. Graphing Graphing Guidelines Graphs must be neatly drawn using a straight edge and pencil. Use the x-axis for the manipulated variable and the y-axis for the responding variable. Manipulated Variable AKA

More information

Getting Started. with Easy Blue Print

Getting Started. with Easy Blue Print Getting Started with Easy Blue Print User Interface Overview Easy Blue Print is a simple drawing program that will allow you to create professional-looking 2D floor plan drawings. This guide covers the

More information

Scratch for Beginners Workbook

Scratch for Beginners Workbook for Beginners Workbook In this workshop you will be using a software called, a drag-anddrop style software you can use to build your own games. You can learn fundamental programming principles without

More information

2. Creating and using tiles in Cyberboard

2. Creating and using tiles in Cyberboard 2. Creating and using tiles in Cyberboard I decided to add some more detail to the first hexed grip map that I produced (Demo1) using the Cyberboard Design program. To do this I opened program by clicking

More information

The lump sum amount that a series of future payments is worth now; used to calculate loan payments; also known as present value function Module 3

The lump sum amount that a series of future payments is worth now; used to calculate loan payments; also known as present value function Module 3 Microsoft Excel Formulas Made Easy Key Terms Term Definition Introduced In Absolute reference A cell reference that is fixed to a specific cell and contains a constant value throughout the spreadsheet

More information

BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box

BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box Copyright 2012 by Eric Bobrow, all rights reserved For more information about the Best Practices Course, visit http://www.acbestpractices.com

More information

MicroLab 500-series Getting Started

MicroLab 500-series Getting Started MicroLab 500-series Getting Started 2 Contents CHAPTER 1: Getting Started Connecting the Hardware....6 Installing the USB driver......6 Installing the Software.....8 Starting a new Experiment...8 CHAPTER

More information

1. Start with scatter plot: 2. Find corner points. 3. Capture image. 4. Corners

1. Start with scatter plot: 2. Find corner points. 3. Capture image. 4. Corners 1. Start with scatter plot: 2. Find corner points Easiest way to insert picture properly in GeoGebra is to have corner points. We see that: bottom corner is (2,10) top corner is (9,21) 3. Capture image

More information

nvision Actuals Drilldown (Non-Project Speedtypes) Training Guide Spectrum+ System 8.9 November 2010 Version 2.1

nvision Actuals Drilldown (Non-Project Speedtypes) Training Guide Spectrum+ System 8.9 November 2010 Version 2.1 nvision Actuals Drilldown (Non-Project Speedtypes) Training Guide Spectrum+ System 8.9 November 2010 Version 2.1 Table of Contents Introduction. Page 03 Logging into Spectrum.Page 03 Accessing the NVision

More information

Welcome to JigsawBox!! How to Get Started Quickly...

Welcome to JigsawBox!! How to Get Started Quickly... Welcome to JigsawBox!! How to Get Started Quickly... Welcome to JigsawBox Support! Firstly, we want to let you know that you are NOT alone. Our JigsawBox Customer Support is on hand Monday to Friday to

More information

Excel 2016 Cell referencing and AutoFill

Excel 2016 Cell referencing and AutoFill Excel 2016 Cell referencing and AutoFill Good afternoon everyone and welcome to Student Tech Bytes. My name is Liza and today we are here for Excel Cell referencing and Autofill. Today s session will be

More information

Excel 2013 Unit A: Getting Started With Excel 2013

Excel 2013 Unit A: Getting Started With Excel 2013 Excel 2013 Unit A: Getting Started With Excel 2013 MULTIPLE CHOICE 1. An electronic is an application you use to perform numeric calculations and to analyze and present numeric data. a. database c. dataform

More information

Creating Photo Borders With Photoshop Brushes

Creating Photo Borders With Photoshop Brushes Creating Photo Borders With Photoshop Brushes Written by Steve Patterson. In this Photoshop photo effects tutorial, we ll learn how to create interesting photo border effects using Photoshop s brushes.

More information

Date. Probability. Chapter

Date. Probability. Chapter Date Probability Contests, lotteries, and games offer the chance to win just about anything. You can win a cup of coffee. Even better, you can win cars, houses, vacations, or millions of dollars. Games

More information

dotted line kind of in the middle of my screen. And what that dotted line represents is where the page ends. Ok, so that s the very end of my page.

dotted line kind of in the middle of my screen. And what that dotted line represents is where the page ends. Ok, so that s the very end of my page. Hi, good afternoon and welcome to this Tuesday s TechTalk. My name is Kat Snizaski and today we are talking about formatting inside Excel 2010. I see, I think everybody can hear. If you can hear me please

More information

Excel Lesson 6 page 1 Jan 18

Excel Lesson 6 page 1 Jan 18 Excel Lesson 6 page 1 Jan 18 Lesson 6 (attached is Lesson6 Worksheets.xlsx) Monday Jan 18 due by Jan 31 We begin today's lesson with using an Excel sheet with the game of Tic-Tac-Toe. This simple game

More information

Quilt-Pro 6. Creating a Panel Quilt

Quilt-Pro 6. Creating a Panel Quilt QP6 Lessons posted Page 1 Creating a Panel Quilt Quilt-Pro 6 I have seen some really beautiful fabric panels that would look absolutely gorgeous in a quilt. Panel quilts can be made quickly or can be as

More information

Part 1: I can express probability as a fraction, decimal, and percent

Part 1: I can express probability as a fraction, decimal, and percent Name: Pattern: Part 1: I can express probability as a fraction, decimal, and percent For #1 to #4, state the probability of each outcome. Write each answer as a) a fraction b) a decimal c) a percent Example:

More information

WORN, TORN PHOTO EDGES EFFECT

WORN, TORN PHOTO EDGES EFFECT Photo Effects: CC - Worn, Torn Photo Edges Effect WORN, TORN PHOTO EDGES EFFECT In this Photoshop tutorial, we ll learn how to take the normally sharp, straight edges of an image and make them look all

More information

Example: Your Name (instead of contestant number) / Job 1

Example: Your Name (instead of contestant number) / Job 1 BPA PROJECT Advanced Spreadsheet Applications ASA Description: Finished Product: This project is based on the Advanced Spreadsheet Applications event; it consists of creating a spreadsheet with multiple

More information

PivotTables PivotCharts (Chapter 5)

PivotTables PivotCharts (Chapter 5) If a database contains a lot of information and the user would like to work with only a selection of the data in a table or as a chart, PivotTables and PivotCharts are a great solution. Data Mining: the

More information

Kaltura CaptureSpace Lite Desktop Recorder: Editing, Saving, and Uploading a Recording

Kaltura CaptureSpace Lite Desktop Recorder: Editing, Saving, and Uploading a Recording Kaltura CaptureSpace Lite Desktop Recorder: Editing, Saving, and Uploading a Recording For this handout, we will be editing the Screen Recording we created in the Kaltura CaptureSpace Lite Desktop Recorder

More information

Land use in my neighborhood Part I.

Land use in my neighborhood Part I. Land use in my neighborhood Part I. We are beginning a 2-part project looking at forests and land use in your home neighborhood. The goal is to measure trends in forest development in modern Ohio. You

More information

ARCHICAD Introduction Tutorial

ARCHICAD Introduction Tutorial Starting a New Project ARCHICAD Introduction Tutorial 1. Double-click the Archicad Icon from the desktop 2. Click on the Grey Warning/Information box when it appears on the screen. 3. Click on the Create

More information

Excel Manual X Axis Scale Start At Graph

Excel Manual X Axis Scale Start At Graph Excel Manual X Axis Scale Start At 0 2010 Graph But when I plot them by XY chart in Excel (2003), it looks like a rectangle, even if I havesame for both X, and Y axes, and I can see the X and Y data maximum

More information

PebblePad LEARNER HANDBOOK

PebblePad LEARNER HANDBOOK PebblePad LEARNER HANDBOOK CONTENTS Overview of the online learning environment... 3 Overview of how to find and submit work... 4 Logging Onto the IOS Online... 5 Seeing your Courses... 6 Using Your PebblePad

More information

Engineering 3821 Fall Pspice TUTORIAL 1. Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill

Engineering 3821 Fall Pspice TUTORIAL 1. Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill Engineering 3821 Fall 2003 Pspice TUTORIAL 1 Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill 2 INTRODUCTION The PSpice program is a member of the SPICE (Simulation Program with Integrated Circuit

More information

Create a Flowchart in Word

Create a Flowchart in Word Create a Flowchart in Word A flowchart is a diagram of steps, movements or actions involved in a system or activity. Flowcharts use conventional geometric symbols and arrows to define relationships and

More information

Volume of Revolution Investigation

Volume of Revolution Investigation Student Investigation S2 Volume of Revolution Investigation Student Worksheet Name: Setting up your Page In order to take full advantage of Autograph s unique 3D world, we first need to set up our page

More information

5 Day Unit Plan. Algebra/Grade 9. JenniferJohnston

5 Day Unit Plan. Algebra/Grade 9. JenniferJohnston 5 Day Unit Plan Algebra/Grade 9 JenniferJohnston Geometer s Sketchpad Graph Explorer Algebra I TI-83 Plus Topics in Algebra Application Transform Application Overall Objectives Students will use a variety

More information

Create a Simple Game in Scratch

Create a Simple Game in Scratch Create a Simple Game in Scratch Based on a presentation by Barb Ericson Georgia Tech June 2009 Learn about Goals event handling simple sequential execution loops variables conditionals parallel execution

More information

Scrivener Manual Windows Version Part I

Scrivener Manual Windows Version Part I Scrivener Manual Windows Version 2013 Part I Getting Started Creating Your Scrivener Project In Scrivener, click File and then click New Project. You will have the option to choose from one of Scrivener

More information

User Guide. Version 1.2. Copyright Favor Software. Revised:

User Guide. Version 1.2. Copyright Favor Software. Revised: User Guide Version 1.2 Copyright 2009-2010 Favor Software Revised: 2010.05.18 Table of Contents Introduction...4 Installation on Windows...5 Installation on Macintosh...6 Registering Intwined Pattern Studio...7

More information

Spreadsheets 2: Calculate!

Spreadsheets 2: Calculate! Spreadsheets 2: Calculate! Name: Main: Spreadsheets are convenient for organizing text information in charts and rows. However, they can also act like a calculator to perform all sorts of mathematical

More information

User Guide. Version 1.4. Copyright Favor Software. Revised:

User Guide. Version 1.4. Copyright Favor Software. Revised: User Guide Version 1.4 Copyright 2009-2012 Favor Software Revised: 2012.02.06 Table of Contents Introduction... 4 Installation on Windows... 5 Installation on Macintosh... 6 Registering Intwined Pattern

More information

Subdivision Cross Sections and Quantities

Subdivision Cross Sections and Quantities NOTES Module 11 Subdivision Cross Sections and Quantities Quantity calculation and cross section generation are required elements of subdivision design projects. After the design is completed and approved

More information

Learning Guide. ASR Automated Systems Research Inc. # Douglas Crescent, Langley, BC. V3A 4B6. Fax:

Learning Guide. ASR Automated Systems Research Inc. # Douglas Crescent, Langley, BC. V3A 4B6. Fax: Learning Guide ASR Automated Systems Research Inc. #1 20461 Douglas Crescent, Langley, BC. V3A 4B6 Toll free: 1-800-818-2051 e-mail: support@asrsoft.com Fax: 604-539-1334 www.asrsoft.com Copyright 1991-2013

More information

Alibre Design Tutorial - Simple Extrude Step-Pyramid-1

Alibre Design Tutorial - Simple Extrude Step-Pyramid-1 Alibre Design Tutorial - Simple Extrude Step-Pyramid-1 Part Tutorial Exercise 4: Step-Pyramid-1 [text version] In this Exercise, We will set System Parameters first. Then, in sketch mode, outline the Step

More information

You can copy a cell by clicking on the Handle and dragging

You can copy a cell by clicking on the Handle and dragging Professor Shoemaker Spring, 2014 Copying using the Handle You can copy a cell by clicking on the Handle and dragging Excel Professor Shoemaker 1 What s a Cell Reference? It s when an expression in one

More information

CAD Orientation (Mechanical and Architectural CAD)

CAD Orientation (Mechanical and Architectural CAD) Design and Drafting Description This is an introductory computer aided design (CAD) activity designed to give students the foundational skills required to complete future lessons. Students will learn all

More information

A To draw a line graph showing the connection between the time and cost

A To draw a line graph showing the connection between the time and cost Hire a coach In this activity you will use Excel to draw line graphs which show the connection between variables in real situations. You will also study how features of the graphs are related to the information

More information

Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis.

Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis. Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis. This user guide along with the videos included on the CD should have you on your way to perfect zero

More information

LabVIEW Day 2: Other loops, Other graphs

LabVIEW Day 2: Other loops, Other graphs LabVIEW Day 2: Other loops, Other graphs Vern Lindberg From now on, I will not include the Programming to indicate paths to icons for the block diagram. I assume you will be getting comfortable with the

More information

Working With Drawing Views-I

Working With Drawing Views-I Chapter 12 Working With Drawing Views-I Learning Objectives After completing this chapter you will be able to: Generate standard three views. Generate Named Views. Generate Relative Views. Generate Predefined

More information

EKA Laboratory Muon Lifetime Experiment Instructions. October 2006

EKA Laboratory Muon Lifetime Experiment Instructions. October 2006 EKA Laboratory Muon Lifetime Experiment Instructions October 2006 0 Lab setup and singles rate. When high-energy cosmic rays encounter the earth's atmosphere, they decay into a shower of elementary particles.

More information

Learn PowerPoint 2010

Learn PowerPoint 2010 Table of Contents Chapter 1 Introduction Introduction...4 Chapter 2 PowerPoint 2010 Basics Introduction to PowerPoint 2010 Basics...5 Start and Exit...6 PowerPoint 2010 Window...7 The Ribbon...9 The Backstage:

More information