CHAPTER 3a. INTRODUCTION TO NUMERICAL METHODS

Size: px
Start display at page:

Download "CHAPTER 3a. INTRODUCTION TO NUMERICAL METHODS"

Transcription

1 CHAPTER 3a. INTRODUCTION TO NUMERICAL METHODS A. J. Clark School of Engineering Department of Civil and Environmental Engineering by Dr. Ibrahim A. Assakkaf Spring 1 ENCE 3 - Computation in Civil Engineering II Department of Civil and Environmental Engineering University of Maryland, College Park 1. The solution procedure is iterative, with the accuracy of the estimated solution improving with each iteration.. The solution procedure provides only an approimation to true (eact), but unknown solution. 3. An initial estimate of the solution may be required. Slide No. 1 1

2 4. The solution procedure is conceptually simple, with algorithms representing the solution procedure that can be easily programmed on a digital computer. 5. The solution procedure may occasionally diverge from rather converge to the true solution. Slide No. Eample 1: Square Root This eample illustrates how to approach a solution for finding the square root of an arbitrary real number y using numerical methods. f ( y) = y Slide No. 3

3 Eample 1 (cont d): Square Root The square root of any real number can be found using any computational aid such as a calculator or a spread sheet. On a calculator, you simply enter the number and then press key. On a spread sheet, the function SQRT is used. Slide No. 4 Eample 1 (cont d): Square Root Strategy Let s assume an initial value of for the square root. Then will be in error by unknown amount. If we know, then + = y Slide No. 5 3

4 Eample 1 (cont d): Square Root + = If both sides of the above equation is squared, then + = y or ( ) y + + ( ) = y Slide No. 6 Eample 1 (cont d): Square Root ( ) y + + = If we assume that ( ) is much smaller than, then we have = y Slide No. 7 4

5 Eample 1 (cont d): Square Root The value of computed with the previous equation can be added to to get a revised estimate of. Thus the new estimate 1 of the true solution is given by 1 = + Slide No. 8 Eample 1 (cont d): Square Root Generalizing the notation, we have i+1 = i + where i +1 and i are the estimates of on trials i and i + 1, respectively, and = y i i (1) () Slide No. 9 5

6 Eample 1 (cont d): Square Root To illustrate the numerical use of Eqs. 1 and : Assume y = 15 We know that 1 = 144 So = 1, which is a reasonable estimate Therefore, the first iteration is given by Eq. as y = ( 1) ( ) = 15 = 1.5 Slide No. 1 Eample 1 (cont d): Square Root and by Eq. 1 as i+ 1 1 = = + = = 1.5 A second iteration can now be applied in Eqs. and 1 to give, respectively i+ 1 y = 1 = + = 1 i i + ( 1.5) ( ) 1 = 15 = = = Slide No. 11 6

7 Eample 1 (cont d): Square Root i+ 1 3 A third iteration, yields y 15 = = = = = i + ( ) ( ) + = = True Value = 15 = For 7 digits, the solution converges to true value in 3 iterations. Slide No. 1 Eample 1 (cont d): Square Root y = 15 b i b y True Value ABS error E E-7 3-3E E Slide No. 13 7

8 Eample : Root of a Polynomial This eample illustrates how to approach a solution for finding one root of a polynomial using numerical methods. 3 3 = Slide No. 14 Eample (cont d): Root of a Polynomial Strategy Dividing both sides of the equation by, yields = Solving for using the term, gives 8 = (3) Slide No. 15 8

9 Eample (cont d): Root of a Polynomial Eq. 3 can be solved iteratively as follows: 8 i+ 1 = 3i + 6 (4) i If an initial value of ( = ) is assumed for, then = = 3() + 6 =.8847 Slide No. 16 Eample (cont d): Root of a Polynomial Now 1 =.8847 A second iteration will yield 8 8 = = 3(.8847) + 6 = A third iteration results in = = 3( ) + 6 = Slide No. 17 9

10 Eample (cont d): Root of a Polynomial The results of iteration are shown Table 1 of the net viewgraph. It is evident from the table that the solution converges to the true value of 4 after the the th iteration. Slide No. 18 Eample (cont d): Root of a Polynomial Table 1 b i b i True Value Abs Error b i b i True Value Abs Error E E E E E E E Slide No. 19 1

11 In view of Eamples 1 and, we conclude that The solution procedure is iterative, with the accuracy of the estimated solution improving with each iteration. The solution procedure provides only an approimation to true (eact), but unknown solution Slide No. An initial estimate of the solution may be required. The solution procedure is conceptually simple, with algorithms representing the solution procedure that can be easily programmed on a digital computer. Slide No. 1 11

12 Accuracy, Precision, and Bias Bias An estimate of a parameter θ made from sample statistic is said to be an unbiased estimate if the epected value of the sample quantity θˆ is θ; that is E( θˆ) = θ The bias is defined as [ E(θˆ) -θ] Slide No. Accuracy, Precision, and Bias Bias Definition: Bias is a systematic deviation of values from the true value Slide No. 3 1

13 Accuracy, Precision, and Bias Bias Consider four eperiments where each eperiment is repeated si times. The following table shows the results of the four eperiments: True (Population) Ep. A Ep. B Ep. C Ep D Mean Slide No. 4 Slide No. 5 13

