In Chapter 17, I delve into probability in a semiformal way, and introduce distributions

Size: px
Start display at page:

Download "In Chapter 17, I delve into probability in a semiformal way, and introduce distributions"

Transcription

1 IN THIS CHAPTER»» Understanding the beta version»» Pursuing Poisson»» Grappling with gamma»» Speaking eponentially Appendi A More About Probability In Chapter 7, I delve into probability in a semiformal way, and introduce distributions of random variables. The binomial distribution is the starting point. In this chapter, I eamine additional distributions. One of the symbols on the pages of this book (and other books in the For Dummies series) lets you know that technical stuff follows. It might have been a good idea to hang that symbol above this chapter s title. So here s a small note of caution: Some mathematics follows. I put the math in to help you understand what you re doing when you work with the arguments of the R functions in this chapter. Are these functions on the esoteric side? Well... yes. Will you ever have occasion to use them? Well... you just might. Discovering Beta This distribution connects with the binomial distribution, which I discuss in Chapter 7. The beta distribution (not to be confused with beta, the probability of a Type 2 error) is a sort of chameleon in the world of distributions. It takes on a wide variety of appearances, depending on the circumstances. I won t give you all the mathematics behind the beta distribution, because the full treatment involves calculus. APPENDIX A More About Probability INDD Trim size: in 9.25 in February 4, 207 3:4 AM

2 The connection with the binomial is this: In the binomial, the random variable is the number of successes in N trials with p as the probability of a success. N and p are constants. In the beta distribution, the random variable is the probability of a success, with N and the number of successes as constants. Why is this useful? In the real world, you usually don t know the value of p, and you re trying to find it. Typically, you conduct a study, find the number of successes in a set of trials, and then you have to estimate p. Beta shows you the likelihood of possible values of p for the number of trials and successes in your study. Some of the math is complicated, but I can at least show you the rule that generates the density function for N trials with r successes, when N and r are whole numbers: f, r N N! r! N r! r N r The vertical bar in the parentheses on the left means given that. So this density function is for specific values of N and r. Calculus enters the picture when N and r aren t whole numbers. (Density function? Given that? See Chapter 7.) To give you an idea of what this function looks like, I used R s dbeta() function to generate and graph the density function for four successes in ten trials. The dbeta() function can take five arguments, of which only three concern us here: dbeta(, shape, shape2) The first argument is in the equation. The documentation defines shape and shape2 as non-negative parameters of the beta distribution. In English, that means the number of successes (shape) and the number of failures (shape2) in the eample I m working through. For this eample, then, it s dbeta(, 4, 6) once I specify what is. Mathematicians, in fact, write the equation for the density function in terms of shape and shape2, but they refer to shape as α and shape2 as β, which makes the density function! f!! 2 Statistical Analysis with R For Dummies INDD 2 Trim size: in 9.25 in February 4, 207 3:4 AM

3 To graph this member of the beta distribution family I first create a vector of -values.values <- seq(0,.95,.0) The ggplot code is ggplot(null,aes(=.values,y=dbeta(.values,4,6)))+ geom_line() Figure A- shows the graph. Each value on the -ais, remember is a possible value for the probability of a success. The curve shows probability density. As I point out in Chapters 8 and 7, probability density is what makes the area under the curve correspond to probability. A glance at the graph shows that the curve s maimum point is at.4, which is what you would epect for four successes in ten trials. FIGURE A-: The Beta Density function for four successes in ten trials. Suppose I toss a die (one of a pair of dice), and I define a success as any toss that results in a 3. I assume I m tossing a fair die, so I assume that p pr 3 / 6. Suppose I toss a die ten times and get four 3s. How good does that fair-die assumption look? The graph in Figure A- gives you a hint: The area to the left of.6667 (the decimal equivalent of /6) is a pretty small proportion of the total area, meaning that the probability that p is /6 or less is pretty low. APPENDIX A More About Probability INDD 3 Trim size: in 9.25 in February 4, 207 3:4 AM

4 Now, if you have to go to all the trouble of creating a graph, and then guesstimate proportions of area to come with an answer like pretty low, you re doing a whole lot of work for very little return. Fortunately, R has a better way: the pbeta() function. Supply p, the number of successes, the number of failures, and lower.tail = TRUE, and here s what you get: > pbeta(/6,4,6,lower.tail=true) [] If you ve obtained four successes in ten tosses and would like to know the 95 per cent confidence limits of p, you d use qbeta(): > qbeta(c(.025,.975),4,6) [] The first argument is the vector of probabilities for the lower and upper limits, the second argument is the number of successes and the third is the number of failures. If you had to generate, say, three random numbers from this beta distribution (although I don t know why you would): > rbeta(3,4,6) [] Poisson If you have the kind of process that produces a binomial distribution, and you have an etremely large number of trials and a very small number of successes, the Poisson distribution approimates the binomial. The equation of the Poisson is pr( ) e! In the numerator, μ is the mean number of successes in the trials, and e is (and infinitely more decimal places), a constant near and dear to the hearts of mathematicians. (See Chapter 6.) Here s an eample. FarKlempt Robotics, Inc., produces a universal joint for its robots elbows. The production process is under strict computer control, so that the probability a joint is defective is.00. What is the probability that, in a sample 4 Statistical Analysis with R For Dummies INDD 4 Trim size: in 9.25 in February 4, 207 3:4 AM

