Mathematica Project 3

Size: px
Start display at page:

Download "Mathematica Project 3"

Transcription

1 Mathematica Project 3 Name: Section: Date: On your class s Sakai site, your instructor has placed 5 Mathematica notebooks. Please use the following table to determine which file you should select based on the last digit of your Student ID number. ID number ends w/ Mathematica File 0 or 1 ProblemDoc Chapter or 3 ProblemDoc Chapter or 5 ProblemDoc Chapter or 7 ProblemDoc Chapter or 9 ProblemDoc Chapter 5 5 In this assignment, you will discover how to define piecewise functions in Mathematica, how to fit data to functions, how to use the Math Palettes, and how to calculate Riemann sums and definite integrals in Mathematica. Note: It should take you approximately 2 hours to complete problems Time required for Language of Math (Problem #21) may vary greatly depending on your writing skills and the guidance provided by your instructor. This time estimate is provided to help you plan your work. It represents total time dedicated wholly to the task; if you are multitasking, you will need to add more time to the estimate. If you have any problems using Mathematica, be sure to see the Mathematica tutor for assistance. If you are having difficulty interpreting your Mathematica results, please see your instructor for assistance. Suppose that you are going to watch your favorite race car driver in a big race. Of course, you seize the opportunity to practice your math skills. After the race, you are given a piecewise function that expresses your driver s velocity as a function of time. You will use right-hand Riemann sums as well as left-hand Riemann sums to approximate the distance travelled during certain time intervals during the race. You will also approximate the total distance of the race. To help you understand the theory behind this assignment, we ve included an appendix (at the end of the assignment) that steps you through the ideas we will cover. This reviews much of the material in the text, so if you wanted to work on this assignment while traveling for the holidays, you should not need to bring your textbook. YOUR TASK: PART 1: Bob the Builder is trying out a new profession: stock car driving. During his first race, the race officials were able to record his velocity (in meters per second) and fit a piecewise function to it. However, the race official made a mistake in marking the official length of the race, and there is no record of how far Bob traveled. The description of Bob s race is as follows: Bob accelerates off the line to a great start. After a mechanical failure, Bob s car begins slowing down before coming to a stop for a time. His pit crew rushes to his aid, and after a short while, repairs his car. He accelerates once more and finishes the race without difficulty. Your Mathematica file shows you the four different stages of his race. v1(t) represents his initial start off the line until the car breaks, v2(t) represents him slowing down after the mechanical failure, v3(t) represents the time the car is stopped and being repaired, and v4(t) represents him continuing on until 1

2 he reaches the finish line. T otalrace(t) represents the piecewise function in which the four functions are stitched together in time. Notice the format for the built-in function Piecewise. Your file then plots the piecewise function showing Bob the Builder s velocity as a function of time. Evaluate your notebook (use the menus - Evaluate - Evaluate Notebook). Problem 1 At what time does the car come to a complete stop after the breakdown? (Hint - do not just guess based on the graph, but rather look at how the piecewise function is defined.) We are interested in seeing how far Bob the Builder went before the car stopped. Using T otalrace(t) as a model, make a new piecewise function called P rebreak(t) that defines the velocity of the car up until it stops after the breakdown. Plot this new function, P rebreak(t), by pressing shift+enter or using the Evaluate Notebook from the top menus. Problem 2 Right click on your new graph, Copy Graphic, and paste (ctrl-v) the graph into a blank Word document TWICE (i.e., the document should have TWO copies of the picture). Print the document. By hand, approximate the distance Bob the Builder covered before the broken car stopped by using a left-hand Riemann sum with 4 subintervals, (n = 4), and a right-hand Riemann sum with 4 subintervals. On the printed document, show and shade the rectangles you used for the left-hand sum (hand label this chart Left-Hand Riemann Sum on one copy of the graphic; show and shade the rectangles you used for the right-hand sum on the other copy of the graphic (hand label this chart Right-Hand Riemann Sum ). Write your approximation for distance next to the corresponding graphic, and don t forget the units! Also be sure to label this page in your submission with the Problem number. Suppose we want to increase the accuracy of our approximation. We know that to do this, we should make more rectangles. If we wanted to do a left-hand Riemann sum with n = 100 by hand, that would take a LONG time. Fortunately, Mathematica can help! Using the menus at the top, select Palettes, then Basic Math Assistant. This brings up a calculator in Basic mode; click the tab to bring up the Advanced mode, and you will see that there is a summation symbol! Click just below your plot to create a new cell (the cursor should flip sideways to indicate that you are between cells - this will create a new cell); then click on the summation symbol in the calculator palette. Then you can click on each of the input boxes to fill them in with the necessary information. For us, we want the index to be i, and it will start at 1 and end at 100. Where Mathematica asks for the expr, it wants the expression to be input. Recall for a left-hand limit, this expression is P rebreak(t i ) t where t = b a n. This brings up a programming issue - specifically, how do we tell Mathematica what t i is? We know that each time t i is t bigger than before, and after i-steps, we ve added i t or i b a n to the original time. If we start at a, then this means that t i = a + (i 1) b a n. The reason for using (i 1) is because we still need t = 0 for our first rectangle, i = 1. We know that a = 0 because we are starting to measure at the beginning of the race, and we know that n = 100, but we need to know b. Problem 3 What is b? In other words, at what time should we stop measuring the distance, as we set up our Riemann sum? Remember, we want to measure clear up until the car rolls to a complete stop. Now that we know b, we can input it into our Mathematica expression: (PreBreak[0+(i-1)*(b-0)/100]*(b-0)/100). After substituting b with your answer to Problem 3 (in both places), input this expression into the Mathematica summation, and evaluate that cell (shift+enter). If you get an improper fraction, go back and add //N to the end of your summation command. When you evaluate again, you should get a decimal answer. Problem 4 What did you get as an approximation using n = 100 with a left-hand Riemann sum for the distance? Be sure to include units. Problem 5 In Mathematica, using the palette and the summation symbol, add a new line that computes the approximate distance covered using n = 100 with a right-hand Riemann sum. What is the value you get (in decimal form)? Be sure to include units. 2

3 Problem 6 Using all you have learned about creating piecewise functions and approximating distance using Riemann sums in Mathematica, we now want to approximate the distance Bob the Builder goes from the time the car is fixed and starts moving again until the end of the race. Use Mathematica to compute the left-hand Riemann sums with n = 10, n = 100, and n = 1000 to approximate this distance. Give all three answers in the form of a table (hand written or in Word). Problem 7 What was the approximate total length of the race? Mathematica has the ability to directly compute the integral that represents the distance. Go back to the math palette, and next to the summation symbol, you will see a definite integral symbol. Click on that to add it to your notebook, and fill it in such that you compute the exact distance covered over the entire race. To fill it in, remember your lower bound should be the race start time (0), your upper bound should be the time the race ends, your expression is TotalRace[t], and the var is just t. Evaluate the integral. Notice that Mathematica likes to give precise results (hence the logarithm in your answer), but if you put //N at the end of your command, Mathematica will give you a decimal approximation. Problem 8 Based on the result from your integral in Mathematica, what is the total distance Bob the Builder covered during the race? Please give your answer in decimal form, and be sure to include units. Be sure to save your work up to this point. Later you will be asked to print, and all of the work up to this point (and more in Part 2) should be seen in the printout. Part 2: After a disasterous start to his stock car racing career, Bob the Builder decides to give drag racing a try. Your Mathematica file is preloaded with his velocity in meters per second, vdragdata, for his first drag race. The data, vdragdata, is loaded into your Mathematica file as a list of ordered pairs in the format {{t 1, v(t 1 )}, {t 2, v(t 2 )},...}. You already know how to plot functions, but to plot points representing data points, you can use the command ListPlot. In our case, we want to show the points in the color red, so we will use the command: ListPlot[vdragdata, PlotStyle->Red]. Go ahead and plot your data. If you are having difficulty, check to make sure you are mindful of upper and lower case letters throughout, and if that doesn t fix the problem, look at the listplot command in the documentation center. Problem 9 We know that we can approximate the distance traveled with a Riemann sum. What is the smallest spacing, t, we could use with this data? Problem 10 By hand, use t = 2 calculate the distance traveled by Bob the Builder for the drag race by using both a left-hand Riemann sum and a right-hand Riemann sum. What is the difference between these estimates? That isn t terribly accurate, is it? To make it better, we d like to use Mathematica, but in Part 1, we only saw how to use the summation notation if we knew the function. Here we only have points in a list! Suppose I wanted to use t = 0.4. This means that I would use every other data point, so the 2nd, the 4th, the 6th. Also, in each case, when I want to use the function value, I want to take the 2nd part of the ordered pair (remember, ordered pairs give the time first and the velocity 2nd). I can tell Mathematica this in my summation s expr by saying vdragdata[[2*i,2]]*0.4: the 2 i is because I want the 2nd, 4th, 6th, etc. data points; the 2 is because I want the 2nd part of the ordered pair; the 0.4 is because that is my t. Go ahead and run the calculation. Think about what you would need to change in order to do this calculation with t = 0.2. Would you still use every other data point (just the even ones)? If not, which data points would you use, and how 3

4 would you represent that in the expr for the summation? Would you still want to use the 2nd part of each ordered pair? Why or why not? Would the 0.4 stay the same, or would you replace it (and if you d replace it, what would go in its place)? And what if you wanted a right-hand sum instead of a left-hand sum? Now that you ve thought through it, go ahead and do it! Problem 11 Using the summation button (from the palette) in Mathematica, use t = 0.2 to calculate the distance traveled by Bob the Builder for the drag race by using a left-hand Riemann sum. Problem 12 Using the summation button (from the palette) in Mathematica, use t = 0.2 to calculate the distance traveled by Bob the Builder for the drag race by using a right-hand Riemann sum. Problem 13 What is the difference between the two approximations? Hint - you can use Mathematica like a calculator to do the subtraction for you. We notice that as t decreases, so does the difference between the left and right sums. We d like an even more accurate approximation, but we don t have any data between these points. Look at the plot - perhaps this function might be some sort of root function. Mathematica has great curve-fitting abilities, so if we tell it the types of terms we might want to use, Mathematica will determine the coefficients needed to fit a curve to our points. To find out the best-fit for our data with constants, t, t 1/2, and t 1/4,type the command: vfit[t ]=Fit[vdragdata, {t^0, t, t^(1/2), t^(1/4)}, t]. To show the plot of this function on the same plot as your listplot, you can use the Show command: Show[ ListPlot[vdragdata, PlotStyle->Red], Plot[vfit[t],{t,0,2}]]. Go ahead, make these changes, and look at your new plot! That isn t a bad approximation, but I bet we can do even better! If we add another term, a t 1/8 -term, the fit should get better because we are adding more flexibility to the curve. Using what you know about making fits in Mathematica, add a new line to create vfit2 which will be like vfit but with the extra t 1/8 -term. Problem 14 Using what you know about plotting two functions simultaneously within a plot command (from previous assignments), modify the Plot command inside the Show command such that Mathematica shows you the vdragdata points and the curves for both vfit and vfit2 at the same time. Which function is better for approximating the area distance traveled by Bob the Builder throughout the race (including the first 0.2 seconds!)? Briefly explain your answer. Let s use vfit(t) to approximate the area under the curve with a Riemann sum. Now that we have a function, we can go back to the method we used in Part 1 of this assignment to compute Riemann sums. Problem 15 Use Mathematica to compute both the left-hand and right-hand Riemann sums with n = 1000 based on the function vfit(t) to approximate the distance Bob the Builder covers in his drag race. What is the difference between these estimates? Problem 16 Use Mathematica to compute the definite integral of vfit over the entire race in order to determine the distance Bob the Builder traveled in his drag race. What distance did you determine? Be sure to include units in your answer. Problem 17 Use Mathematica to compute the definite integral of vfit2 (the second fit you did) over the entire race to determine the distance Bob the Builder traveled in his drag race. What distance did you determine? Be sure to include units in your answer. Problem 18 Are your answers to Problems 17 and 18 the same? Does this surprise you? Why or why not? Problem 19 In your judgment, what is the total distance (with units) that Bob the Builder covered in his drag race? Briefly justify your answer. Problem 20 Save and PRINT your Mathematica file at this point. Be sure to digitally sign the top of the file. Also be sure, in your submission, next to this problem number, write See attached printout. 4

5 Problem 21 Language of Mathematics A Riemann sum represents an approximation, and an integral (which is the limit of the Riemann sum) is supposed to represent an exact area. However, in Part 2, we end up with different answers when we use a definite integral. If the definite integral is supposed to be exact, how do we get different answers - shouldn t they both be perfectly accurate? Can we find the exact distance Bob traveled in his drag race? If so, how? If not, why not? In your own words, discuss the accuracy of Riemann sums, the limit of Riemann sums, and integrals as they relate to Part 2 of this assignment. Your instructor will give you guidance on the length and format of this piece of the assignment. APPENDIX FOR THOUGHT: This appendix covers much of the material given in your textbook, pages We know that velocity is equal to distance divided by time: Therefore, v = d t. d = vt. If the velocity is constant, therefore, we can multiply the velocity of an object by the time that it moves to obtain the distance that it moves. Suppose, however, that velocity is not constant. It changes over the time interval, but if we subdivide the total time interval into very small time intervals, then the velocity does not have much opportunity to change over the small time intervals. Suppose that Jimmy sits on his sled at the top of a snowy hill. He pushes off and starts sliding down. He goes slowly at first, but then speeds up. Let his velocity as a function of time be defined as v = 3t 2, with time t in seconds and velocity v in feet per second. How can we estimate the distance that he travels in four seconds? Well, there is no single velocity that Jimmy travels at for any length of time. At time t = 0, his velocity is v(0) = 3(0) 2 = 0, and at time t = 4, his velocity is v(4) = 3(4) 2 = 48. If we used either of these velocities as an estimate for the velocity that he travelled at for the entire four seconds, we would probably get a very innacurate estimate of the distance that Jimmy travelled. What if we divide his trip into four time intervals, each lasting for one second? We make the following table: t v(t) For the time interval from 0 to 1 second, let s estimate that Jimmy travels at 0 feet per second. From the time interval from 1 to 2 seconds, we ll estimate that he travels at 3 feet per second, etc. Using this method, his total distance is estimated to be dist est. = 0(1 0) + 3(2 1) + 12(3 2) + 27(4 3) = = 42, 5

6 so we estimate that he travelled 42 feet in four seconds. We just used the left-hand Riemann sum, because we used the value for velocity of the time at the left side of each interval. Let s use the right-hand Riemann sum to estimate his total distance again. This time, we use the velocity of the time at the right side each interval: dist est. = 3(1 0) + 12(2 1) + 27(3 2) + 48(4 3) = = 90, So we estimate that he travelled 90 feet in the four seconds. Does this seem like a good approximation? We estimated that he travelled 42 feet with the left-hand Riemann sum, and 90 feet with the right-hand Riemann sum! Well, I promise that if you make the intervals smaller, the values for the left-hand and right-hand Riemann sums will get closer and closer together, and the estimate will get better and better. Try it if you re skeptical! EXAMPLE: Suppose that we have a function f(x) = 4x If we were to graph this function, what would be the area under the curve from x = 0 to x = 5? We will use a Riemann sum to approximate this area. The first step is to choose an interval width, x. Let s choose x = 1. That means that we ll divide the x-axis from 0 to 5 into intervals that are each 1 unit in width. Starting at x = 0, our first interval goes from 0 to 1. Our next interval goes from 1 to 2, and the rest of our intervals go from 2 to 3, from 3 to 4, and from 4 to 5. Now, from the equation f(x) = 4x 2 + 7, we see that the value of the function is constantly changing, much in the way our sledder s velocity was always changing. However, to simplify the problem, on each interval, we will assume that the function value stays the same. So, we will calculate a value on each interval. The idea is that since the interval is so small, the function value doesn t have much opportunity to change on the interval, and so the calculated function value on that interval is a good estimate for the function value at any time in that interval of time. Then, we multiply that value by the interval width, x, in order to almost find the area under the curve on that interval. The question is, what value of function do we choose for each interval? Let s examine the interval from 0 to 1. To represent the function on that entire interval, we could choose the function value at 0 seconds, at 1 second, or at any point in between 0 and 1. Let s choose the function value atx = 0. If for every other interval, we also choose to evaluate the function at the left side of the interval, then we will be performing a left-hand Riemann sum. Let s do that. So for the interval from 1 to 2, we will use the function value at x = 1. From the interval from 2 to 3, we will evaluate the function value at x = 2, and so on. Note that on the last interval, from 4 to 5, we choose the function value at x = 4, and so the function value at x = 5 is never used. Now, to evaluate the Riemann sum! f(0) x + f(1) x + f(2) x + f(3) x + f(4) x = f(0) 1 + f(1) 1 + f(2) 1 + f(3) 1 + f(4) 1 = f(0) + f(1) + f(2) + f(3) + f(4) = ( 4(0) ) + ( 4(1) ) + ( 4(2) ) + ( 4(3) ) + ( 4(4) ) = = 155 So, the area under the curve is approximately 155 square units. There s a more convenient way to express a Riemann sum. Consider this: n f(x i ) x, 6

7 where n is the number of intervals. In our example, we divided the x-axis from 0 to 5 into five intervals, so in that case, n = 5. Thus, the Riemann sum that represents the example above can be expressed as f(x i ) x Now, what exactly does this mean? Well, the symbol is called the summation symbol. It means that we add up all the numbers f(x i ) x for all of the values of i from 1 to 5. In other words, f(x i ) x = f(x 1 ) x + f(x 2 ) x + f(x 3 ) x + f(x 4 ) x + f(x 5 ) x Now, f(x 1 ) represents the chosen value of the function in the first interval, f(x 2 ) represents the chosen value of the function for the second interval, etc., and remember that the value of the function chosen for the first interval is f(0), the chosen value for the second interval is f(1), etc. f(x i ) x = f(x 1 ) x + f(x 2 ) x + f(x 3 ) x + f(x 4 ) x + f(x 5 ) x f(x i ) x = f(0) x + f(1) x + f(2) x + f(3) x + f(4) x and remembering that x = 1, = (7) x + (11) x + (23) x + 43 x + 71 x, = (7)(1) + (11)(1) + (23)(1) + 43(1) + 71(1) = 155 Now, what if we were to use the right-hand Riemann sum to approximate the area under the curve from 0 to 5? A right-hand Riemann sum means that we use the values of the function on the right side of each interval. If we again use x = 1, then the following table lists the intervals and the values of the function that we use on each interval: Interval x i f(x i ) 1 [0, 1] x 1 = 1 f(1) = 11 2 [1, 2] x 2 = 2 f(2) = 23 3 [2, 3] x 3 = 3 f(3) = 43 4 [3, 4] x 4 = 4 f(4) = 71 5 [4, 5] x 5 = 5 f(5) = 107 Thus, the right-hand Riemann sum is f(x i ) x = f(x 1 ) x + f(x 2 ) x + f(x 3 ) x + f(x 4 ) x + f(x 5 ) x = f(1) x + f(2) x + f(3) x + f(4) x + f(5) x = 11(1) + 23(1) + 43(1) + 71(1) + 107(1) = 255 Thus, the right-hand Riemann sum is 255 square units. 7

8 Now, let s find the left-hand Riemann sum approximating the area under the curve from 0 to 5 using x = 0.5. This will be trickier, so let s make a table: Interval x i f(x i ) 1 [0, 0.5] x 1 = 0 f(0) = 7 2 [0.5, 1] x 2 = 0.5 f(0.5) = 8 3 [1, 1.5] x 3 = 1 f(1) = 11 4 [1.5, 2] x 4 = 1.5 f(1.5) = 16 5 [2, 2.5] x 5 = 2 f(2) = 23 6 [2.5, 3] x 6 = 2.5 f(2.5) = 32 7 [3, 3.5] x 7 = 3 f(3) = 43 8 [3.5, 4] x 8 = 3.5 f(3.5) = 56 9 [4, 4.5] x 9 = 4 f(4) = [4.5, 5] x 10 = 4.5 f(4.5) = 88 Now, f(x i ) x = f(x 1 ) x+f(x 2 ) x+f(x 3 ) x+f(x 4 ) x+f(x 5 ) x+f(x 6 ) x+f(x 7 ) x+f(x 8 ) x+f(x 9 ) x+f(x 10 ) x = f(0) x+f(0.5) x+f(1) x+f(1.5) x+f(2) x+f(2.5) x+f(3) x+f(3.5) x+f(4) x+f(4.5) x = 7(0.5) + 8(0.5) + 11(0.5) + 16(0.5) + 23(0.5) + 32(0.5) + 43(0.5) + 56(0.5) + 71(0.5) + 88(0.5) = Thus, the left-hand Riemann sum approximating the area under the curve of the function from 0 to 5 is equal to square units. If you compute the right-hand Riemann sum with x = 0.5, you will see that as x decreases, the difference between the left and right sums also decreases. Ideally, we d like to make x very small, which means LOTS of calculations, and that means that it would be wise for us to leverage technology, such as Mathematica, to help us! 8

Linear Motion with Constant Acceleration

Linear Motion with Constant Acceleration Linear Motion 1 Linear Motion with Constant Acceleration Overview: First you will attempt to walk backward with a constant acceleration, monitoring your motion with the ultrasonic motion detector. Then

More information

Boyle s Law and Charles Law Activity

Boyle s Law and Charles Law Activity Boyle s Law and Charles Law Activity Introduction: This simulation helps you to help you fully understand 2 Gas Laws: Boyle s Law and Charles Law. These laws are very simple to understand, but are also

More information

PHY 123 Lab 1 - Error and Uncertainty and the Simple Pendulum

PHY 123 Lab 1 - Error and Uncertainty and the Simple Pendulum To print higher-resolution math symbols, click the Hi-Res Fonts for Printing button on the jsmath control panel. PHY 13 Lab 1 - Error and Uncertainty and the Simple Pendulum Important: You need to print

More information

Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class

Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class Matter & Motion Winter 2017 18 Name: Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class Goals: 1. Learn to use Mathematica to plot functions and to

More information

Introduction to Computer Tools and Uncertainties

Introduction to Computer Tools and Uncertainties Experiment 1 Introduction to Computer Tools and Uncertainties 1.1 Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. To become familiar with

More information

() Chapter 8 November 9, / 1

() Chapter 8 November 9, / 1 Example 1: An easy area problem Find the area of the region in the xy-plane bounded above by the graph of f(x) = 2, below by the x-axis, on the left by the line x = 1 and on the right by the line x = 5.

More information

LAB 3: WORK AND ENERGY

LAB 3: WORK AND ENERGY 1 Name Date Lab Day/Time Partner(s) Lab TA (CORRECTED /4/05) OBJECTIVES LAB 3: WORK AND ENERGY To understand the concept of work in physics as an extension of the intuitive understanding of effort. To

More information

LAB 2 - ONE DIMENSIONAL MOTION

LAB 2 - ONE DIMENSIONAL MOTION Name Date Partners L02-1 LAB 2 - ONE DIMENSIONAL MOTION OBJECTIVES Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise To learn how to use a motion detector and gain more familiarity

More information

AP Physics 1 Summer Assignment Packet

AP Physics 1 Summer Assignment Packet AP Physics 1 Summer Assignment Packet 2017-18 Welcome to AP Physics 1 at David Posnack Jewish Day School. The concepts of physics are the most fundamental found in the sciences. By the end of the year,

More information

Distance And Velocity

Distance And Velocity Unit #8 - The Integral Some problems and solutions selected or adapted from Hughes-Hallett Calculus. Distance And Velocity. The graph below shows the velocity, v, of an object (in meters/sec). Estimate

More information

PHY 221 Lab 2. Acceleration and Uniform Motion

PHY 221 Lab 2. Acceleration and Uniform Motion PHY 221 Lab 2 Name: Partner: Partner: Acceleration and Uniform Motion Introduction: Recall the previous lab During Lab 1, you were introduced to computer aided data acquisition. You used a device called

More information

AP Calculus AB. Slide 1 / 175. Slide 2 / 175. Slide 3 / 175. Integration. Table of Contents

AP Calculus AB. Slide 1 / 175. Slide 2 / 175. Slide 3 / 175. Integration. Table of Contents Slide 1 / 175 Slide 2 / 175 AP Calculus AB Integration 2015-11-24 www.njctl.org Table of Contents click on the topic to go to that section Slide 3 / 175 Riemann Sums Trapezoid Approximation Area Under

More information

PHYSICS LAB: CONSTANT MOTION

PHYSICS LAB: CONSTANT MOTION PHYSICS LAB: CONSTANT MOTION Introduction Experimentation is fundamental to physics (and all science, for that matter) because it allows us to prove or disprove our hypotheses about how the physical world

More information

Quadratic Equations Part I

Quadratic Equations Part I Quadratic Equations Part I Before proceeding with this section we should note that the topic of solving quadratic equations will be covered in two sections. This is done for the benefit of those viewing

More information

Math 1526 Excel Lab 2 Summer 2012

Math 1526 Excel Lab 2 Summer 2012 Math 1526 Excel Lab 2 Summer 2012 Riemann Sums, Trapezoidal Rule and Simpson's Rule: In this lab you will learn how to recover information from rate of change data. For instance, if you have data for marginal

More information

Physics 212E Spring 2004 Classical and Modern Physics. Computer Exercise #2

Physics 212E Spring 2004 Classical and Modern Physics. Computer Exercise #2 Physics 212E Spring 2004 Classical and Modern Physics Chowdary Computer Exercise #2 Launch Mathematica by clicking on the Start menu (lower left hand corner of the screen); from there go up to Science

More information

LAB 3 - VELOCITY AND ACCELERATION

LAB 3 - VELOCITY AND ACCELERATION Name Date Partners L03-1 LAB 3 - VELOCITY AND ACCELERATION OBJECTIVES A cheetah can accelerate from 0 to 50 miles per hour in 6.4 seconds. Encyclopedia of the Animal World A Jaguar can accelerate from

More information

Chapter 9: Roots and Irrational Numbers

Chapter 9: Roots and Irrational Numbers Chapter 9: Roots and Irrational Numbers Index: A: Square Roots B: Irrational Numbers C: Square Root Functions & Shifting D: Finding Zeros by Completing the Square E: The Quadratic Formula F: Quadratic

More information

Lab 3 Acceleration. What You Need To Know: Physics 211 Lab

Lab 3 Acceleration. What You Need To Know: Physics 211 Lab b Lab 3 Acceleration Physics 211 Lab What You Need To Know: The Physics In the previous lab you learned that the velocity of an object can be determined by finding the slope of the object s position vs.

More information

ABE Math Review Package

ABE Math Review Package P a g e ABE Math Review Package This material is intended as a review of skills you once learned and wish to review before your assessment. Before studying Algebra, you should be familiar with all of the

More information

Egyptian Fractions: Part I

Egyptian Fractions: Part I Egyptian Fractions: Part I Prepared by: Eli Jaffe October 8, 2017 1 Cutting Cakes 1. Imagine you are a teacher. Your class of 10 students is on a field trip to the bakery. At the end of the tour, the baker

More information

Similar Shapes and Gnomons

Similar Shapes and Gnomons Similar Shapes and Gnomons May 12, 2013 1. Similar Shapes For now, we will say two shapes are similar if one shape is a magnified version of another. 1. In the picture below, the square on the left is

More information

Possible Prelab Questions.

Possible Prelab Questions. Possible Prelab Questions. Read Lab 2. Study the Analysis section to make sure you have a firm grasp of what is required for this lab. 1) A car is travelling with constant acceleration along a straight

More information

Egyptian Fractions: Part I

Egyptian Fractions: Part I Egyptian Fractions: Part I Prepared by: Eli Jaffe October 8, 2017 1 Cutting Cakes 1. Imagine you are a teacher. Your class of 10 students is on a field trip to the bakery. At the end of the tour, the baker

More information

Please bring the task to your first physics lesson and hand it to the teacher.

Please bring the task to your first physics lesson and hand it to the teacher. Pre-enrolment task for 2014 entry Physics Why do I need to complete a pre-enrolment task? This bridging pack serves a number of purposes. It gives you practice in some of the important skills you will

More information

Algebra Exam. Solutions and Grading Guide

Algebra Exam. Solutions and Grading Guide Algebra Exam Solutions and Grading Guide You should use this grading guide to carefully grade your own exam, trying to be as objective as possible about what score the TAs would give your responses. Full

More information

Physics Motion Math. (Read objectives on screen.)

Physics Motion Math. (Read objectives on screen.) Physics 302 - Motion Math (Read objectives on screen.) Welcome back. When we ended the last program, your teacher gave you some motion graphs to interpret. For each section, you were to describe the motion

More information

Calculus Honors and Introduction to Calculus

Calculus Honors and Introduction to Calculus Calculus Honors and Introduction to Calculus Name: This summer packet is for students entering Calculus Honors or Introduction to Calculus in the Fall of 015. The material represents concepts and skills

More information

Motion II. Goals and Introduction

Motion II. Goals and Introduction Motion II Goals and Introduction As you have probably already seen in lecture or homework, and if you ve performed the experiment Motion I, it is important to develop a strong understanding of how to model

More information

Lab Slide Rules and Log Scales

Lab Slide Rules and Log Scales Name: Lab Slide Rules and Log Scales [EER Note: This is a much-shortened version of my lab on this topic. You won t finish, but try to do one of each type of calculation if you can. I m available to help.]

More information

One Dimensional Collisions 1 Fall 2018

One Dimensional Collisions 1 Fall 2018 One Dimensional Collisions 1 Fall 2018 Name: Partners: Introduction The purpose of this experiment is to perform experiments to learn about momentum, impulse and collisions in one dimension. Write all

More information

PHY 101L - Experiments in Mechanics

PHY 101L - Experiments in Mechanics PHY 101L - Experiments in Mechanics introduction to error analysis What is Error? In everyday usage, the word error usually refers to a mistake of some kind. However, within the laboratory, error takes

More information

9.2 Multiplication Properties of Radicals

9.2 Multiplication Properties of Radicals Section 9.2 Multiplication Properties of Radicals 885 9.2 Multiplication Properties of Radicals Recall that the equation x 2 = a, where a is a positive real number, has two solutions, as indicated in Figure

More information

Electric Fields and Equipotentials

Electric Fields and Equipotentials OBJECTIVE Electric Fields and Equipotentials To study and describe the two-dimensional electric field. To map the location of the equipotential surfaces around charged electrodes. To study the relationship

More information

Unit 4 Patterns and Algebra

Unit 4 Patterns and Algebra Unit 4 Patterns and Algebra In this unit, students will solve equations with integer coefficients using a variety of methods, and apply their reasoning skills to find mistakes in solutions of these equations.

More information

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement Experiment 0 ~ Introduction to Statistics and Excel Tutorial Many of you already went through the introduction to laboratory practice and excel tutorial in Physics 1011. For that reason, we aren t going

More information

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests:

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests: One sided tests So far all of our tests have been two sided. While this may be a bit easier to understand, this is often not the best way to do a hypothesis test. One simple thing that we can do to get

More information

Lesson 1.2 Position Time Graphs

Lesson 1.2 Position Time Graphs Lesson 1.2 Position Time Graphs Be able to explain the motion represented in a position time graph Be able to calculate the avg. vel, x, and t for portions of a position time graph. Be able to draw a position

More information

Ch. 3 Equations and Inequalities

Ch. 3 Equations and Inequalities Ch. 3 Equations and Inequalities 3.1 Solving Linear Equations Graphically There are 2 methods presented in this section for solving linear equations graphically. Normally I would not cover solving linear

More information

LAB 2: INTRODUCTION TO MOTION

LAB 2: INTRODUCTION TO MOTION Lab 2 - Introduction to Motion 3 Name Date Partners LAB 2: INTRODUCTION TO MOTION Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise Objectives To explore how various motions are represented

More information

Physics E-1ax, Fall 2014 Experiment 3. Experiment 3: Force. 2. Find your center of mass by balancing yourself on two force plates.

Physics E-1ax, Fall 2014 Experiment 3. Experiment 3: Force. 2. Find your center of mass by balancing yourself on two force plates. Learning Goals Experiment 3: Force After you finish this lab, you will be able to: 1. Use Logger Pro to analyze video and calculate position, velocity, and acceleration. 2. Find your center of mass by

More information

Chapter 1A -- Real Numbers. iff. Math Symbols: Sets of Numbers

Chapter 1A -- Real Numbers. iff. Math Symbols: Sets of Numbers Fry Texas A&M University! Fall 2016! Math 150 Notes! Section 1A! Page 1 Chapter 1A -- Real Numbers Math Symbols: iff or Example: Let A = {2, 4, 6, 8, 10, 12, 14, 16,...} and let B = {3, 6, 9, 12, 15, 18,

More information

Circuit Analysis and Ohm s Law

Circuit Analysis and Ohm s Law Study Unit Circuit Analysis and Ohm s Law By Robert Cecci Circuit analysis is one of the fundamental jobs of an electrician or electronics technician With the knowledge of how voltage, current, and resistance

More information

Astronomy 102 Math Review

Astronomy 102 Math Review Astronomy 102 Math Review 2003-August-06 Prof. Robert Knop r.knop@vanderbilt.edu) For Astronomy 102, you will not need to do any math beyond the high-school alegbra that is part of the admissions requirements

More information

Math 5a Reading Assignments for Sections

Math 5a Reading Assignments for Sections Math 5a Reading Assignments for Sections 4.1 4.5 Due Dates for Reading Assignments Note: There will be a very short online reading quiz (WebWork) on each reading assignment due one hour before class on

More information

Chapter 2: Motion a Straight Line

Chapter 2: Motion a Straight Line Formula Memorization: Displacement What is a vector? Average Velocity Average Speed Instanteous Velocity Average Acceleration Instantaneous Acceleration Constant Acceleration Equation (List all five of

More information

Chapter 5 Simplifying Formulas and Solving Equations

Chapter 5 Simplifying Formulas and Solving Equations Chapter 5 Simplifying Formulas and Solving Equations Look at the geometry formula for Perimeter of a rectangle P = L W L W. Can this formula be written in a simpler way? If it is true, that we can simplify

More information

Unit 08 Work and Kinetic Energy. Stuff you asked about:

Unit 08 Work and Kinetic Energy. Stuff you asked about: Unit 08 Work and Kinetic Energy Today s Concepts: Work & Kinetic Energy Work in a non-constant direction Work by springs Mechanics Lecture 7, Slide 1 Stuff you asked about: Can we go over the falling,

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 2 nd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 2 nd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II 2 nd Nine Weeks, 2016-2017 1 OVERVIEW Algebra II Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

ACTIVITY 5: Changing Force-Strength and Mass

ACTIVITY 5: Changing Force-Strength and Mass UNIT FM Developing Ideas ACTIVITY 5: Changing Force-Strength and Mass Purpose In the previous activities of this unit you have seen that during a contact push/pull interaction, when a single force acts

More information

LAB 3: VELOCITY AND ACCELERATION

LAB 3: VELOCITY AND ACCELERATION Lab 3 - Velocity & Acceleration 25 Name Date Partners LAB 3: VELOCITY AND ACCELERATION A cheetah can accelerate from to 5 miles per hour in 6.4 seconds. A Jaguar can accelerate from to 5 miles per hour

More information

Spring 2018 Math Week Week 1 Task List

Spring 2018 Math Week Week 1 Task List Spring 2018 Math 143 - Week 1 25 Week 1 Task List This week we will cover Sections 1.1 1.4 in your e-book. Work through each of the following tasks, carefully filling in the following pages in your notebook.

More information

Fall 2017 Math 108 Week Week 1 Task List

Fall 2017 Math 108 Week Week 1 Task List Fall 2017 Math 108 Week 1 29 Week 1 Task List This week we will cover Sections 1.1, 1.2, and 1.4 in your e-text. Work through each of the following tasks, carefully filling in the following pages in your

More information

P1 Chapter 3 :: Equations and Inequalities

P1 Chapter 3 :: Equations and Inequalities P1 Chapter 3 :: Equations and Inequalities jfrost@tiffin.kingston.sch.uk www.drfrostmaths.com @DrFrostMaths Last modified: 26 th August 2017 Use of DrFrostMaths for practice Register for free at: www.drfrostmaths.com/homework

More information

Projectile motion. Objectives. Assessment. Assessment. Equations. Physics terms 5/20/14. Identify examples of projectile motion.

Projectile motion. Objectives. Assessment. Assessment. Equations. Physics terms 5/20/14. Identify examples of projectile motion. Projectile motion Objectives Identify examples of projectile motion. Solve projectile motion problems. problems Graph the motion of a projectile. 1. Which of the events described below cannot be an example

More information

Worksheet for Exploration 6.1: An Operational Definition of Work

Worksheet for Exploration 6.1: An Operational Definition of Work Worksheet for Exploration 6.1: An Operational Definition of Work This Exploration allows you to discover how work causes changes in kinetic energy. Restart. Drag "handy" to the front and/or the back of

More information

Lab 7 Energy. What You Need To Know: Physics 225 Lab

Lab 7 Energy. What You Need To Know: Physics 225 Lab b Lab 7 Energy What You Need To Know: The Physics This lab is going to cover all of the different types of energy that you should be discussing in your lecture. Those energy types are kinetic energy, gravitational

More information

Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity?

Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity? Lab Exercise: Gravity (Report) Your Name & Your Lab Partner s Name Due Date Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity? 2. What are several advantage of

More information

3.2 A2 - Just Like Derivatives but Backwards

3.2 A2 - Just Like Derivatives but Backwards 3. A - Just Like Derivatives but Backwards The Definite Integral In the previous lesson, you saw that as the number of rectangles got larger and larger, the values of Ln, Mn, and Rn all grew closer and

More information

( ) ( ) = q o. T 12 = τ ln 2. RC Circuits. 1 e t τ. q t

( ) ( ) = q o. T 12 = τ ln 2. RC Circuits. 1 e t τ. q t Objectives: To explore the charging and discharging cycles of RC circuits with differing amounts of resistance and/or capacitance.. Reading: Resnick, Halliday & Walker, 8th Ed. Section. 27-9 Apparatus:

More information

2: SIMPLE HARMONIC MOTION

2: SIMPLE HARMONIC MOTION 2: SIMPLE HARMONIC MOTION Motion of a Mass Hanging from a Spring If you hang a mass from a spring, stretch it slightly, and let go, the mass will go up and down over and over again. That is, you will get

More information

Conservation of Momentum

Conservation of Momentum Learning Goals Conservation of Momentum After you finish this lab, you will be able to: 1. Use Logger Pro to analyze video and calculate position, velocity, and acceleration. 2. Use the equations for 2-dimensional

More information

Connecticut Common Core Algebra 1 Curriculum. Professional Development Materials. Unit 8 Quadratic Functions

Connecticut Common Core Algebra 1 Curriculum. Professional Development Materials. Unit 8 Quadratic Functions Connecticut Common Core Algebra 1 Curriculum Professional Development Materials Unit 8 Quadratic Functions Contents Activity 8.1.3 Rolling Ball CBR Activity 8.1.7 Galileo in Dubai Activity 8.2.3 Exploring

More information

( )( b + c) = ab + ac, but it can also be ( )( a) = ba + ca. Let s use the distributive property on a couple of

( )( b + c) = ab + ac, but it can also be ( )( a) = ba + ca. Let s use the distributive property on a couple of Factoring Review for Algebra II The saddest thing about not doing well in Algebra II is that almost any math teacher can tell you going into it what s going to trip you up. One of the first things they

More information

Experiment 13. Dilutions and Data Handling in a Spreadsheet rev 1/2013

Experiment 13. Dilutions and Data Handling in a Spreadsheet rev 1/2013 Absorbance Experiment 13 Dilutions and Data Handling in a Spreadsheet rev 1/2013 GOAL: This lab experiment will provide practice in making dilutions using pipets and introduce basic spreadsheet skills

More information

Physics 30S Unit 1 Kinematics

Physics 30S Unit 1 Kinematics Physics 30S Unit 1 Kinematics Mrs. Kornelsen Teulon Collegiate Institute 1 P a g e Grade 11 Physics Math Basics Answer the following questions. Round all final answers to 2 decimal places. Algebra 1. Rearrange

More information

Chapter: Basic Physics-Motion

Chapter: Basic Physics-Motion Chapter: Basic Physics-Motion The Big Idea Speed represents how quickly an object is moving through space. Velocity is speed with a direction, making it a vector quantity. If an object s velocity changes

More information

Determination of Density 1

Determination of Density 1 Introduction Determination of Density 1 Authors: B. D. Lamp, D. L. McCurdy, V. M. Pultz and J. M. McCormick* Last Update: February 1, 2013 Not so long ago a statistical data analysis of any data set larger

More information

11.3 Solving Radical Equations

11.3 Solving Radical Equations Locker LESSON 11. Solving Radical Equations Common Core Math Standards The student is expected to: A-REI. Solve simple rational and radical equations in one variable, and give examples showing how extraneous

More information

Newton s Second Law. Computer with Capstone software, motion detector, PVC pipe, low friction cart, track, meter stick.

Newton s Second Law. Computer with Capstone software, motion detector, PVC pipe, low friction cart, track, meter stick. F = m a F = m a Newton s Second Law 1 Object To investigate, understand and verify the relationship between an object s acceleration and the net force acting on that object as well as further understand

More information

Gravity: How fast do objects fall? Teacher Advanced Version (Grade Level: 8 12)

Gravity: How fast do objects fall? Teacher Advanced Version (Grade Level: 8 12) Gravity: How fast do objects fall? Teacher Advanced Version (Grade Level: 8 12) *** Experiment with Audacity and Excel to be sure you know how to do what s needed for the lab*** Kinematics is the study

More information

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15 LAB I. 2D MOTION 15 Lab I 2D Motion 1 Introduction In this lab we will examine simple two-dimensional motion without acceleration. Motion in two dimensions can often be broken up into two separate one-dimensional

More information

AP Calculus AB. Integration. Table of Contents

AP Calculus AB. Integration.  Table of Contents AP Calculus AB Integration 2015 11 24 www.njctl.org Table of Contents click on the topic to go to that section Riemann Sums Trapezoid Approximation Area Under a Curve (The Definite Integral) Antiderivatives

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

Unit 6: Quadratics. Contents

Unit 6: Quadratics. Contents Unit 6: Quadratics Contents Animated gif Program...6-3 Setting Bounds...6-9 Exploring Quadratic Equations...6-17 Finding Zeros by Factoring...6-3 Finding Zeros Using the Quadratic Formula...6-41 Modeling:

More information

Math 112 Group Activity: The Vertical Speed of a Shell

Math 112 Group Activity: The Vertical Speed of a Shell Name: Section: Math 112 Group Activity: The Vertical Speed of a Shell A shell is fired straight up by a mortar. The graph below shows its altitude as a function of time. 400 300 altitude (in feet) 200

More information

Basic Math Problems Unit 1

Basic Math Problems Unit 1 Basic Math Problems Unit 1 Name Period Using fractions: When you are using fractions in science, we need to convert them into decimals. You can do this by dividing the top number by the bottom number.

More information

Lab 8 Impulse and Momentum

Lab 8 Impulse and Momentum b Lab 8 Impulse and Momentum Physics 211 Lab What You Need To Know: The Physics Today we will deal with two physical concepts: impulse and momentum. For both, it turns out to be harder to say what they

More information

LECSS Physics 11 Introduction to Physics and Math Methods 1 Revised 8 September 2013 Don Bloomfield

LECSS Physics 11 Introduction to Physics and Math Methods 1 Revised 8 September 2013 Don Bloomfield LECSS Physics 11 Introduction to Physics and Math Methods 1 Physics 11 Introduction to Physics and Math Methods In this introduction, you will get a more in-depth overview of what Physics is, as well as

More information

MACROLAB LESSON 1 Time, Speed, and Distance Teacher Guide

MACROLAB LESSON 1 Time, Speed, and Distance Teacher Guide MACROLAB LESSON 1 Time, Speed, and Distance Teacher Guide Overview Students will use Sphero to show that there is a linear relationship between time, speed, and distance. They will program Sphero to move

More information

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15 LAB I. 2D MOTION 15 Lab I 2D Motion 1 Introduction In this lab we will examine simple two-dimensional motion without acceleration. Motion in two dimensions can often be broken up into two separate one-dimensional

More information

Objectives. Materials

Objectives. Materials Activity 8 Exploring Infinite Series Objectives Identify a geometric series Determine convergence and sum of geometric series Identify a series that satisfies the alternating series test Use a graphing

More information

Adding and Subtracting Terms

Adding and Subtracting Terms Adding and Subtracting Terms 1.6 OBJECTIVES 1.6 1. Identify terms and like terms 2. Combine like terms 3. Add algebraic expressions 4. Subtract algebraic expressions To find the perimeter of (or the distance

More information

LABORATORY 1: KINEMATICS written by Melissa J. Wafer '95 June 1993

LABORATORY 1: KINEMATICS written by Melissa J. Wafer '95 June 1993 LABORATORY 1: KINEMATICS written by Melissa J. Wafer '95 June 1993 The purpose of this exercise is to re-enforce what you have learned about kinematics in class and to familiarize you with computer resources

More information

Solving Quadratic & Higher Degree Equations

Solving Quadratic & Higher Degree Equations Chapter 7 Solving Quadratic & Higher Degree Equations Sec 1. Zero Product Property Back in the third grade students were taught when they multiplied a number by zero, the product would be zero. In algebra,

More information

A π day celebration! Everyone s favorite geometric constant!

A π day celebration! Everyone s favorite geometric constant! A π day celebration! Everyone s favorite geometric constant! Math Circle March 10, 2019 The circumference of a circle is another word for its perimeter. A circle s circumference is proportional to its

More information

Systematic Uncertainty Max Bean John Jay College of Criminal Justice, Physics Program

Systematic Uncertainty Max Bean John Jay College of Criminal Justice, Physics Program Systematic Uncertainty Max Bean John Jay College of Criminal Justice, Physics Program When we perform an experiment, there are several reasons why the data we collect will tend to differ from the actual

More information

Sequences and infinite series

Sequences and infinite series Sequences and infinite series D. DeTurck University of Pennsylvania March 29, 208 D. DeTurck Math 04 002 208A: Sequence and series / 54 Sequences The lists of numbers you generate using a numerical method

More information

DISCRETE RANDOM VARIABLES EXCEL LAB #3

DISCRETE RANDOM VARIABLES EXCEL LAB #3 DISCRETE RANDOM VARIABLES EXCEL LAB #3 ECON/BUSN 180: Quantitative Methods for Economics and Business Department of Economics and Business Lake Forest College Lake Forest, IL 60045 Copyright, 2011 Overview

More information

Unit 01 Motion with constant velocity. What we asked about

Unit 01 Motion with constant velocity. What we asked about Unit 01 Motion with constant velocity Outline for this unit: Displacement, Velocity: numerically and graphically Mechanics Lecture 1, Slide 1 What we asked about Would like to see more practice problems

More information

Change & Rates of Change

Change & Rates of Change Name: Date: Per: Change & Rates of Change Two concepts that physicist tend to trouble themselves over more than any others are how much a thing changes and at what rate that something changed. Much of

More information

The area under a curve. Today we (begin to) ask questions of the type: How much area sits under the graph of f(x) = x 2 over the interval [ 1, 2]?

The area under a curve. Today we (begin to) ask questions of the type: How much area sits under the graph of f(x) = x 2 over the interval [ 1, 2]? The area under a curve. Today we (begin to) ask questions of the type: How much area sits under the graph of f(x) = x 2 over the interval [ 1, 2]? Before we work on How we will figure out Why velocity

More information

LAB 4: FORCE AND MOTION

LAB 4: FORCE AND MOTION Lab 4 - Force & Motion 37 Name Date Partners LAB 4: FORCE AND MOTION A vulgar Mechanik can practice what he has been taught or seen done, but if he is in an error he knows not how to find it out and correct

More information

CLASS NOTES: BUSINESS CALCULUS

CLASS NOTES: BUSINESS CALCULUS CLASS NOTES: BUSINESS CALCULUS These notes can be thought of as the logical skeleton of my lectures, although they will generally contain a fuller exposition of concepts but fewer examples than my lectures.

More information

Dynamics. Newton s First Two Laws of Motion. A Core Learning Goals Activity for Science and Mathematics

Dynamics. Newton s First Two Laws of Motion. A Core Learning Goals Activity for Science and Mathematics CoreModels Dynamics Newton s First Two Laws of Motion A Core Learning Goals Activity for Science and Mathematics Summary: Students will investigate the first and second laws of motion in laboratory activities.

More information

Looking Ahead to Chapter 10

Looking Ahead to Chapter 10 Looking Ahead to Chapter Focus In Chapter, you will learn about polynomials, including how to add, subtract, multiply, and divide polynomials. You will also learn about polynomial and rational functions.

More information

Looking hard at algebraic identities.

Looking hard at algebraic identities. Looking hard at algebraic identities. Written by Alastair Lupton and Anthony Harradine. Seeing Double Version 1.00 April 007. Written by Anthony Harradine and Alastair Lupton. Copyright Harradine and Lupton

More information

Confidence intervals

Confidence intervals Confidence intervals We now want to take what we ve learned about sampling distributions and standard errors and construct confidence intervals. What are confidence intervals? Simply an interval for which

More information

AP Physics 1 Summer Assignment

AP Physics 1 Summer Assignment AP Physics 1 Summer Assignment Gaithersburg High School Mr. Schultz Welcome to AP Physics 1! This is a college level physics course that is fun, interesting and challenging on a level you ve not yet experienced.

More information

Prealgebra. Edition 5

Prealgebra. Edition 5 Prealgebra Edition 5 Prealgebra, Edition 5 2009, 2007, 2005, 2004, 2003 Michelle A. Wyatt (M A Wyatt) 2009, Edition 5 Michelle A. Wyatt, author Special thanks to Garry Knight for many suggestions for the

More information