14 Accuracy, Precision, and Bias Bias Eperiment A is unbiased because its epected value (mean) equals the true mean. Eperiments B, C, and D show varying degrees of bias. Eperiment B has a positive bias of 9, whereas the bias of C and D are negative. Eperiment B tends to overestimate θ, while C and D tend to underestimate θ. Slide No. 6 Accuracy, Precision, and Bias Precision Definition: Precision is defined as the ability of an estimator to give repeated estimates that are very close to each other. Slide No. 7 14

15 Accuracy, Precision, and Bias Precision Precision can be epressed in terms of the variance of the estimator. Precision Var( θ) Var( θ) Var( θ) = Lack of precision High precision Absolute precision Slide No. 8 Accuracy, Precision, and Bias Precision Consider four eperiments where each eperiment is repeated si times. The following table shows the results of the four eperiments: Ep. A Ep. B Ep. C Ep D Var Note: Variance is about the sample mean for each eperiment Slide No. 9 15

16 Slide No. 3 Accuracy, Precision, and Bias Precision Eperiment A and B show considerably more precision (i.e., they have lower variances). Eperiment C has the largest variation, therefore, it is the least precise. Eperiments A and B have the same level of variation, however, A is unbiased, whereas B is highly biased. Slide No

17 Accuracy, Precision, and Bias Accuracy Definition: Accuracy is defined as the closeness or nearness of the measurements to the true or actual value of the quantity being measured. Slide No. 3 Accuracy, Precision, and Bias Accuracy Bias and Precision are considered elements of Accuracy. Bias + Precision Accuracy Inaccuracy can result from either a bias or a lack of precision. Slide No

18 Accuracy, Precision, and Bias Accuracy Consider four eperiments where each eperiment is repeated si times. The following table shows the results of the four eperiments: Ep. A Ep. B Ep. C Ep D Var Note: Variance is about the true mean of the population (i.e., 15) Slide No. 34 Slide No

19 Accuracy, Precision, and Bias Bias, Precision, and Accuracy Consider the four dartboards of the following figure. Assuming that these shooting at the targets were aiming at the center, the person shooting at target A was successful. Slide No. 36 Accuracy, Precision, and Bias Bias, Precision, and Accuracy B A Increasing Precision D C Increasing Accuracy Slide No

20 Accuracy, Precision, and Bias Bias, Precision, and Accuracy The holes in target B are similarly clustered as in target B, but they show large deviation from the center. The holes in target C are very different in character from the holes in either target A or B. They are not near the center, and they are not near each other. Slide No. 38 Accuracy, Precision, and Bias Bias, Precision, and Accuracy The holes in target A and B show a measure of precision, therefore, the shooters were precise. The shooters of targets C and D were imprecise since the holes show a lot of scatter. The holes in targets B and D are consistently to the left, that is, there is a systematic distortion of the hole with respect to the center of the target. Slide No. 39

21 Accuracy, Precision, and Bias Bias, Precision, and Accuracy B A Increasing Precision D C Increasing Accuracy Slide No. 4 Accuracy, Precision, and Bias Bias, Precision, and Accuracy The holes in targets B and D show a systematic deviation to the left. Targets A and C are considered to unbiased because there is no systematic deviation. In the figure, accuracy increases as precision increases, therefore, the shooter of target A is the most accurate. Slide No. 41 1

Estimation of Parameters

Estimation of Parameters CHAPTER Probability, Statistics, and Reliability for Engineers and Scientists FUNDAMENTALS OF STATISTICAL ANALYSIS Second Edition A. J. Clark School of Engineering Department of Civil and Environmental

More information

Business Statistics: A Decision-Making Approach 6 th Edition. Chapter Goals

Business Statistics: A Decision-Making Approach 6 th Edition. Chapter Goals Chapter 6 Student Lecture Notes 6-1 Business Statistics: A Decision-Making Approach 6 th Edition Chapter 6 Introduction to Sampling Distributions Chap 6-1 Chapter Goals To use information from the sample

More information

SOLVING QUADRATICS. Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources

SOLVING QUADRATICS. Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources SOLVING QUADRATICS Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources SOLVING QUADRATICS General Form: y a b c Where a, b and c are constants To solve a quadratic equation, the equation

More information

Polynomials and Factoring

Polynomials and Factoring 7.6 Polynomials and Factoring Basic Terminology A term, or monomial, is defined to be a number, a variable, or a product of numbers and variables. A polynomial is a term or a finite sum or difference of

More information

2. A Basic Statistical Toolbox

2. A Basic Statistical Toolbox . A Basic Statistical Toolbo Statistics is a mathematical science pertaining to the collection, analysis, interpretation, and presentation of data. Wikipedia definition Mathematical statistics: concerned

More information

THE ROYAL STATISTICAL SOCIETY HIGHER CERTIFICATE EXAMINATION MODULE 2

THE ROYAL STATISTICAL SOCIETY HIGHER CERTIFICATE EXAMINATION MODULE 2 THE ROYAL STATISTICAL SOCIETY HIGHER CERTIFICATE EXAMINATION NEW MODULAR SCHEME introduced from the eaminations in 7 MODULE SPECIMEN PAPER B AND SOLUTIONS The time for the eamination is ½ hours The paper

More information

SERVICEABILITY OF BEAMS AND ONE-WAY SLABS

SERVICEABILITY OF BEAMS AND ONE-WAY SLABS CHAPTER REINFORCED CONCRETE Reinforced Concrete Design A Fundamental Approach - Fifth Edition Fifth Edition SERVICEABILITY OF BEAMS AND ONE-WAY SLABS A. J. Clark School of Engineering Department of Civil

More information