5 of,000, one joint is defective? What s the probability that two are defective? Three? Named after the 9th-century mathematician Siméon-Denis Poisson, this distribution is computationally easier than the binomial or at least it was back when mathematicians had no computational aids. With R, you can easily use dbinom() to do the binomial calculations. Then why bother to bring up this distribution at all? Because it s an easy segué from the binomial to this important distribution, which I discuss in greater detail in Chapter 8. First, I apply the Poisson distribution to the FarKlempt eample. If N 000, the mean is.00 and N (See Chapter 7 for an eplanation of N.) Now for the Poisson. The probability that one joint in a sample of,000 is defective is: pr() e! !. 368 For two defective joints in,000, it s pr( 2) e! ! And for three defective joints in,000: pr( 3) e! ! As you read this section, it may seem odd to refer to a defective item as a success it s just a way of labeling a specific event. R s dpois() function does all this in one fell swoop: dpois(c(,2,3),) Or if you want to look really cool: dpois(:3,) In either case, the first argument is the -values and the second argument is μ. APPENDIX A More About Probability INDD 5 Trim size: in 9.25 in February 4, 207 3:4 AM

6 Applying either format yields > dpois(:3,) [] In the R documentation for dpois() and the other Poisson functions, the second argument is called lambda, the Greek letter (λ) that many mathematicians use for that component of the Poisson distribution. So how close is the Poisson approimation to the binomial for this eample? > dbinom(:3,000,.00) [] Pretty close! Although the Poisson s usefulness as an approimation is outdated, it has taken on a life of its own. Phenomena as widely disparate as reaction times in psychology eperiments, degeneration of radioactive substances, and scores in professional hockey games seem to fit Poisson distributions. This is why business analysts and scientific researchers like to base models on this distribution. ( Base models on? What does that mean? I tell you all about modeling in Chapter 8.) Working with Gamma You might recall from Chapter 8 that the number of ways of arranging N objects in a sequence is N! ( N factorial ). You might also recall that N! N N N 2 2. Obviously, the factorial only works for whole numbers, right? The gamma function Not so fast. Mathematicians (some pretty famous ones) have etended the factorial concept to include non-integers and even negative numbers (which gets very hairy). This etension is called the gamma function. When gamma s argument is a positive whole number let s call it N the result is N!. Otherwise, gamma returns the result of a calculus-based equation. Rather than go into all the calculus, I ll just give you an eample: 4! 24 and 5! 20. So the factorial of 4.3 (whatever that would mean) should be somewhere 6 Statistical Analysis with R For Dummies INDD 6 Trim size: in 9.25 in February 4, 207 3:4 AM

7 between 24 and 20. Because of the N I just mentioned, you d find this factorial by letting gamma loose on 5.3 (rather than 4.3). And gamma(5.3) = You can verify this in R: > gamma(5.3) [] The gamma distribution All the discussion in the preceding section is mostly within the realm of theoretical mathematics. Things get more interesting (and more useful) when you tie gamma to a probability distribution. This marriage is called the gamma distribution. The gamma distribution is related to the Poisson distribution in the same way the negative binomial distribution is related to the binomial. The negative binomial tells you the number of trials until a specified number of successes in a binomial distribution. The gamma distribution tells you how many samples you go through to find a specified number of successes in a Poisson distribution. Each sample can be a set of objects (as in the FarKlempt Robotics universal joint eample), a physical area, or a time interval. The probability density function for the gamma distribution is f e! Again, this works when α is a whole number. If it s not, you guessed it calculus. (By the way, when this function has only whole-number values of α, it s called the Erlang distribution, just in case that ever comes up in conversation.) The letter e, once again, is the constant I mention earlier. Don t worry about the eotic-looking math. As long as you understand what each symbol means, you re in business. R does the heavy lifting for you. So here s what the symbols mean. For the FarKlempt Robotics eample, α is the number of successes and β corresponds to μ in the Poisson distribution. The variable tracks the number of samples. Thus, if you re interested in the probability density associated with finding the second success in the third sample, is 3, α is 2, and β is if the average number of successes per sample (of,000) is. (Where does come from, again? That s,000 universal joints per sample multiplied by.00, the probability of producing a defective one.) APPENDIX A More About Probability INDD 7 Trim size: in 9.25 in February 4, 207 3:4 AM

8 To determine probability, you have to work with area under the density function. This brings me to the R function for the gamma distribution s density function. If you re thinking it s called dgamma(), you re right. Like the functions for the beta distribution, this one takes five arguments, of which I ll just consider the first three. To help you visualize what s going on, I use dgamma() to plot the density function. Specifically, I show the density function for finding the second success in a range of samples with an average of success per sample. I begin with a vector for the range of samples:.values <- seq(,5) To calculate the densities for these values dgamma(.values,2,) The first argument is the values I m finding the densities for, the second is the number of successes I m interested in, and the third is the average number of successes per sample. That s the function I put inside ggplot for the aesthetic mapping to y: ggplot(null, aes(=.values,y=dgamma(.values,2,))) + geom_line()+ scale continuous(breaks=.values) The first argument to ggplot, NULL, indicates that I m not using a data frame. The third statement adds the vector values to the -ais. The result is Figure A-2. In real life you work with probabilities, not densities. So the probability of finding the second success by the third sample is the area underneath the density function to the left of 3. Figure A-2 shows that s quite a bit of area. Eactly how much? That s up to pgamma(): > pgamma(3,2,) [] The first argument is the number of samples, the second is the number of successes, and the third is the average number of successes per sample. 8 Statistical Analysis with R For Dummies INDD 8 Trim size: in 9.25 in February 4, 207 3:4 AM