that relative errors are dimensionless. When reporting relative errors it is usual to multiply the fractional error by 100 and report it as a percenta

that relative errors are dimensionless. When reporting relative errors it is usual to multiply the fractional error by 100 and report it as a percenta Error Analysis and Significant Figures Errors using inadequate data are much less than those using no data at all. C. Babbage No measurement of a physical quantity can be entirely accurate. It is important

More information

Exponential Growth and Decay - M&M's Activity

Exponential Growth and Decay - M&M's Activity Eponential Growth and Decay - M&M's Activity Activity 1 - Growth 1. The results from the eperiment are as follows: Group 1 0 4 1 5 2 6 3 4 15 5 22 6 31 2. The scatterplot of the result is as follows: 3.

More information

1/11/2011. Chapter 4: Variability. Overview

1/11/2011. Chapter 4: Variability. Overview Chapter 4: Variability Overview In statistics, our goal is to measure the amount of variability for a particular set of scores, a distribution. In simple terms, if the scores in a distribution are all

More information

Errors Intensive Computation

Errors Intensive Computation Errors Intensive Computation Annalisa Massini - 2015/2016 OVERVIEW Sources of Approimation Before computation modeling empirical measurements previous computations During computation truncation or discretization

More information

Lecture 4.2 Finite Difference Approximation

Lecture 4.2 Finite Difference Approximation Lecture 4. Finite Difference Approimation 1 Discretization As stated in Lecture 1.0, there are three steps in numerically solving the differential equations. They are: 1. Discretization of the domain by

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

The Priestley-Chao Estimator - Bias, Variance and Mean-Square Error

The Priestley-Chao Estimator - Bias, Variance and Mean-Square Error The Priestley-Chao Estimator - Bias, Variance and Mean-Square Error Bias, variance and mse properties In the previous section we saw that the eact mean and variance of the Pristley-Chao estimator ˆm()

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

STA 291 Lecture 16. Normal distributions: ( mean and SD ) use table or web page. The sampling distribution of and are both (approximately) normal

STA 291 Lecture 16. Normal distributions: ( mean and SD ) use table or web page. The sampling distribution of and are both (approximately) normal STA 291 Lecture 16 Normal distributions: ( mean and SD ) use table or web page. The sampling distribution of and are both (approximately) normal X STA 291 - Lecture 16 1 Sampling Distributions Sampling

More information

Chapter 9: Sampling Distributions

Chapter 9: Sampling Distributions Chapter 9: Sampling Distributions 1 Activity 9A, pp. 486-487 2 We ve just begun a sampling distribution! Strictly speaking, a sampling distribution is: A theoretical distribution of the values of a statistic

More information

CHAPTER 6c. NUMERICAL INTERPOLATION

CHAPTER 6c. NUMERICAL INTERPOLATION CHAPTER 6c. NUMERICAL INTERPOLATION A. J. Clark School o Egieerig Departmet o Civil ad Evirometal Egieerig y Dr. Irahim A. Assakka Sprig ENCE - Computatio Methods i Civil Egieerig II Departmet o Civil

More information

Probability, Statistics, and Reliability for Engineers and Scientists MULTIPLE RANDOM VARIABLES

Probability, Statistics, and Reliability for Engineers and Scientists MULTIPLE RANDOM VARIABLES CHATER robability, Statistics, and Reliability or Engineers and Scientists MULTILE RANDOM VARIABLES Second Edition A. J. Clark School o Engineering Department o Civil and Environmental Engineering 6a robability

More information

Chapter 5. Errors in Chemical Analysis 熊同銘.

Chapter 5. Errors in Chemical Analysis 熊同銘. Chapter 5 Errors in Chemical Analysis 熊同銘 tmhsiung@gmail.com http://www.chem.ntou.edu.tw/ Slide 1 of 19 Contents in Chapter 5 5.1 Accuracy, Precision and Bias 5.2 Types of Errors in Experimental Data 5.3

More information

Machine Learning Lecture 3

Machine Learning Lecture 3 Announcements Machine Learning Lecture 3 Eam dates We re in the process of fiing the first eam date Probability Density Estimation II 9.0.207 Eercises The first eercise sheet is available on L2P now First

More information

Econ 6900: Statistical Problems. Instructor: Yogesh Uppal

Econ 6900: Statistical Problems. Instructor: Yogesh Uppal Econ 6900: Statistical Problems Instructor: Yogesh Uppal Email: yuppal@ysu.edu Chapter 7, Part A Sampling and Sampling Distributions Simple Random Sampling Point Estimation Introduction to Sampling Distributions

More information

SOLVING EQUATIONS OF ONE VARIABLE

SOLVING EQUATIONS OF ONE VARIABLE 1 SOLVING EQUATIONS OF ONE VARIABLE ELM1222 Numerical Analysis Some of the contents are adopted from Laurene V. Fausett, Applied Numerical Analysis using MATLAB. Prentice Hall Inc., 1999 2 Today s lecture

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

Random Variable And Probability Distribution. Is defined as a real valued function defined on the sample space S. We denote it as X, Y, Z,

Random Variable And Probability Distribution. Is defined as a real valued function defined on the sample space S. We denote it as X, Y, Z, Random Variable And Probability Distribution Introduction Random Variable ( r.v. ) Is defined as a real valued function defined on the sample space S. We denote it as X, Y, Z, T, and denote the assumed

More information

System Simulation Part II: Mathematical and Statistical Models Chapter 5: Statistical Models

System Simulation Part II: Mathematical and Statistical Models Chapter 5: Statistical Models System Simulation Part II: Mathematical and Statistical Models Chapter 5: Statistical Models Fatih Cavdur fatihcavdur@uludag.edu.tr March 29, 2014 Introduction Introduction The world of the model-builder

More information

Regent College Maths Department. Core Mathematics 4 Trapezium Rule. C4 Integration Page 1

Regent College Maths Department. Core Mathematics 4 Trapezium Rule. C4 Integration Page 1 Regent College Maths Department Core Mathematics Trapezium Rule C Integration Page Integration It might appear to be a bit obvious but you must remember all of your C work on differentiation if you are

More information

Nonlinear State Estimation! Particle, Sigma-Points Filters!

Nonlinear State Estimation! Particle, Sigma-Points Filters! Nonlinear State Estimation! Particle, Sigma-Points Filters! Robert Stengel! Optimal Control and Estimation, MAE 546! Princeton University, 2017!! Particle filter!! Sigma-Points Unscented Kalman ) filter!!

More information

A Practitioner s Guide to Generalized Linear Models

A Practitioner s Guide to Generalized Linear Models A Practitioners Guide to Generalized Linear Models Background The classical linear models and most of the minimum bias procedures are special cases of generalized linear models (GLMs). GLMs are more technically

More information

6.867 Machine learning

6.867 Machine learning 6.867 Machine learning Mid-term eam October 8, 6 ( points) Your name and MIT ID: .5.5 y.5 y.5 a).5.5 b).5.5.5.5 y.5 y.5 c).5.5 d).5.5 Figure : Plots of linear regression results with different types of

More information

Making Hard Decision. Probability Basics. ENCE 627 Decision Analysis for Engineering

Making Hard Decision. Probability Basics. ENCE 627 Decision Analysis for Engineering CHAPTER Duxbury Thomson Learning Making Hard Decision Probability asics Third Edition A. J. Clark School of Engineering Department of Civil and Environmental Engineering 7b FALL 003 y Dr. Ibrahim. Assakkaf

More information

Numerical Methods. Root Finding

Numerical Methods. Root Finding Numerical Methods Solving Non Linear 1-Dimensional Equations Root Finding Given a real valued function f of one variable (say ), the idea is to find an such that: f() 0 1 Root Finding Eamples Find real

More information

Math 180A. Lecture 16 Friday May 7 th. Expectation. Recall the three main probability density functions so far (1) Uniform (2) Exponential.

Math 180A. Lecture 16 Friday May 7 th. Expectation. Recall the three main probability density functions so far (1) Uniform (2) Exponential. Math 8A Lecture 6 Friday May 7 th Epectation Recall the three main probability density functions so far () Uniform () Eponential (3) Power Law e, ( ), Math 8A Lecture 6 Friday May 7 th Epectation Eample

More information

Chapter 7, Part A Sampling and Sampling Distributions

Chapter 7, Part A Sampling and Sampling Distributions Slides Prepared by JOHN S. LOUCKS St. Edward s University Slide 1 Chapter 7, Part A Sampling and Sampling Distributions Simple Random Sampling Point Estimation Introduction to Sampling Distributions Sampling

More information

MA 114 Worksheet #01: Integration by parts

MA 114 Worksheet #01: Integration by parts Fall 8 MA 4 Worksheet Thursday, 3 August 8 MA 4 Worksheet #: Integration by parts. For each of the following integrals, determine if it is best evaluated by integration by parts or by substitution. If

More information

Estimation of Parameters and Variance

Estimation of Parameters and Variance Estimation of Parameters and Variance Dr. A.C. Kulshreshtha U.N. Statistical Institute for Asia and the Pacific (SIAP) Second RAP Regional Workshop on Building Training Resources for Improving Agricultural

More information

Section 3.3 Limits Involving Infinity - Asymptotes

Section 3.3 Limits Involving Infinity - Asymptotes 76 Section. Limits Involving Infinity - Asymptotes We begin our discussion with analyzing its as increases or decreases without bound. We will then eplore functions that have its at infinity. Let s consider

More information

Estimation MLE-Pandemic data MLE-Financial crisis data Evaluating estimators. Estimation. September 24, STAT 151 Class 6 Slide 1

Estimation MLE-Pandemic data MLE-Financial crisis data Evaluating estimators. Estimation. September 24, STAT 151 Class 6 Slide 1 Estimation September 24, 2018 STAT 151 Class 6 Slide 1 Pandemic data Treatment outcome, X, from n = 100 patients in a pandemic: 1 = recovered and 0 = not recovered 1 1 1 0 0 0 1 1 1 0 0 1 0 1 0 0 1 1 1

More information

Chapter 2. Random Variable. Define single random variables in terms of their PDF and CDF, and calculate moments such as the mean and variance.

Chapter 2. Random Variable. Define single random variables in terms of their PDF and CDF, and calculate moments such as the mean and variance. Chapter 2 Random Variable CLO2 Define single random variables in terms of their PDF and CDF, and calculate moments such as the mean and variance. 1 1. Introduction In Chapter 1, we introduced the concept

More information

Estimators as Random Variables

Estimators as Random Variables Estimation Theory Overview Properties Bias, Variance, and Mean Square Error Cramér-Rao lower bound Maimum likelihood Consistency Confidence intervals Properties of the mean estimator Introduction Up until

More information

M.S. Project Report. Efficient Failure Rate Prediction for SRAM Cells via Gibbs Sampling. Yamei Feng 12/15/2011