9 FIGURE A-2: The density function for gamma, with number of successes = 2 and average of successes per sample =. The result indicates about an 80 percent chance of finding the second defective joint (that s a success, remember) by the third sample, with an average of one defective joint per sample. Eponential In the gamma distribution, if you have the eponential distribution. This gives the probability that it takes a specified number of samples to get to the first success. What does the density function look like? Ecuse me... I m about to go mathematical on you for a moment. Here, once again, is the density function for gamma: f e! If, it looks like this: f e R provides a set of functions for dealing with the eponential distribution (dep(), pep(), qep(), and rep()). I d use dep(), the.values vector and ggplot() to visualize the density function for you, but it looks quite a bit (although not eactly) like Figure A-2. I leave that as an eercise for you. APPENDIX A More About Probability INDD 9 Trim size: in 9.25 in February 4, 207 3:4 AM

10 If you want to do that eercise, work with dep(.values,) Continuing with the universal joint eample, I use pep() to calculate the probability of finding the first defective joint by the third sample. This function can take four arguments, of which I discuss just the first three: pep(q, rate =, lower.tail = TRUE) In the contet of our eample, the first argument is the number of samples. The second argument corresponds to in the density function. This means that if the average number of successes per sample is two (instead of one, as in this eample), the rate is 0.5. The third argument is the default that specifies returning the area to the left of under the eponential distribution s density function. Because I m working with the default I can omit lower.tail, and the probability is > pep(3,) [] The default for the second argument also just happens to be the value in this eample, so I could have done it this way: > pep(3) [] but that s only for this eample. So that s a 95 percent chance of finding the first defective joint by the third sample, if the average number of successes per sample is one. 0 Statistical Analysis with R For Dummies INDD 0 Trim size: in 9.25 in February 4, 207 3:4 AM

In this unit we will study exponents, mathematical operations on polynomials, and factoring.

In this unit we will study exponents, mathematical operations on polynomials, and factoring. GRADE 0 MATH CLASS NOTES UNIT E ALGEBRA In this unit we will study eponents, mathematical operations on polynomials, and factoring. Much of this will be an etension of your studies from Math 0F. This unit

More information

Introduction. So, why did I even bother to write this?

Introduction. So, why did I even bother to write this? Introduction This review was originally written for my Calculus I class, but it should be accessible to anyone needing a review in some basic algebra and trig topics. The review contains the occasional

More information

ACCUPLACER MATH 0310

ACCUPLACER MATH 0310 The University of Teas at El Paso Tutoring and Learning Center ACCUPLACER MATH 00 http://www.academics.utep.edu/tlc MATH 00 Page Linear Equations Linear Equations Eercises 5 Linear Equations Answer to

More information

Math 119 Main Points of Discussion

Math 119 Main Points of Discussion Math 119 Main Points of Discussion 1. Solving equations: When you have an equation like y = 3 + 5, you should see a relationship between two variables, and y. The graph of y = 3 + 5 is the picture of this

More information

Steve Smith Tuition: Maths Notes

Steve Smith Tuition: Maths Notes Maths Notes : Discrete Random Variables Version. Steve Smith Tuition: Maths Notes e iπ + = 0 a + b = c z n+ = z n + c V E + F = Discrete Random Variables Contents Intro The Distribution of Probabilities

More information

Intermediate Algebra. Gregg Waterman Oregon Institute of Technology

Intermediate Algebra. Gregg Waterman Oregon Institute of Technology Intermediate Algebra Gregg Waterman Oregon Institute of Technology c August 2013 Gregg Waterman This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.

More information

Chapter 4: An Introduction to Probability and Statistics

Chapter 4: An Introduction to Probability and Statistics Chapter 4: An Introduction to Probability and Statistics 4. Probability The simplest kinds of probabilities to understand are reflected in everyday ideas like these: (i) if you toss a coin, the probability

More information

Central Limit Theorem and the Law of Large Numbers Class 6, Jeremy Orloff and Jonathan Bloom

Central Limit Theorem and the Law of Large Numbers Class 6, Jeremy Orloff and Jonathan Bloom Central Limit Theorem and the Law of Large Numbers Class 6, 8.5 Jeremy Orloff and Jonathan Bloom Learning Goals. Understand the statement of the law of large numbers. 2. Understand the statement of the

More information

Chapter 8: An Introduction to Probability and Statistics