M.S. Project Report. Efficient Failure Rate Prediction for SRAM Cells via Gibbs Sampling. Yamei Feng 12/15/2011 .S. Project Report Efficient Failure Rate Prediction for SRA Cells via Gibbs Sampling Yamei Feng /5/ Committee embers: Prof. Xin Li Prof. Ken ai Table of Contents CHAPTER INTRODUCTION...3 CHAPTER BACKGROUND...5

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

Electronic Devices and Circuits Lecture 5 - p-n Junction Injection and Flow - Outline

Electronic Devices and Circuits Lecture 5 - p-n Junction Injection and Flow - Outline 6.012 - Electronic Devices and Circuits Lecture 5 - p-n Junction Injection and Flow - Outline Review Depletion approimation for an abrupt p-n junction Depletion charge storage and depletion capacitance

More information

CSCI-6971 Lecture Notes: Probability theory

CSCI-6971 Lecture Notes: Probability theory CSCI-6971 Lecture Notes: Probability theory Kristopher R. Beevers Department of Computer Science Rensselaer Polytechnic Institute beevek@cs.rpi.edu January 31, 2006 1 Properties of probabilities Let, A,

More information

APPM 1360 Final Exam Spring 2016

APPM 1360 Final Exam Spring 2016 APPM 36 Final Eam Spring 6. 8 points) State whether each of the following quantities converge or diverge. Eplain your reasoning. a) The sequence a, a, a 3,... where a n ln8n) lnn + ) n!) b) ln d c) arctan

More information

6. Vector Random Variables

6. Vector Random Variables 6. Vector Random Variables In the previous chapter we presented methods for dealing with two random variables. In this chapter we etend these methods to the case of n random variables in the following

More information

Expectation Maximization Deconvolution Algorithm

Expectation Maximization Deconvolution Algorithm Epectation Maimization Deconvolution Algorithm Miaomiao ZHANG March 30, 2011 Abstract In this paper, we use a general mathematical and eperimental methodology to analyze image deconvolution. The main procedure

More information

(2.5) 1. Solve the following compound inequality and graph the solution set.

(2.5) 1. Solve the following compound inequality and graph the solution set. Intermediate Algebra Practice Final Math 0 (7 th ed.) (Ch. -) (.5). Solve the following compound inequalit and graph the solution set. 0 and and > or or (.7). Solve the following absolute value inequalities.

More information

Lab on Taylor Polynomials. This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor.

Lab on Taylor Polynomials. This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor. Lab on Taylor Polynomials This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor. In this Lab we will approimate complicated unctions by simple unctions. The

More information

REVIEW FOR EXAM II. Dr. Ibrahim A. Assakkaf SPRING 2002

REVIEW FOR EXAM II. Dr. Ibrahim A. Assakkaf SPRING 2002 REVIEW FOR EXM II. J. Clark School of Engineering Department of Civil and Environmental Engineering b Dr. Ibrahim. ssakkaf SPRING 00 ENES 0 Mechanics of Materials Department of Civil and Environmental

More information

Baruch College MTH 1030 Sample Final B Form 0809 PAGE 1

Baruch College MTH 1030 Sample Final B Form 0809 PAGE 1 Baruch College MTH 00 Sample Final B Form 0809 PAGE MTH 00 SAMPLE FINAL B BARUCH COLLEGE DEPARTMENT OF MATHEMATICS SPRING 00 PART I (NO PARTIAL CREDIT, NO CALCULATORS ALLOWED). ON THE FINAL EXAM, THERE

More information

CS 543 Page 1 John E. Boon, Jr.

CS 543 Page 1 John E. Boon, Jr. CS 543 Machine Learning Spring 2010 Lecture 05 Evaluating Hypotheses I. Overview A. Given observed accuracy of a hypothesis over a limited sample of data, how well does this estimate its accuracy over

More information

18-660: Numerical Methods for Engineering Design and Optimization

18-660: Numerical Methods for Engineering Design and Optimization 8-66: Numerical Methods or Engineering Design and Optimization Xin Li Department o ECE Carnegie Mellon University Pittsburgh, PA 53 Slide Overview Linear Regression Ordinary least-squares regression Minima

More information

EIE 240 Electrical and Electronic Measurements Class 2: January 16, 2015 Werapon Chiracharit. Measurement

EIE 240 Electrical and Electronic Measurements Class 2: January 16, 2015 Werapon Chiracharit. Measurement EIE 240 Electrical and Electronic Measurements Class 2: January 16, 2015 Werapon Chiracharit Measurement Measurement is to determine the value or size of some quantity, e.g. a voltage or a current. Analogue

More information

APPLICATIONS OF DIFFERENTIATION

APPLICATIONS OF DIFFERENTIATION 4 APPLICATIONS OF DIFFERENTIATION APPLICATIONS OF DIFFERENTIATION 4.8 Newton s Method In this section, we will learn: How to solve high degree equations using Newton s method. INTRODUCTION Suppose that

More information

Engineering Mechanics: Statics STRUCTURAL ANALYSIS. by Dr. Ibrahim A. Assakkaf SPRING 2007 ENES 110 Statics

Engineering Mechanics: Statics STRUCTURAL ANALYSIS. by Dr. Ibrahim A. Assakkaf SPRING 2007 ENES 110 Statics CHAPTER Engineering Mechanics: Statics STRUCTURAL ANALYSIS College of Engineering Department of Mechanical Engineering Tenth Edition 6a by Dr. Ibrahim A. Assakkaf SPRING 2007 ENES 110 Statics Department

More information

Week 3, Lectures 6-8, Jan 29 Feb 2, 2001

Week 3, Lectures 6-8, Jan 29 Feb 2, 2001 Week 3, Lectures 6-8, Jan 29 Feb 2, 2001 EECS 105 Microelectronics Devices and Circuits, Spring 2001 Andrew R. Neureuther Topics: M: Charge density, electric field, and potential; W: Capacitance of pn

More information

Rejection sampling - Acceptance probability. Review: How to sample from a multivariate normal in R. Review: Rejection sampling. Weighted resampling

Rejection sampling - Acceptance probability. Review: How to sample from a multivariate normal in R. Review: Rejection sampling. Weighted resampling Rejection sampling - Acceptance probability Review: How to sample from a multivariate normal in R Goal: Simulate from N d (µ,σ)? Note: For c to be small, g() must be similar to f(). The art of rejection

More information

ΔP(x) Δx. f "Discrete Variable x" (x) dp(x) dx. (x) f "Continuous Variable x" Module 3 Statistics. I. Basic Statistics. A. Statistics and Physics

ΔP(x) Δx. f Discrete Variable x (x) dp(x) dx. (x) f Continuous Variable x Module 3 Statistics. I. Basic Statistics. A. Statistics and Physics Module 3 Statistics I. Basic Statistics A. Statistics and Physics 1. Why Statistics Up to this point, your courses in physics and engineering have considered systems from a macroscopic point of view. For

More information

Condition Monitoring for Maintenance Support

Condition Monitoring for Maintenance Support Journal of Marine Science and Application, Vol.6, No., January 26, PP***-*** Condition Monitoring for Maintenance Support BEERE William, BERG Øivind, WINGSTEDT Emil SAVOLAINEN Samuli 2, and LAHTI Tero

More information

NUMERICAL METHODS FOR SOLVING EQUATIONS

NUMERICAL METHODS FOR SOLVING EQUATIONS Mathematics Revision Guides Numerical Methods for Solving Equations Page of M.K. HOME TUITION Mathematics Revision Guides Level: AS / A Level AQA : C3 Edecel: C3 OCR: C3 NUMERICAL METHODS FOR SOLVING EQUATIONS

More information

Numerical Integration (Quadrature) Another application for our interpolation tools!

Numerical Integration (Quadrature) Another application for our interpolation tools! Numerical Integration (Quadrature) Another application for our interpolation tools! Integration: Area under a curve Curve = data or function Integrating data Finite number of data points spacing specified

More information

Figure Figure

Figure Figure Figure 4-12. Equal probability of selection with simple random sampling of equal-sized clusters at first stage and simple random sampling of equal number at second stage. The next sampling approach, shown

More information

Statistic: a that can be from a sample without making use of any unknown. In practice we will use to establish unknown parameters.

Statistic: a that can be from a sample without making use of any unknown. In practice we will use to establish unknown parameters. Chapter 9: Sampling Distributions 9.1: Sampling Distributions IDEA: How often would a given method of sampling give a correct answer if it was repeated many times? That is, if you took repeated samples

More information

VCE Mathematical Methods Units 3&4

VCE Mathematical Methods Units 3&4 Trial Eamination 2017 VCE Mathematical Methods Units 3&4 Written Eamination 1 Question and Answer Booklet Reading time: 15 minutes Writing time: 1 hour Student s Name: Teacher s Name: Structure of Booklet

More information

Econ 3790: Business and Economics Statistics. Instructor: Yogesh Uppal

Econ 3790: Business and Economics Statistics. Instructor: Yogesh Uppal Econ 3790: Business and Economics Statistics Instructor: Yogesh Uppal Email: yuppal@ysu.edu Chapter 7, Part A Sampling and Sampling Distributions Simple Random Sampling Point Estimation Introduction to

More information

Bipolar junction transistor operation and modeling

Bipolar junction transistor operation and modeling 6.01 - Electronic Devices and Circuits Lecture 8 - Bipolar Junction Transistor Basics - Outline Announcements Handout - Lecture Outline and Summary; Old eam 1's on Stellar First Hour Eam - Oct. 8, 7:30-9:30

More information

Survey of Smoking Behavior. Samples and Elements. Survey of Smoking Behavior. Samples and Elements

Survey of Smoking Behavior. Samples and Elements. Survey of Smoking Behavior. Samples and Elements s and Elements Units are Same as Elementary Units Frame Elements Analyzed as a binomial variable 9 Persons from, Frame Elements N =, N =, n = 9 Analyzed as a binomial variable HIV+ HIV- % population smokes

More information

L20: MLPs, RBFs and SPR Bayes discriminants and MLPs The role of MLP hidden units Bayes discriminants and RBFs Comparison between MLPs and RBFs

L20: MLPs, RBFs and SPR Bayes discriminants and MLPs The role of MLP hidden units Bayes discriminants and RBFs Comparison between MLPs and RBFs L0: MLPs, RBFs and SPR Bayes discriminants and MLPs The role of MLP hidden units Bayes discriminants and RBFs Comparison between MLPs and RBFs CSCE 666 Pattern Analysis Ricardo Gutierrez-Osuna CSE@TAMU

More information

EE/PEP 345. Modeling and Simulation. Spring Class 11

EE/PEP 345. Modeling and Simulation. Spring Class 11 EE/PEP 345 Modeling and Simulation Class 11 11-1 Output Analysis for a Single Model Performance measures System being simulated Output Output analysis Stochastic character Types of simulations Output analysis