Chapter 8: An Introduction to Probability and Statistics Course S3, 200 07 Chapter 8: An Introduction to Probability and Statistics This material is covered in the book: Erwin Kreyszig, Advanced Engineering Mathematics (9th edition) Chapter 24 (not including

More information

Polynomial Functions of Higher Degree

Polynomial Functions of Higher Degree SAMPLE CHAPTER. NOT FOR DISTRIBUTION. 4 Polynomial Functions of Higher Degree Polynomial functions of degree greater than 2 can be used to model data such as the annual temperature fluctuations in Daytona

More information

1 Normal Distribution.

1 Normal Distribution. Normal Distribution.. Introduction A Bernoulli trial is simple random experiment that ends in success or failure. A Bernoulli trial can be used to make a new random experiment by repeating the Bernoulli

More information

Do we have any graphs that behave in this manner that we have already studied?

Do we have any graphs that behave in this manner that we have already studied? Boise State, 4 Eponential functions: week 3 Elementary Education As we have seen, eponential functions describe events that grow (or decline) at a constant percent rate, such as placing capitol in a savings

More information

Basic methods to solve equations

Basic methods to solve equations Roberto s Notes on Prerequisites for Calculus Chapter 1: Algebra Section 1 Basic methods to solve equations What you need to know already: How to factor an algebraic epression. What you can learn here:

More information

STARTING WITH CONFIDENCE

STARTING WITH CONFIDENCE STARTING WITH CONFIDENCE A- Level Maths at Budmouth Name: This booklet has been designed to help you to bridge the gap between GCSE Maths and AS Maths. Good mathematics is not about how many answers you

More information

Algebra & Trig Review

Algebra & Trig Review Algebra & Trig Review 1 Algebra & Trig Review This review was originally written for my Calculus I class, but it should be accessible to anyone needing a review in some basic algebra and trig topics. The

More information

1 Continuity and Limits of Functions

1 Continuity and Limits of Functions Week 4 Summary This week, we will move on from our discussion of sequences and series to functions. Even though sequences and functions seem to be very different things, they very similar. In fact, we

More information

Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2:

Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2: Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2: 03 17 08 3 All about lines 3.1 The Rectangular Coordinate System Know how to plot points in the rectangular coordinate system. Know the

More information

AP Calculus AB Summer Assignment

AP Calculus AB Summer Assignment AP Calculus AB Summer Assignment Name: When you come back to school, it is my epectation that you will have this packet completed. You will be way behind at the beginning of the year if you haven t attempted

More information

Chapter 1 Review of Equations and Inequalities

Chapter 1 Review of Equations and Inequalities Chapter 1 Review of Equations and Inequalities Part I Review of Basic Equations Recall that an equation is an expression with an equal sign in the middle. Also recall that, if a question asks you to solve

More information

Chapter 14. From Randomness to Probability. Copyright 2012, 2008, 2005 Pearson Education, Inc.

Chapter 14. From Randomness to Probability. Copyright 2012, 2008, 2005 Pearson Education, Inc. Chapter 14 From Randomness to Probability Copyright 2012, 2008, 2005 Pearson Education, Inc. Dealing with Random Phenomena A random phenomenon is a situation in which we know what outcomes could happen,

More information

AP Calculus AB Summer Assignment

AP Calculus AB Summer Assignment AP Calculus AB Summer Assignment Name: When you come back to school, you will be epected to have attempted every problem. These skills are all different tools that you will pull out of your toolbo this

More information

Math Fundamentals for Statistics I (Math 52) Unit 7: Connections (Graphs, Equations and Inequalities)

Math Fundamentals for Statistics I (Math 52) Unit 7: Connections (Graphs, Equations and Inequalities) Math Fundamentals for Statistics I (Math 52) Unit 7: Connections (Graphs, Equations and Inequalities) By Scott Fallstrom and Brent Pickett The How and Whys Guys This work is licensed under a Creative Commons

More information

SOLVING QUADRATIC EQUATIONS USING GRAPHING TOOLS

SOLVING QUADRATIC EQUATIONS USING GRAPHING TOOLS GRADE PRE-CALCULUS UNIT A: QUADRATIC EQUATIONS (ALGEBRA) CLASS NOTES. A definition of Algebra: A branch of mathematics which describes basic arithmetic relations using variables.. Algebra is just a language.

More information

Class 26: review for final exam 18.05, Spring 2014

Class 26: review for final exam 18.05, Spring 2014 Probability Class 26: review for final eam 8.05, Spring 204 Counting Sets Inclusion-eclusion principle Rule of product (multiplication rule) Permutation and combinations Basics Outcome, sample space, event

More information

Course. Print and use this sheet in conjunction with MathinSite s Maclaurin Series applet and worksheet.

Course. Print and use this sheet in conjunction with MathinSite s Maclaurin Series applet and worksheet. Maclaurin Series Learning Outcomes After reading this theory sheet, you should recognise the difference between a function and its polynomial epansion (if it eists!) understand what is meant by a series

More information

Random Variable. Discrete Random Variable. Continuous Random Variable. Discrete Random Variable. Discrete Probability Distribution

Random Variable. Discrete Random Variable. Continuous Random Variable. Discrete Random Variable. Discrete Probability Distribution Random Variable Theoretical Probability Distribution Random Variable Discrete Probability Distributions A variable that assumes a numerical description for the outcome of a random eperiment (by chance).

More information

Confidence Intervals. - simply, an interval for which we have a certain confidence.

Confidence Intervals. - simply, an interval for which we have a certain confidence. Confidence Intervals I. What are confidence intervals? - simply, an interval for which we have a certain confidence. - for example, we are 90% certain that an interval contains the true value of something

More information

Properties of Arithmetic

Properties of Arithmetic Excerpt from "Prealgebra" 205 AoPS Inc. 4 6 7 4 5 8 22 23 5 7 0 Arithmetic is being able to count up to twenty without taking o your shoes. Mickey Mouse CHAPTER Properties of Arithmetic. Why Start with

More information

Solving Equations. Lesson Fifteen. Aims. Context. The aim of this lesson is to enable you to: solve linear equations

Solving Equations. Lesson Fifteen. Aims. Context. The aim of this lesson is to enable you to: solve linear equations Mathematics GCSE Module Four: Basic Algebra Lesson Fifteen Aims The aim of this lesson is to enable you to: solve linear equations solve linear equations from their graph solve simultaneous equations from

More information

L06. Chapter 6: Continuous Probability Distributions

L06. Chapter 6: Continuous Probability Distributions L06 Chapter 6: Continuous Probability Distributions Probability Chapter 6 Continuous Probability Distributions Recall Discrete Probability Distributions Could only take on particular values Continuous

More information

Note that we are looking at the true mean, μ, not y. The problem for us is that we need to find the endpoints of our interval (a, b).

Note that we are looking at the true mean, μ, not y. The problem for us is that we need to find the endpoints of our interval (a, b). Confidence Intervals 1) What are confidence intervals? Simply, an interval for which we have a certain confidence. For example, we are 90% certain that an interval contains the true value of something

More information

Example 1: What do you know about the graph of the function