More information

Newton's Laws You should be able to state these laws using both words and equations.

Newton's Laws You should be able to state these laws using both words and equations. Review before first test Physical Mechanics Fall 000 Newton's Laws You should be able to state these laws using both words and equations. The nd law most important for meteorology. Second law: net force

More information

Regression #3: Properties of OLS Estimator

Regression #3: Properties of OLS Estimator Regression #3: Properties of OLS Estimator Econ 671 Purdue University Justin L. Tobias (Purdue) Regression #3 1 / 20 Introduction In this lecture, we establish some desirable properties associated with

More information

Learning From Data Lecture 7 Approximation Versus Generalization

Learning From Data Lecture 7 Approximation Versus Generalization Learning From Data Lecture 7 Approimation Versus Generalization The VC Dimension Approimation Versus Generalization Bias and Variance The Learning Curve M. Magdon-Ismail CSCI 4100/6100 recap: The Vapnik-Chervonenkis

More information

Comparison of Estimators in Case of Low Correlation in Adaptive Cluster Sampling. Muhammad Shahzad Chaudhry 1 and Muhammad Hanif 2

Comparison of Estimators in Case of Low Correlation in Adaptive Cluster Sampling. Muhammad Shahzad Chaudhry 1 and Muhammad Hanif 2 ISSN 684-8403 Journal of Statistics Volume 3, 06. pp. 4-57 Comparison of Estimators in Case of Lo Correlation in Muhammad Shahad Chaudhr and Muhammad Hanif Abstract In this paper, to Regression-Cum-Eponential

More information

Mobile Robot Localization

Mobile Robot Localization Mobile Robot Localization 1 The Problem of Robot Localization Given a map of the environment, how can a robot determine its pose (planar coordinates + orientation)? Two sources of uncertainty: - observations

More information

SIMPLE PENDULUM AND PROPERTIES OF SIMPLE HARMONIC MOTION

SIMPLE PENDULUM AND PROPERTIES OF SIMPLE HARMONIC MOTION SIMPE PENDUUM AND PROPERTIES OF SIMPE HARMONIC MOTION Purpose a. To investigate the dependence of time period of a simple pendulum on the length of the pendulum and the acceleration of gravity. b. To study

More information

Expression arrays, normalization, and error models

Expression arrays, normalization, and error models 1 Epression arrays, normalization, and error models There are a number of different array technologies available for measuring mrna transcript levels in cell populations, from spotted cdna arrays to in

More information

Lab 5: Measuring Magnetic Field of Earth

Lab 5: Measuring Magnetic Field of Earth Dr. W. Pezzaglia Physics B, Spring 010 Page 1 Las Positas College Lab 5: Magnetic Field 010Mar01 Lab 5: Measuring Magnetic Field of Earth Mar 1, Monday: Lab 5 (today) Lab # due Video: Mechanical Universe

More information

Electrical Characteristics of MOS Devices

Electrical Characteristics of MOS Devices Electrical Characteristics of MOS Devices The MOS Capacitor Voltage components Accumulation, Depletion, Inversion Modes Effect of channel bias and substrate bias Effect of gate oide charges Threshold-voltage

More information

POISSON RANDOM VARIABLES

POISSON RANDOM VARIABLES POISSON RANDOM VARIABLES Suppose a random phenomenon occurs with a mean rate of occurrences or happenings per unit of time or length or area or volume, etc. Note: >. Eamples: 1. Cars passing through an

More information

Numbers and Data Analysis

Numbers and Data Analysis Numbers and Data Analysis With thanks to George Goth, Skyline College for portions of this material. Significant figures Significant figures (sig figs) are only the first approimation to uncertainty and

More information

Nonlinear Oscillations and Chaos

Nonlinear Oscillations and Chaos CHAPTER 4 Nonlinear Oscillations and Chaos 4-. l l = l + d s d d l l = l + d m θ m (a) (b) (c) The unetended length of each spring is, as shown in (a). In order to attach the mass m, each spring must be

More information

AP Online Quiz KEY Chapter 7: Sampling Distributions

AP Online Quiz KEY Chapter 7: Sampling Distributions AP Online Quiz KEY Chapter 7: Sampling Distributions 1. A news website claims that 30% of all Major League Baseball players use performanceenhancing drugs ( PEDs ) Indignant at this claim, league officials

More information

Online Supplement to Are Call Center and Hospital Arrivals Well Modeled by Nonhomogeneous Poisson Processes?

Online Supplement to Are Call Center and Hospital Arrivals Well Modeled by Nonhomogeneous Poisson Processes? Online Supplement to Are Call Center and Hospital Arrivals Well Modeled by Nonhomogeneous Poisson Processes? Song-Hee Kim and Ward Whitt Industrial Engineering and Operations Research Columbia University

More information

Chapter 7: Sampling Distributions

Chapter 7: Sampling Distributions Chapter 7: Sampling Distributions Section 7.1 What is a Sampling Distribution? The Practice of Statistics, 4 th edition For AP* STARNES, YATES, MOORE Chapter 7 Sampling Distributions 7.1 What is a Sampling

More information

Random Vectors. 1 Joint distribution of a random vector. 1 Joint distribution of a random vector

Random Vectors. 1 Joint distribution of a random vector. 1 Joint distribution of a random vector Random Vectors Joint distribution of a random vector Joint distributionof of a random vector Marginal and conditional distributions Previousl, we studied probabilit distributions of a random variable.

More information