Example 1: What do you know about the graph of the function Section 1.5 Analyzing of Functions In this section, we ll look briefly at four types of functions: polynomial functions, rational functions, eponential functions and logarithmic functions. Eample 1: What

More information

CHAPTER 4 VECTORS. Before we go any further, we must talk about vectors. They are such a useful tool for

CHAPTER 4 VECTORS. Before we go any further, we must talk about vectors. They are such a useful tool for CHAPTER 4 VECTORS Before we go any further, we must talk about vectors. They are such a useful tool for the things to come. The concept of a vector is deeply rooted in the understanding of physical mechanics

More information

C. Finding roots of trinomials: 1st Example: x 2 5x = 14 x 2 5x 14 = 0 (x 7)(x + 2) = 0 Answer: x = 7 or x = -2

C. Finding roots of trinomials: 1st Example: x 2 5x = 14 x 2 5x 14 = 0 (x 7)(x + 2) = 0 Answer: x = 7 or x = -2 AP Calculus Students: Welcome to AP Calculus. Class begins in approimately - months. In this packet, you will find numerous topics that were covered in your Algebra and Pre-Calculus courses. These are

More information

ACCUPLACER MATH 0311 OR MATH 0120

ACCUPLACER MATH 0311 OR MATH 0120 The University of Teas at El Paso Tutoring and Learning Center ACCUPLACER MATH 0 OR MATH 00 http://www.academics.utep.edu/tlc MATH 0 OR MATH 00 Page Factoring Factoring Eercises 8 Factoring Answer to Eercises

More information

6.4 graphs OF logarithmic FUnCTIOnS

6.4 graphs OF logarithmic FUnCTIOnS SECTION 6. graphs of logarithmic functions 9 9 learning ObjeCTIveS In this section, ou will: Identif the domain of a logarithmic function. Graph logarithmic functions. 6. graphs OF logarithmic FUnCTIOnS

More information

Expected Value II. 1 The Expected Number of Events that Happen

Expected Value II. 1 The Expected Number of Events that Happen 6.042/18.062J Mathematics for Computer Science December 5, 2006 Tom Leighton and Ronitt Rubinfeld Lecture Notes Expected Value II 1 The Expected Number of Events that Happen Last week we concluded by showing

More information

Descriptive Statistics (And a little bit on rounding and significant digits)

Descriptive Statistics (And a little bit on rounding and significant digits) Descriptive Statistics (And a little bit on rounding and significant digits) Now that we know what our data look like, we d like to be able to describe it numerically. In other words, how can we represent

More information

INFINITE SUMS. In this chapter, let s take that power to infinity! And it will be equally natural and straightforward.

INFINITE SUMS. In this chapter, let s take that power to infinity! And it will be equally natural and straightforward. EXPLODING DOTS CHAPTER 7 INFINITE SUMS In the previous chapter we played with the machine and saw the power of that machine to make advanced school algebra so natural and straightforward. In this chapter,

More information

MA 1125 Lecture 15 - The Standard Normal Distribution. Friday, October 6, Objectives: Introduce the standard normal distribution and table.

MA 1125 Lecture 15 - The Standard Normal Distribution. Friday, October 6, Objectives: Introduce the standard normal distribution and table. MA 1125 Lecture 15 - The Standard Normal Distribution Friday, October 6, 2017. Objectives: Introduce the standard normal distribution and table. 1. The Standard Normal Distribution We ve been looking at

More information

Introduction to Exponents and Logarithms

Introduction to Exponents and Logarithms Mathematics Learning Centre Introduction to Eponents and Logarithms Christopher Thomas c 998 University of Sydney Acknowledgements Parts of section of this booklet rely a great deal on the presentation

More information

Section 5.4. Ken Ueda

Section 5.4. Ken Ueda Section 5.4 Ken Ueda Students seem to think that being graded on a curve is a positive thing. I took lasers 101 at Cornell and got a 92 on the exam. The average was a 93. I ended up with a C on the test.

More information

CS 361: Probability & Statistics

CS 361: Probability & Statistics October 17, 2017 CS 361: Probability & Statistics Inference Maximum likelihood: drawbacks A couple of things might trip up max likelihood estimation: 1) Finding the maximum of some functions can be quite

More information

Edexcel AS and A Level Mathematics Year 1/AS - Pure Mathematics

Edexcel AS and A Level Mathematics Year 1/AS - Pure Mathematics Year Maths A Level Year - Tet Book Purchase In order to study A Level Maths students are epected to purchase from the school, at a reduced cost, the following tetbooks that will be used throughout their

More information

Module 8 Probability

Module 8 Probability Module 8 Probability Probability is an important part of modern mathematics and modern life, since so many things involve randomness. The ClassWiz is helpful for calculating probabilities, especially those

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

Slope Fields: Graphing Solutions Without the Solutions

Slope Fields: Graphing Solutions Without the Solutions 8 Slope Fields: Graphing Solutions Without the Solutions Up to now, our efforts have been directed mainly towards finding formulas or equations describing solutions to given differential equations. Then,

More information

CS1800: Sequences & Sums. Professor Kevin Gold

CS1800: Sequences & Sums. Professor Kevin Gold CS1800: Sequences & Sums Professor Kevin Gold Moving Toward Analysis of Algorithms Today s tools help in the analysis of algorithms. We ll cover tools for deciding what equation best fits a sequence of

More information

3.1 Graphs of Polynomials

3.1 Graphs of Polynomials 3.1 Graphs of Polynomials Three of the families of functions studied thus far: constant, linear and quadratic, belong to a much larger group of functions called polynomials. We begin our formal study of

More information

1 Rational Exponents and Radicals

1 Rational Exponents and Radicals Introductory Algebra Page 1 of 11 1 Rational Eponents and Radicals 1.1 Rules of Eponents The rules for eponents are the same as what you saw earlier. Memorize these rules if you haven t already done so.

More information

STA Module 4 Probability Concepts. Rev.F08 1

STA Module 4 Probability Concepts. Rev.F08 1 STA 2023 Module 4 Probability Concepts Rev.F08 1 Learning Objectives Upon completing this module, you should be able to: 1. Compute probabilities for experiments having equally likely outcomes. 2. Interpret

More information

Where now? Machine Learning and Bayesian Inference

Where now? Machine Learning and Bayesian Inference Machine Learning and Bayesian Inference Dr Sean Holden Computer Laboratory, Room FC6 Telephone etension 67 Email: sbh@clcamacuk wwwclcamacuk/ sbh/ Where now? There are some simple take-home messages from

More information

Calculus I. Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed.

Calculus I. Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed. This document was written and copyrighted by Paul Dawkins. Use of this document and its online version is governed by the Terms and Conditions of Use located at. The online version of this document is

More information

CSCI2244-Randomness and Computation First Exam with Solutions

CSCI2244-Randomness and Computation First Exam with Solutions CSCI2244-Randomness and Computation First Exam with Solutions March 1, 2018 Each part of each problem is worth 5 points. There are actually two parts to Problem 2, since you are asked to compute two probabilities.

More information

CALCULUS I. Integrals. Paul Dawkins

CALCULUS I. Integrals. Paul Dawkins CALCULUS I Integrals Paul Dawkins Table of Contents Preface... ii Integrals... Introduction... Indefinite Integrals... Computing Indefinite Integrals... Substitution Rule for Indefinite Integrals... More

More information

The Integers. Peter J. Kahn

The Integers. Peter J. Kahn Math 3040: Spring 2009 The Integers Peter J. Kahn Contents 1. The Basic Construction 1 2. Adding integers 6 3. Ordering integers 16 4. Multiplying integers 18 Before we begin the mathematics of this section,

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. Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed.

Algebra. Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed. This document was written and copyrighted by Paul Dawkins. Use of this document and its online version is governed by the Terms and Conditions of Use located at. The online version of this document is

More information

Gradient. x y x h = x 2 + 2h x + h 2 GRADIENTS BY FORMULA. GRADIENT AT THE POINT (x, y)

Gradient. x y x h = x 2 + 2h x + h 2 GRADIENTS BY FORMULA. GRADIENT AT THE POINT (x, y) GRADIENTS BY FORMULA GRADIENT AT THE POINT (x, y) Now let s see about getting a formula for the gradient, given that the formula for y is y x. Start at the point A (x, y), where y x. Increase the x coordinate

More information

c 2007 Je rey A. Miron

c 2007 Je rey A. Miron Review of Calculus Tools. c 007 Je rey A. Miron Outline 1. Derivatives. Optimization 3. Partial Derivatives. Optimization again 5. Optimization subject to constraints 1 Derivatives The basic tool we need

More information

Taylor Series and Series Convergence (Online)

Taylor Series and Series Convergence (Online) 7in 0in Felder c02_online.te V3 - February 9, 205 9:5 A.M. Page CHAPTER 2 Taylor Series and Series Convergence (Online) 2.8 Asymptotic Epansions In introductory calculus classes the statement this series

More information

Counting Out πr 2. Teacher Lab Discussion. Overview. Picture, Data Table, and Graph. Part I Middle Counting Length/Area Out πrinvestigation

Counting Out πr 2. Teacher Lab Discussion. Overview. Picture, Data Table, and Graph. Part I Middle Counting Length/Area Out πrinvestigation 5 6 7 Middle Counting Length/rea Out πrinvestigation, page 1 of 7 Counting Out πr Teacher Lab Discussion Figure 1 Overview In this experiment we study the relationship between the radius of a circle and

More information

Chapter 3 Single Random Variables and Probability Distributions (Part 1)

Chapter 3 Single Random Variables and Probability Distributions (Part 1) Chapter 3 Single Random Variables and Probability Distributions (Part 1) Contents What is a Random Variable? Probability Distribution Functions Cumulative Distribution Function Probability Density Function

More information

Pre-calculus is the stepping stone for Calculus. It s the final hurdle after all those years of

Pre-calculus is the stepping stone for Calculus. It s the final hurdle after all those years of Chapter 1 Beginning at the Very Beginning: Pre-Pre-Calculus In This Chapter Brushing up on order of operations Solving equalities Graphing equalities and inequalities Finding distance, midpoint, and slope

More information

#29: Logarithm review May 16, 2009

#29: Logarithm review May 16, 2009 #29: Logarithm review May 16, 2009 This week we re going to spend some time reviewing. I say re- view since you ve probably seen them before in theory, but if my experience is any guide, it s quite likely

More information

You separate binary numbers into columns in a similar fashion. 2 5 = 32

You separate binary numbers into columns in a similar fashion. 2 5 = 32 RSA Encryption 2 At the end of Part I of this article, we stated that RSA encryption works because it s impractical to factor n, which determines P 1 and P 2, which determines our private key, d, which

More information

Solutions of Linear Equations

Solutions of Linear Equations Lesson 14 Part 1: Introduction Solutions of Linear Equations Develop Skills and Strategies CCSS 8.EE.C.7a You ve learned how to solve linear equations and how to check your solution. In this lesson, you

More information

Section 20: Arrow Diagrams on the Integers