CE 601: Numerical Methods Lecture 7. Course Coordinator: Dr. Suresh A. Kartha, Associate Professor, Department of Civil Engineering, IIT Guwahati.

CE 601: Numerical Methods Lecture 7. Course Coordinator: Dr. Suresh A. Kartha, Associate Professor, Department of Civil Engineering, IIT Guwahati. CE 60: Numerical Methods Lecture 7 Course Coordinator: Dr. Suresh A. Kartha, Associate Professor, Department of Civil Engineering, IIT Guwahati. Drawback in Elimination Methods There are various drawbacks

More information

A General Overview of Parametric Estimation and Inference Techniques.

A General Overview of Parametric Estimation and Inference Techniques. A General Overview of Parametric Estimation and Inference Techniques. Moulinath Banerjee University of Michigan September 11, 2012 The object of statistical inference is to glean information about an underlying

More information

Math 2412 Activity 2(Due by EOC Feb. 27) Find the quadratic function that satisfies the given conditions. Show your work!

Math 2412 Activity 2(Due by EOC Feb. 27) Find the quadratic function that satisfies the given conditions. Show your work! Math 4 Activity (Due by EOC Feb 7) Find the quadratic function that satisfies the given conditions Show your work! The graph has a verte at 5, and it passes through the point, 0 7 The graph passes through

More information

Chapter 5. Statistical Models in Simulations 5.1. Prof. Dr. Mesut Güneş Ch. 5 Statistical Models in Simulations

Chapter 5. Statistical Models in Simulations 5.1. Prof. Dr. Mesut Güneş Ch. 5 Statistical Models in Simulations Chapter 5 Statistical Models in Simulations 5.1 Contents Basic Probability Theory Concepts Discrete Distributions Continuous Distributions Poisson Process Empirical Distributions Useful Statistical Models

More information

Monte Carlo Integration I

Monte Carlo Integration I Monte Carlo Integration I Digital Image Synthesis Yung-Yu Chuang with slides by Pat Hanrahan and Torsten Moller Introduction L o p,ωo L e p,ωo s f p,ωo,ω i L p,ω i cosθ i i d The integral equations generally

More information

Microelectronic Devices and Circuits Lecture 9 - MOS Capacitors I - Outline Announcements Problem set 5 -

Microelectronic Devices and Circuits Lecture 9 - MOS Capacitors I - Outline Announcements Problem set 5 - 6.012 - Microelectronic Devices and Circuits Lecture 9 - MOS Capacitors I - Outline Announcements Problem set 5 - Posted on Stellar. Due net Wednesday. Qualitative description - MOS in thermal equilibrium

More information

CHAPTER 5. Department of Medical Physics, University of the Free State, Bloemfontein, South Africa

CHAPTER 5. Department of Medical Physics, University of the Free State, Bloemfontein, South Africa CHAPTE 5 STATISTICS FO ADIATIO MEASUEMET M.G. LÖTTE Department of Medical Physics, University of the Free State, Bloemfontein, South Africa 5.1. SOUCES OF EO I UCLEA MEDICIE MEASUEMET Measurement errors

More information

SECTION 4-3 Approximating Real Zeros of Polynomials Polynomial and Rational Functions

SECTION 4-3 Approximating Real Zeros of Polynomials Polynomial and Rational Functions Polynomial and Rational Functions 79. P() 9 9 8. P() 6 6 8 7 8 8. The solutions to the equation are all the cube roots of. (A) How many cube roots of are there? (B) is obviously a cube root of ; find all

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

Sections 5.1: Areas and Distances

Sections 5.1: Areas and Distances Sections.: Areas and Distances In this section we shall consider problems closely related to the problems we considered at the beginning of the semester (the tangent and velocity problems). Specifically,

More information

Math 1020 ANSWER KEY TEST 3 VERSION B Fall 2018

Math 1020 ANSWER KEY TEST 3 VERSION B Fall 2018 Printed Name: Section #: Instructor: Please do not ask questions during this eam. If you consider a question to be ambiguous, state your assumptions in the margin and do the best you can to provide the

More information

Data Analysis II. CU- Boulder CHEM-4181 Instrumental Analysis Laboratory. Prof. Jose-Luis Jimenez Spring 2007

Data Analysis II. CU- Boulder CHEM-4181 Instrumental Analysis Laboratory. Prof. Jose-Luis Jimenez Spring 2007 Data Analysis II CU- Boulder CHEM-48 Instrumental Analysis Laboratory Prof. Jose-Luis Jimenez Spring 007 Lecture will be posted on course web page based on lab manual, Skoog, web links Summary of Last

More information

A NEW CLASS OF EXPONENTIAL REGRESSION CUM RATIO ESTIMATOR IN TWO PHASE SAMPLING

A NEW CLASS OF EXPONENTIAL REGRESSION CUM RATIO ESTIMATOR IN TWO PHASE SAMPLING Hacettepe Journal of Mathematics and Statistics Volume 43 1) 014), 131 140 A NEW CLASS OF EXPONENTIAL REGRESSION CUM RATIO ESTIMATOR IN TWO PHASE SAMPLING Nilgun Ozgul and Hulya Cingi Received 07 : 03

More information

Chapter 4. Probability-The Study of Randomness

Chapter 4. Probability-The Study of Randomness Chapter 4. Probability-The Study of Randomness 4.1.Randomness Random: A phenomenon- individual outcomes are uncertain but there is nonetheless a regular distribution of outcomes in a large number of repetitions.

More information