Section 20: Arrow Diagrams on the Integers Section 0: Arrow Diagrams on the Integers Most of the material we have discussed so far concerns the idea and representations of functions. A function is a relationship between a set of inputs (the leave

More information

CHAPTER 1. Introduction

CHAPTER 1. Introduction CHAPTER 1 Introduction A typical Modern Geometry course will focus on some variation of a set of axioms for Euclidean geometry due to Hilbert. At the end of such a course, non-euclidean geometries (always

More information

Can that be Axl, your author s yellow lab, sharing a special

Can that be Axl, your author s yellow lab, sharing a special 46 Chapter P Prerequisites: Fundamental Concepts Algebra Objectives Section Understand the vocabulary polynomials. Add and subtract polynomials. Multiply polynomials. Use FOIL in polynomial multiplication.

More information

Part 3: Parametric Models

Part 3: Parametric Models Part 3: Parametric Models Matthew Sperrin and Juhyun Park August 19, 2008 1 Introduction There are three main objectives to this section: 1. To introduce the concepts of probability and random variables.

More information

A Quick Algebra Review

A Quick Algebra Review 1. Simplifying Epressions. Solving Equations 3. Problem Solving 4. Inequalities 5. Absolute Values 6. Linear Equations 7. Systems of Equations 8. Laws of Eponents 9. Quadratics 10. Rationals 11. Radicals

More information

Appendix A. Review of Basic Mathematical Operations. 22Introduction

Appendix A. Review of Basic Mathematical Operations. 22Introduction Appendix A Review of Basic Mathematical Operations I never did very well in math I could never seem to persuade the teacher that I hadn t meant my answers literally. Introduction Calvin Trillin Many of

More information

Grades 7 & 8, Math Circles 10/11/12 October, Series & Polygonal Numbers

Grades 7 & 8, Math Circles 10/11/12 October, Series & Polygonal Numbers Faculty of Mathematics Waterloo, Ontario N2L G Centre for Education in Mathematics and Computing Introduction Grades 7 & 8, Math Circles 0//2 October, 207 Series & Polygonal Numbers Mathematicians are

More information

Big-oh stuff. You should know this definition by heart and be able to give it,

Big-oh stuff. You should know this definition by heart and be able to give it, Big-oh stuff Definition. if asked. You should know this definition by heart and be able to give it, Let f and g both be functions from R + to R +. Then f is O(g) (pronounced big-oh ) if and only if there

More information

The Integers. Math 3040: Spring Contents 1. The Basic Construction 1 2. Adding integers 4 3. Ordering integers Multiplying integers 12

The Integers. Math 3040: Spring Contents 1. The Basic Construction 1 2. Adding integers 4 3. Ordering integers Multiplying integers 12 Math 3040: Spring 2011 The Integers Contents 1. The Basic Construction 1 2. Adding integers 4 3. Ordering integers 11 4. Multiplying integers 12 Before we begin the mathematics of this section, it is worth

More information

In economics, the amount of a good x demanded is a function of the price of that good. In other words,

In economics, the amount of a good x demanded is a function of the price of that good. In other words, I. UNIVARIATE CALCULUS Given two sets X and Y, a function is a rule that associates each member of X with eactly one member of Y. That is, some goes in, and some y comes out. These notations are used to

More information

University of Colorado at Colorado Springs Math 090 Fundamentals of College Algebra

University of Colorado at Colorado Springs Math 090 Fundamentals of College Algebra University of Colorado at Colorado Springs Math 090 Fundamentals of College Algebra Table of Contents Chapter The Algebra of Polynomials Chapter Factoring 7 Chapter 3 Fractions Chapter 4 Eponents and Radicals

More information

Introduction to Probability Theory for Graduate Economics Fall 2008

Introduction to Probability Theory for Graduate Economics Fall 2008 Introduction to Probability Theory for Graduate Economics Fall 008 Yiğit Sağlam October 10, 008 CHAPTER - RANDOM VARIABLES AND EXPECTATION 1 1 Random Variables A random variable (RV) is a real-valued function

More information

Hypothesis testing I. - In particular, we are talking about statistical hypotheses. [get everyone s finger length!] n =

Hypothesis testing I. - In particular, we are talking about statistical hypotheses. [get everyone s finger length!] n = Hypothesis testing I I. What is hypothesis testing? [Note we re temporarily bouncing around in the book a lot! Things will settle down again in a week or so] - Exactly what it says. We develop a hypothesis,

More information

To factor an expression means to write it as a product of factors instead of a sum of terms. The expression 3x

To factor an expression means to write it as a product of factors instead of a sum of terms. The expression 3x Factoring trinomials In general, we are factoring ax + bx + c where a, b, and c are real numbers. To factor an expression means to write it as a product of factors instead of a sum of terms. The expression

More information

Computer Problems for Taylor Series and Series Convergence

Computer Problems for Taylor Series and Series Convergence Computer Problems for Taylor Series and Series Convergence The two problems below are a set; the first should be done without a computer and the second is a computer-based follow up. 1. The drawing below

More information

Alex s Guide to Word Problems and Linear Equations Following Glencoe Algebra 1

Alex s Guide to Word Problems and Linear Equations Following Glencoe Algebra 1 Alex s Guide to Word Problems and Linear Equations Following Glencoe Algebra 1 What is a linear equation? It sounds fancy, but linear equation means the same thing as a line. In other words, it s an equation

More information

Exponential Functions, Logarithms, and e

Exponential Functions, Logarithms, and e Chapter 3 Starry Night, painted by Vincent Van Gogh in 1889 The brightness of a star as seen from Earth is measured using a logarithmic scale Eponential Functions, Logarithms, and e This chapter focuses

More information

Binomial Distribution. Collin Phillips

Binomial Distribution. Collin Phillips Mathematics Learning Centre Binomial Distribution Collin Phillips c 00 University of Sydney Thanks To Darren Graham and Cathy Kennedy for turning my scribble into a book and to Jackie Nicholas and Sue

More information

Basics of Proofs. 1 The Basics. 2 Proof Strategies. 2.1 Understand What s Going On

Basics of Proofs. 1 The Basics. 2 Proof Strategies. 2.1 Understand What s Going On Basics of Proofs The Putnam is a proof based exam and will expect you to write proofs in your solutions Similarly, Math 96 will also require you to write proofs in your homework solutions If you ve seen

More information

Implicit Differentiation Applying Implicit Differentiation Applying Implicit Differentiation Page [1 of 5]

Implicit Differentiation Applying Implicit Differentiation Applying Implicit Differentiation Page [1 of 5] Page [1 of 5] The final frontier. This is it. This is our last chance to work together on doing some of these implicit differentiation questions. So, really this is the opportunity to really try these

More information

2. FUNCTIONS AND ALGEBRA

2. FUNCTIONS AND ALGEBRA 2. FUNCTIONS AND ALGEBRA You might think of this chapter as an icebreaker. Functions are the primary participants in the game of calculus, so before we play the game we ought to get to know a few functions.

More information

Bayesian Estimation An Informal Introduction

Bayesian Estimation An Informal Introduction Mary Parker, Bayesian Estimation An Informal Introduction page 1 of 8 Bayesian Estimation An Informal Introduction Example: I take a coin out of my pocket and I want to estimate the probability of heads

More information

Common Core State Standards for Activity 14. Lesson Postal Service Lesson 14-1 Polynomials PLAN TEACH

Common Core State Standards for Activity 14. Lesson Postal Service Lesson 14-1 Polynomials PLAN TEACH Postal Service Lesson 1-1 Polynomials Learning Targets: Write a third-degree equation that represents a real-world situation. Graph a portion of this equation and evaluate the meaning of a relative maimum.

More information

Lecture 11: Extrema. Nathan Pflueger. 2 October 2013

Lecture 11: Extrema. Nathan Pflueger. 2 October 2013 Lecture 11: Extrema Nathan Pflueger 2 October 201 1 Introduction In this lecture we begin to consider the notion of extrema of functions on chosen intervals. This discussion will continue in the lectures

More information

The Derivative of a Function

The Derivative of a Function The Derivative of a Function James K Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 1, 2017 Outline A Basic Evolutionary Model The Next Generation

More information

MATH 108 REVIEW TOPIC 6 Radicals

MATH 108 REVIEW TOPIC 6 Radicals Math 08 T6-Radicals Page MATH 08 REVIEW TOPIC 6 Radicals I. Computations with Radicals II. III. IV. Radicals Containing Variables Rationalizing Radicals and Rational Eponents V. Logarithms Answers to Eercises

More information

1 5 π 2. 5 π 3. 5 π π x. 5 π 4. Figure 1: We need calculus to find the area of the shaded region.

1 5 π 2. 5 π 3. 5 π π x. 5 π 4. Figure 1: We need calculus to find the area of the shaded region. . Area In order to quantify the size of a 2-dimensional object, we use area. Since we measure area in square units, we can think of the area of an object as the number of such squares it fills up. Using

More information

Discrete Mathematics and Probability Theory Fall 2014 Anant Sahai Note 15. Random Variables: Distributions, Independence, and Expectations

Discrete Mathematics and Probability Theory Fall 2014 Anant Sahai Note 15. Random Variables: Distributions, Independence, and Expectations EECS 70 Discrete Mathematics and Probability Theory Fall 204 Anant Sahai Note 5 Random Variables: Distributions, Independence, and Expectations In the last note, we saw how useful it is to have a way of

More information

How to Find Limits. Yilong Yang. October 22, The General Guideline 1

How to Find Limits. Yilong Yang. October 22, The General Guideline 1 How to Find Limits Yilong Yang October 22, 204 Contents The General Guideline 2 Put Fractions Together and Factorization 2 2. Why put fractions together..................................... 2 2.2 Formula

More information

The Basics COPYRIGHTED MATERIAL. chapter. Algebra is a very logical way to solve

The Basics COPYRIGHTED MATERIAL. chapter. Algebra is a very logical way to solve chapter 1 The Basics Algebra is a very logical way to solve problems both theoretically and practically. You need to know a number of things. You already know arithmetic of whole numbers. You will review

More information

base 2 4 The EXPONENT tells you how many times to write the base as a factor. Evaluate the following expressions in standard notation.

base 2 4 The EXPONENT tells you how many times to write the base as a factor. Evaluate the following expressions in standard notation. EXPONENTIALS Exponential is a number written with an exponent. The rules for exponents make computing with very large or very small numbers easier. Students will come across exponentials in geometric sequences

More information

EQ: How do I convert between standard form and scientific notation?

EQ: How do I convert between standard form and scientific notation? EQ: How do I convert between standard form and scientific notation? HW: Practice Sheet Bellwork: Simplify each expression 1. (5x 3 ) 4 2. 5(x 3 ) 4 3. 5(x 3 ) 4 20x 8 Simplify and leave in standard form

More information

NIT #7 CORE ALGE COMMON IALS

NIT #7 CORE ALGE COMMON IALS UN NIT #7 ANSWER KEY POLYNOMIALS Lesson #1 Introduction too Polynomials Lesson # Multiplying Polynomials Lesson # Factoring Polynomials Lesson # Factoring Based on Conjugate Pairs Lesson #5 Factoring Trinomials

More information