Part six: Numerical differentiation and numerical integration

Size: px
Start display at page:

Download "Part six: Numerical differentiation and numerical integration"

Transcription

1 Part six: Numerical differentiation and numerical integration Numerical integration formulas. Rectangle rule = = 21.1 Trapezoidal rule = 21.2 Simpson 1/3 = Simpson 3/8 = =,,,, (21.3) (21.10) (21.15) (21.18) = (21.20) Numerical integration key points. Left hand side above formulas are for rule single application (eg..3,..15,..20) Right hand side above formulas are for rule multiple application (eg..10,..18) Lower bound of integration: a Upper bound of integration: b Keep in mind that if a single rule is being used in the computation of an area then all x axis points used in the evaluation of the function must be equidistant from each other. A.Cervantes MN Summary Page 1

2 Single application of Rectangle rule There is a single evaluation of the function: x m is located at the middle point between a and b = a b Single application of Trapezoidal rule There are two evaluations of the function:, Each value of x for the evaluation points coincide with the integration bounds a b Single application of Simpson 1/3 rule There are three evaluations of the function:,, x 0 and x 2 coincide with the integration bounds a b Single application of Simpson 3/8 rule There are four evaluations of the function:,,, x 0 and x 3 coincide with the integration bounds a b A.Cervantes MN Summary Page 2

3 Multiple application of Rectangle rule Rectangle rule sampled points: For n applications of rectangle rule we ll have n samples First sample x location: x1 = a + inc /2 Example for 4 rectangles: n= a b x 1 x 2 x 3 x 4 Multiple application of Trapezoidal rule Trapezoidal rule sampled points:, For n applications of trapezoidal rule we ll have 2n samples Each value of x for the evaluation points coincide with the integration bounds Example for 4 trapezoids: n= a b x 0 x 1 x 2 x 3 x 1 x 2 x 3 x 4 Multiple application of Simpson 1/3 rule There are three evaluations of the function:,, x 0 and x 2 coincide with the integration bounds a b A.Cervantes MN Summary Page 3

4 Multiple application of Simpson 3/8 rule There are four evaluations of the function:,,, x 0 and x 3 coincide with the integration bounds a b Chapter 3 Absolute true error = E t = true value calculated value (3.2) Absolute relative (fractional) true error = Absolute relative (%) true error = %= 100% (3.3) Part two: Roots 5.2 Bisection method (closed method) Open methods 6.1 Fixed point simple iteration method Given f(x), equate f(x) to zero and solve for any x in order to get x = g(x) = ) (6.2) Example1: 2+3=0 = Example2: sen x = 0 x = sen x + x Convergencia por método gráfico de las dos curvas Reformular f(x) = 0 como = entonces graficar = y = 6.2 Newton-Raphson method From figure 6.5 we get the slope: = = (6.6) A.Cervantes MN Summary Page 4

5 6.3 Secant method Having an additional initial point the rate of change is used as an aprox of f (x) = (6.7) Método de la secante modificado = (6.8) A.Cervantes MN Summary Page 5

6 Systems of linear equations. *Inverse of a Matrix using Minors, Cofactors and Adjugate Montante method Excel: minverse( arraya ) Scilab commands: inv( A ), A^-1, 1/A, (See examples of above methods in MN examples file.) *Solving a linear system (finding the unknown variables vector) Gauss elimination method (with backward substitution) Montante method Excel: mmult( minverse( arraya ), arrayb) ) Scilab Commands: for entire unknown variable vector inv(a) * B ; A^-1 * B ; 1/A * B ; A \ B for individual unknown variable X i (Cramer s rule) det( A mi ) / det( A ) define a Matrix by listing its elements define a Matrix by using other (smaller and larger) matrices A.Cervantes MN Summary Page 6

7 Part five: Curve fitting. Least-Squares Regression 17.1 LINEAR REGRESSION (Least-Squares Linear Regression) Fitting a straight line to a set of paired observations: (x1, y1), (x2, y2),..., (xn, yn). Math expression for a straight line: = + + ; where a 0 is the intercept; a 1 is the slope; e is the error or residual Examples of some criteria for best fit that are inadequate for regression: (a) minimize the sum of the residuals, = inadequate for regression since any straight line passing through the midpoint of the connecting line (except a perfectly vertical line) results in a minimum value of Eq. (17.2) equal to zero because the errors cancel. (b) minimize the sum of the absolute values of the residuals, = inadequate for regression since for the four points shown, any straight line falling within the dashed lines will minimize the sum of the absolute values. Thus, this criterion also does not yield a unique best fit. (c) minimizes the maximum error of any individual point. inadequate for regression because it gives undue influence to an outlier, that is, a single point with a large error. The above criteria could work for some particular cases, but NOT for a general case. Rather than this we ll minimize the sum of the squares of the residuals between the measured y and the y calculated with the linear model: = = =,, (17.3) To determine values for a 0 and a 1, Eq. (17.3) is differentiated with respect to each coefficient: = 2 A.Cervantes MN Summary Page 7

8 = 2[ ] Setting these derivatives equal to zero will result in a minimum Sr. If this is done, the equations can be expressed as cero: 0= 0= Resulting in a set of two simultaneous linear equations with two unknowns (a 0 and a 1) known as normal equations: + = + = That can be solved simultaneously, = (17.6) = (17.7) *Use of Excel Analysis ToolPack for Linear regression Linearization of not linear equations Equation: Exponential = Power function: = Saturated Growth- Rate: = + To linearize: ln=ln + ln ln=ln + log= log+log 1 = axis: ln y vs x log y vs log x 1/y vs 1/x Slope: Intercept: 1 A.Cervantes MN Summary Page 8

9 17.2 Polynomial regression (order 2) Para ajustar a la línea de regresión cuadrática: = se resuelve el siguiente sistema de ecuaciones lineales: + + = + + = (17.19) + + = Nota: todas las sumatorias son para i=1 hasta n Para encontrar la línea de regresión polinomial de grado m de manera similar habría que resolver un sistema de m+1 ecuaciones lineales simultáneas Regresión lineal múltiple Si y es una función lineal de x 1 y x 2 como en: = A.Cervantes MN Summary Page 9

10 se resuelve el siguiente sistema de ecuaciones lineales: + + = + + = (17.22) + + = sumatorias son para i=1 hasta n Nota: todas las *Use of Excel Analysis ToolPack for Multiple Linear regression A.Cervantes MN Summary Page 10

Algebra I Aim: How do we determine the equation of a function from its graph? HW: "Vacations" Worksheet

Algebra I Aim: How do we determine the equation of a function from its graph? HW: Vacations Worksheet Algebra I HW: "Vacations" Worksheet DO NOW 1) Name three points on the line graphed below Nombre tres puntos en la línea graficada por debajo 2) Write the equation (function rule) for the line Escribir

More information

Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error. 2- Fixed point

Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error. 2- Fixed point Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error In this method we assume initial value of x, and substitute in the equation. Then modify x and continue till we

More information

by Martin Mendez, UASLP Copyright 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

by Martin Mendez, UASLP Copyright 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 5 by Martin Mendez, 1 Roots of Equations Part Why? b m b a + b + c = 0 = aa 4ac But a 5 4 3 + b + c + d + e + f = 0 sin + = 0 =? =? by Martin Mendez, Nonlinear Equation Solvers Bracketing Graphical

More information

TABLE OF CONTENTS INTRODUCTION, APPROXIMATION & ERRORS 1. Chapter Introduction to numerical methods 1 Multiple-choice test 7 Problem set 9

TABLE OF CONTENTS INTRODUCTION, APPROXIMATION & ERRORS 1. Chapter Introduction to numerical methods 1 Multiple-choice test 7 Problem set 9 TABLE OF CONTENTS INTRODUCTION, APPROXIMATION & ERRORS 1 Chapter 01.01 Introduction to numerical methods 1 Multiple-choice test 7 Problem set 9 Chapter 01.02 Measuring errors 11 True error 11 Relative

More information

BEKG 2452 NUMERICAL METHODS Solution of Nonlinear Equations

BEKG 2452 NUMERICAL METHODS Solution of Nonlinear Equations BEKG 2452 NUMERICAL METHODS Solution of Nonlinear Equations Ser Lee Loh a, Wei Sen Loi a a Fakulti Kejuruteraan Elektrik Universiti Teknikal Malaysia Melaka Lesson Outcome Upon completion of this lesson,

More information

BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination December, 2015 BCS-054 : COMPUTER ORIENTED NUMERICAL TECHNIQUES

BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination December, 2015 BCS-054 : COMPUTER ORIENTED NUMERICAL TECHNIQUES No. of Printed Pages : 5 BCS-054 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination December, 2015 058b9 BCS-054 : COMPUTER ORIENTED NUMERICAL TECHNIQUES Time : 3 hours Maximum Marks

More information

Curve Fitting. Objectives

Curve Fitting. Objectives Curve Fitting Objectives Understanding the difference between regression and interpolation. Knowing how to fit curve of discrete with least-squares regression. Knowing how to compute and understand the

More information

UNIT 5: SIMULTANEOUS EQUATIONS (SYSTEMS OF EQUATIONS)

UNIT 5: SIMULTANEOUS EQUATIONS (SYSTEMS OF EQUATIONS) UNIT 5: SIMULTANEOUS EQUATIONS (SYSTEMS OF EQUATIONS) Simultaneous linear equations (Systems of linear equations): A system of linear equations is a collection of linear equations with the same variables.

More information

Review. Numerical Methods Lecture 22. Prof. Jinbo Bi CSE, UConn

Review. Numerical Methods Lecture 22. Prof. Jinbo Bi CSE, UConn Review Taylor Series and Error Analysis Roots of Equations Linear Algebraic Equations Optimization Numerical Differentiation and Integration Ordinary Differential Equations Partial Differential Equations

More information

k + ln x 2, para x 0, k, en el punto en que x = 2, tiene la 1. La normal a la curva y = x

k + ln x 2, para x 0, k, en el punto en que x = 2, tiene la 1. La normal a la curva y = x 1 1. La normal a la curva = k + ln, para 0, k, en el punto en que =, tiene la ecuación 3 + = b,donde b. halle eactamente el valor de k. Answer:...... (Total 6 puntos).. Sea f la function,tal que, f ( )

More information

NUMERICAL METHODS. lor CHEMICAL ENGINEERS. Using Excel', VBA, and MATLAB* VICTOR J. LAW. CRC Press. Taylor & Francis Group

NUMERICAL METHODS. lor CHEMICAL ENGINEERS. Using Excel', VBA, and MATLAB* VICTOR J. LAW. CRC Press. Taylor & Francis Group NUMERICAL METHODS lor CHEMICAL ENGINEERS Using Excel', VBA, and MATLAB* VICTOR J. LAW CRC Press Taylor & Francis Group Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup,

More information

Data Fitting and Uncertainty

Data Fitting and Uncertainty TiloStrutz Data Fitting and Uncertainty A practical introduction to weighted least squares and beyond With 124 figures, 23 tables and 71 test questions and examples VIEWEG+ TEUBNER IX Contents I Framework

More information

GENG2140, S2, 2012 Week 7: Curve fitting

GENG2140, S2, 2012 Week 7: Curve fitting GENG2140, S2, 2012 Week 7: Curve fitting Curve fitting is the process of constructing a curve, or mathematical function, f(x) that has the best fit to a series of data points Involves fitting lines and

More information

Numerical Methods in Physics and Astrophysics

Numerical Methods in Physics and Astrophysics Kostas Kokkotas 2 October 20, 2014 2 http://www.tat.physik.uni-tuebingen.de/ kokkotas Kostas Kokkotas 3 TOPICS 1. Solving nonlinear equations 2. Solving linear systems of equations 3. Interpolation, approximation

More information

CHAPTER 4 ROOTS OF EQUATIONS

CHAPTER 4 ROOTS OF EQUATIONS CHAPTER 4 ROOTS OF EQUATIONS Chapter 3 : TOPIC COVERS (ROOTS OF EQUATIONS) Definition of Root of Equations Bracketing Method Graphical Method Bisection Method False Position Method Open Method One-Point

More information

Hence a root lies between 1 and 2. Since f a is negative and f(x 0 ) is positive The root lies between a and x 0 i.e. 1 and 1.

Hence a root lies between 1 and 2. Since f a is negative and f(x 0 ) is positive The root lies between a and x 0 i.e. 1 and 1. The Bisection method or BOLZANO s method or Interval halving method: Find the positive root of x 3 x = 1 correct to four decimal places by bisection method Let f x = x 3 x 1 Here f 0 = 1 = ve, f 1 = ve,

More information

Linear Algebra II (finish from last time) Root finding

Linear Algebra II (finish from last time) Root finding Lecture 5: Topics: Linear lgebra II (finish from last time) Root finding -Cross product of two vectors -Finding roots of linear equations -Finding roots of nonlinear equations HW: HW 1, Part 3-4 given

More information

M.SC. PHYSICS - II YEAR

M.SC. PHYSICS - II YEAR MANONMANIAM SUNDARANAR UNIVERSITY DIRECTORATE OF DISTANCE & CONTINUING EDUCATION TIRUNELVELI 627012, TAMIL NADU M.SC. PHYSICS - II YEAR DKP26 - NUMERICAL METHODS (From the academic year 2016-17) Most Student

More information

Numerical Methods for Engineers. and Scientists. Applications using MATLAB. An Introduction with. Vish- Subramaniam. Third Edition. Amos Gilat.

Numerical Methods for Engineers. and Scientists. Applications using MATLAB. An Introduction with. Vish- Subramaniam. Third Edition. Amos Gilat. Numerical Methods for Engineers An Introduction with and Scientists Applications using MATLAB Third Edition Amos Gilat Vish- Subramaniam Department of Mechanical Engineering The Ohio State University Wiley

More information

Numerical Methods in Physics and Astrophysics

Numerical Methods in Physics and Astrophysics Kostas Kokkotas 2 October 17, 2017 2 http://www.tat.physik.uni-tuebingen.de/ kokkotas Kostas Kokkotas 3 TOPICS 1. Solving nonlinear equations 2. Solving linear systems of equations 3. Interpolation, approximation

More information

Saxon Advanced Mathematics Scope and Sequence

Saxon Advanced Mathematics Scope and Sequence hmhco.com Saxon Advanced Mathematics Scope and Sequence Foundations Calculator Perform two-variable analysis Use graphing calculators Find roots of equations Solve systems of equations Exponentials and

More information

Mathematics, Algebra, and Geometry

Mathematics, Algebra, and Geometry Mathematics, Algebra, and Geometry by Satya http://www.thesatya.com/ Contents 1 Algebra 1 1.1 Logarithms............................................ 1. Complex numbers........................................

More information

Zeroes of Transcendental and Polynomial Equations. Bisection method, Regula-falsi method and Newton-Raphson method

Zeroes of Transcendental and Polynomial Equations. Bisection method, Regula-falsi method and Newton-Raphson method Zeroes of Transcendental and Polynomial Equations Bisection method, Regula-falsi method and Newton-Raphson method PRELIMINARIES Solution of equation f (x) = 0 A number (real or complex) is a root of the

More information

Quiz ) Locate your 1 st order neighbors. 1) Simplify. Name Hometown. Name Hometown. Name Hometown.

Quiz ) Locate your 1 st order neighbors. 1) Simplify. Name Hometown. Name Hometown. Name Hometown. Quiz 1) Simplify 9999 999 9999 998 9999 998 2) Locate your 1 st order neighbors Name Hometown Me Name Hometown Name Hometown Name Hometown Solving Linear Algebraic Equa3ons Basic Concepts Here only real

More information

MTH603 FAQ + Short Questions Answers.

MTH603 FAQ + Short Questions Answers. Absolute Error : Accuracy : The absolute error is used to denote the actual value of a quantity less it s rounded value if x and x* are respectively the rounded and actual values of a quantity, then absolute

More information

An optimal sixteenth order convergent method to solve nonlinear equations

An optimal sixteenth order convergent method to solve nonlinear equations Lecturas Matemáticas Volumen 36 (2) (2015), páginas 167-177 ISSN 0120 1980 An optimal sixteenth order convergent method to solve nonlinear equations Un método convergente de orden dieciséis para resolver

More information

Virtual University of Pakistan

Virtual University of Pakistan Virtual University of Pakistan File Version v.0.0 Prepared For: Final Term Note: Use Table Of Content to view the Topics, In PDF(Portable Document Format) format, you can check Bookmarks menu Disclaimer:

More information

sum of squared error.

sum of squared error. IT 131 MATHEMATCS FOR SCIENCE LECTURE NOTE 6 LEAST SQUARES REGRESSION ANALYSIS and DETERMINANT OF A MATRIX Source: Larson, Edwards, Falvo (2009): Elementary Linear Algebra, Sixth Edition You will now look

More information

Introductory Numerical Analysis

Introductory Numerical Analysis Introductory Numerical Analysis Lecture Notes December 16, 017 Contents 1 Introduction to 1 11 Floating Point Numbers 1 1 Computational Errors 13 Algorithm 3 14 Calculus Review 3 Root Finding 5 1 Bisection

More information

Engineering. Mathematics. GATE 2019 and ESE 2019 Prelims. For. Comprehensive Theory with Solved Examples

Engineering. Mathematics. GATE 2019 and ESE 2019 Prelims. For. Comprehensive Theory with Solved Examples Thoroughly Revised and Updated Engineering Mathematics For GATE 2019 and ESE 2019 Prelims Comprehensive Theory with Solved Examples Including Previous Solved Questions of GATE (2003-2018) and ESE-Prelims

More information

Math 1 Unit 1 EOC Review

Math 1 Unit 1 EOC Review Math 1 Unit 1 EOC Review Name: Solving Equations (including Literal Equations) - Get the variable to show what it equals to satisfy the equation or inequality - Steps (each step only where necessary):

More information

Finding Roots of Equations

Finding Roots of Equations Finding Roots of Equations Solution Methods Overview Bisection/Half-interval Search Method of false position/regula Falsi Secant Method Newton Raphson Iteration Method Many more. Open Methods Bracketing

More information

Math 1 Unit 1 EOC Review

Math 1 Unit 1 EOC Review Math 1 Unit 1 EOC Review Solving Equations (including Literal Equations) - Get the variable to show what it equals to satisfy the equation or inequality - Steps (each step only where necessary): 1. Distribute

More information

Excel for Scientists and Engineers Numerical Method s. E. Joseph Billo

Excel for Scientists and Engineers Numerical Method s. E. Joseph Billo Excel for Scientists and Engineers Numerical Method s E. Joseph Billo Detailed Table of Contents Preface Acknowledgments About the Author Chapter 1 Introducing Visual Basic for Applications 1 Chapter

More information

Numerical Analysis Fall. Roots: Open Methods

Numerical Analysis Fall. Roots: Open Methods Numerical Analysis 2015 Fall Roots: Open Methods Open Methods Open methods differ from bracketing methods, in that they require only a single starting value or two starting values that do not necessarily

More information

ES-2 Lecture: More Least-squares Fitting. Spring 2017

ES-2 Lecture: More Least-squares Fitting. Spring 2017 ES-2 Lecture: More Least-squares Fitting Spring 2017 Outline Quick review of least-squares line fitting (also called `linear regression ) How can we find the best-fit line? (Brute-force method is not efficient)

More information

North Carolina MATH I (Traditional) Pacing Guide

North Carolina MATH I (Traditional) Pacing Guide North Carolina MATH I (Traditional) 2017-2018 Pacing Guide Note: The eight Standards for Mathematical Practice outlined by the Common Core describe the varieties of expertise that mathematics educators

More information

The iteration formula for to find the root of the equation

The iteration formula for to find the root of the equation SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES SUBJECT: NUMERICAL METHODS & LINEAR PROGRAMMING UNIT II SOLUTIONS OF EQUATION 1. If is continuous in then under

More information

Standards for Mathematical Practice. Number and Quantity. Rewrite algebraic expressions with integer exponents using the properties of exponents.

Standards for Mathematical Practice. Number and Quantity. Rewrite algebraic expressions with integer exponents using the properties of exponents. North Carolina Standard Course of Study North Carolina Math 1 1. Make sense of problems and persevere in solving them. 2. Reason abstractly and quantitatively. 3. Construct viable arguments and critique

More information

A New Modification of Newton s Method

A New Modification of Newton s Method A New Modification of Newton s Method Vejdi I. Hasanov, Ivan G. Ivanov, Gurhan Nedjibov Laboratory of Mathematical Modelling, Shoumen University, Shoumen 971, Bulgaria e-mail: v.hasanov@@fmi.shu-bg.net

More information

SECTION 7: CURVE FITTING. MAE 4020/5020 Numerical Methods with MATLAB

SECTION 7: CURVE FITTING. MAE 4020/5020 Numerical Methods with MATLAB SECTION 7: CURVE FITTING MAE 4020/5020 Numerical Methods with MATLAB 2 Introduction Curve Fitting 3 Often have data,, that is a function of some independent variable,, but the underlying relationship is

More information

Sample Final Exam. Math S o l u t i o n s. 1. Three points are given: A = ( 2, 2), B = (2, 4), C = ( 4, 0)

Sample Final Exam. Math S o l u t i o n s. 1. Three points are given: A = ( 2, 2), B = (2, 4), C = ( 4, 0) Math 0031 Sample Final Exam S o l u t i o n s 1. Three points are given: A = ( 2, 2), B = (2, 4), C = ( 4, 0) (a) (5 points) Find the midpoint D of the segment with endpoints B and C. ( 2 + ( 4) D =, 4

More information

Theory of signals and images I. Dr. Victor Castaneda

Theory of signals and images I. Dr. Victor Castaneda Theory of signals and images I Dr. Victor Castaneda Image as a function Think of an image as a function, f, f: R 2 R I=f(x, y) gives the intensity at position (x, y) The image only is defined over a rectangle,

More information

MATHEMATICS. Course Syllabus. Section A: Linear Algebra. Subject Code: MA. Course Structure. Ordinary Differential Equations

MATHEMATICS. Course Syllabus. Section A: Linear Algebra. Subject Code: MA. Course Structure. Ordinary Differential Equations MATHEMATICS Subject Code: MA Course Structure Sections/Units Section A Section B Section C Linear Algebra Complex Analysis Real Analysis Topics Section D Section E Section F Section G Section H Section

More information

MATH 1301, Practice problems

MATH 1301, Practice problems MATH 1301, Practice problems 1. For each of the following, denote Ann s age by x, choose the equation(s) (may be more than one) that describes the statement, and find x. (a) In three years, Ann will be

More information

Mathematical Methods for Numerical Analysis and Optimization

Mathematical Methods for Numerical Analysis and Optimization Biyani's Think Tank Concept based notes Mathematical Methods for Numerical Analysis and Optimization (MCA) Varsha Gupta Poonam Fatehpuria M.Sc. (Maths) Lecturer Deptt. of Information Technology Biyani

More information

Non-linear least squares

Non-linear least squares Non-linear least squares Concept of non-linear least squares We have extensively studied linear least squares or linear regression. We see that there is a unique regression line that can be determined

More information

USHA RAMA COLLEGE OF ENGINEERING & TECHNOLOGY

USHA RAMA COLLEGE OF ENGINEERING & TECHNOLOGY Code No: R007/R0 Set No. I B.Tech I Semester Supplementary Examinations, Feb/Mar 04 MATHEMATICAL METHODS ( Common to Civil Engineering, Electrical & Electronics Engineering, Computer Science & Engineering,

More information

Newton-Raphson Type Methods

Newton-Raphson Type Methods Int. J. Open Problems Compt. Math., Vol. 5, No. 2, June 2012 ISSN 1998-6262; Copyright c ICSRS Publication, 2012 www.i-csrs.org Newton-Raphson Type Methods Mircea I. Cîrnu Department of Mathematics, Faculty

More information

Math 122 Fall Unit Test 1 Review Problems Set A

Math 122 Fall Unit Test 1 Review Problems Set A Math Fall 8 Unit Test Review Problems Set A We have chosen these problems because we think that they are representative of many of the mathematical concepts that we have studied. There is no guarantee

More information

Edexcel GCE Further Pure Mathematics (FP1) Required Knowledge Information Sheet. Daniel Hammocks

Edexcel GCE Further Pure Mathematics (FP1) Required Knowledge Information Sheet. Daniel Hammocks Edexcel GCE Further Pure Mathematics (FP1) Required Knowledge Information Sheet FP1 Formulae Given in Mathematical Formulae and Statistical Tables Booklet Summations o =1 2 = 1 + 12 + 1 6 o =1 3 = 1 64

More information

FACULTY OF ENGINEERING/EUROPEAN UNIVERSITY OF LEFKE MATH 224 (MATH 208/302/305) ENGINEERING MATHEMATICS (NUMERICAL METHODS) SPRING FINAL EXAM

FACULTY OF ENGINEERING/EUROPEAN UNIVERSITY OF LEFKE MATH 224 (MATH 208/302/305) ENGINEERING MATHEMATICS (NUMERICAL METHODS) SPRING FINAL EXAM Page 1 / 5 FACULTY OF ENGINEERING/EUROPEAN UNIVERSITY OF LEFKE MATH 224 (MATH 208/302/305) ENGINEERING MATHEMATICS (NUMERICAL METHODS) SPRING 14-15 FINAL EXAM Date: 10. 06. 2015 Instructor: Prof. Dr. Hüseyin

More information

Numerical Methods Lecture 3

Numerical Methods Lecture 3 Numerical Methods Lecture 3 Nonlinear Equations by Pavel Ludvík Introduction Definition (Root or zero of a function) A root (or a zero) of a function f is a solution of an equation f (x) = 0. We learn

More information

Solution of Nonlinear Equations

Solution of Nonlinear Equations Solution of Nonlinear Equations In many engineering applications, there are cases when one needs to solve nonlinear algebraic or trigonometric equations or set of equations. These are also common in Civil

More information

Common Core State Standards for Mathematics - High School

Common Core State Standards for Mathematics - High School to the Common Core State Standards for - High School I Table of Contents Number and Quantity... 1 Algebra... 1 Functions... 3 Geometry... 6 Statistics and Probability... 8 Copyright 2013 Pearson Education,

More information

Presentation by: H. Sarper. Chapter 2 - Learning Objectives

Presentation by: H. Sarper. Chapter 2 - Learning Objectives Chapter Basic Linear lgebra to accompany Introduction to Mathematical Programming Operations Research, Volume, th edition, by Wayne L. Winston and Munirpallam Venkataramanan Presentation by: H. Sarper

More information

Computational Methods. Solving Equations

Computational Methods. Solving Equations Computational Methods Solving Equations Manfred Huber 2010 1 Solving Equations Solving scalar equations is an elemental task that arises in a wide range of applications Corresponds to finding parameters

More information

Midterm Review. Igor Yanovsky (Math 151A TA)

Midterm Review. Igor Yanovsky (Math 151A TA) Midterm Review Igor Yanovsky (Math 5A TA) Root-Finding Methods Rootfinding methods are designed to find a zero of a function f, that is, to find a value of x such that f(x) =0 Bisection Method To apply

More information

Part I 5. Part II 2. Part III 8. Part IV 10. Part V 5 TOTAL 30

Part I 5. Part II 2. Part III 8. Part IV 10. Part V 5 TOTAL 30 Page 1 of 10 Name/SID SOLUTION UNIVERSITY OF CALIFORNIA, COLLEGE OF ENGINEERING E77: INTRODUCTION TO COMPUTER PROGRAMMINGFOR SCIENTISTS AND ENGINEERS Professor Raja Sengupta Spring 2007 2nd Midterm Exam

More information

p 1 p 0 (p 1, f(p 1 )) (p 0, f(p 0 )) The geometric construction of p 2 for the se- cant method.

p 1 p 0 (p 1, f(p 1 )) (p 0, f(p 0 )) The geometric construction of p 2 for the se- cant method. 80 CHAP. 2 SOLUTION OF NONLINEAR EQUATIONS f (x) = 0 y y = f(x) (p, 0) p 2 p 1 p 0 x (p 1, f(p 1 )) (p 0, f(p 0 )) The geometric construction of p 2 for the se- Figure 2.16 cant method. Secant Method The

More information

Convergence Conditions for the Secant Method

Convergence Conditions for the Secant Method CUBO A Mathematical Journal Vol.12, N ō 01, 161 174. March 2010 Convergence Conditions for the Secant Method Ioannis K. Argyros Department of Mathematics Sciences, Lawton, OK 73505, USA email: iargyros@cameron.edu

More information

2.29 Numerical Fluid Mechanics Spring 2015 Lecture 4

2.29 Numerical Fluid Mechanics Spring 2015 Lecture 4 2.29 Spring 2015 Lecture 4 Review Lecture 3 Truncation Errors, Taylor Series and Error Analysis Taylor series: 2 3 n n i1 i i i i i n f( ) f( ) f '( ) f ''( ) f '''( )... f ( ) R 2! 3! n! n1 ( n1) Rn f

More information

Jim Lambers MAT 460/560 Fall Semester Practice Final Exam

Jim Lambers MAT 460/560 Fall Semester Practice Final Exam Jim Lambers MAT 460/560 Fall Semester 2009-10 Practice Final Exam 1. Let f(x) = sin 2x + cos 2x. (a) Write down the 2nd Taylor polynomial P 2 (x) of f(x) centered around x 0 = 0. (b) Write down the corresponding

More information

1.8. Integration using Tables and CAS

1.8. Integration using Tables and CAS 1.. INTEGRATION USING TABLES AND CAS 39 1.. Integration using Tables and CAS The use of tables of integrals and Computer Algebra Systems allow us to find integrals very quickly without having to perform

More information

Reduction to the associated homogeneous system via a particular solution

Reduction to the associated homogeneous system via a particular solution June PURDUE UNIVERSITY Study Guide for the Credit Exam in (MA 5) Linear Algebra This study guide describes briefly the course materials to be covered in MA 5. In order to be qualified for the credit, one

More information

x is also called the abscissa y is also called the ordinate "If you can create a t-table, you can graph anything!"

x is also called the abscissa y is also called the ordinate If you can create a t-table, you can graph anything! Senior Math Section 6-1 Notes Rectangular Coordinates and Lines Label the following 1. quadrant 1 2. quadrant 2 3. quadrant 3 4. quadrant 4 5. origin 6. x-axis 7. y-axis 8. Ordered Pair (x, y) at (2, 1)

More information

Lecture 44. Better and successive approximations x2, x3,, xn to the root are obtained from

Lecture 44. Better and successive approximations x2, x3,, xn to the root are obtained from Lecture 44 Solution of Non-Linear Equations Regula-Falsi Method Method of iteration Newton - Raphson Method Muller s Method Graeffe s Root Squaring Method Newton -Raphson Method An approximation to the

More information

REVISTA INVESTIGACION OPERACIONAL VOL. 38, NO. 3, , 2017

REVISTA INVESTIGACION OPERACIONAL VOL. 38, NO. 3, , 2017 REVISTA INVESTIGACION OPERACIONAL VOL. 38, NO. 3, 247-251, 2017 LINEAR REGRESSION: AN ALTERNATIVE TO LOGISTIC REGRESSION THROUGH THE NON- PARAMETRIC REGRESSION Ernesto P. Menéndez*, Julia A. Montano**

More information

Mock Final Exam Name. Solve and check the linear equation. 1) (-8x + 8) + 1 = -7(x + 3) A) {- 30} B) {- 6} C) {30} D) {- 28}

Mock Final Exam Name. Solve and check the linear equation. 1) (-8x + 8) + 1 = -7(x + 3) A) {- 30} B) {- 6} C) {30} D) {- 28} Mock Final Exam Name Solve and check the linear equation. 1) (-8x + 8) + 1 = -7(x + 3) 1) A) {- 30} B) {- 6} C) {30} D) {- 28} First, write the value(s) that make the denominator(s) zero. Then solve the

More information

CURRICULUM CATALOG MATHEMATICS 1 (21032X0) NC

CURRICULUM CATALOG MATHEMATICS 1 (21032X0) NC 2018-19 CURRICULUM CATALOG MATHEMATICS 1 (21032X0) NC Table of Contents MATHEMATICS 1 (21032X0) NC COURSE OVERVIEW... 1 UNIT 1: FOUNDATIONS OF ALGEBRA... 1 UNIT 2: EQUATIONS AND INEQUALITIES... 1 UNIT

More information

MATH 2053 Calculus I Review for the Final Exam

MATH 2053 Calculus I Review for the Final Exam MATH 05 Calculus I Review for the Final Exam (x+ x) 9 x 9 1. Find the limit: lim x 0. x. Find the limit: lim x + x x (x ).. Find lim x (x 5) = L, find such that f(x) L < 0.01 whenever 0 < x

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. B) 6x + 4

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. B) 6x + 4 Math1420 Review Comprehesive Final Assessment Test Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Add or subtract as indicated. x + 5 1) x2

More information

Math 108 Final Exam Page 1 NO CALCULATORS OR CELL PHONES ALLOWED.

Math 108 Final Exam Page 1 NO CALCULATORS OR CELL PHONES ALLOWED. Math 108 Final Exam Page 1 Spring 2016 Answer Key NO CALCULATORS OR CELL PHONES ALLOWED. Write a coherent, well organized, properly notated process or you will not receive credit for your answer. ALL work

More information

2. If the discriminant of a quadratic equation is zero, then there (A) are 2 imaginary roots (B) is 1 rational root

2. If the discriminant of a quadratic equation is zero, then there (A) are 2 imaginary roots (B) is 1 rational root Academic Algebra II 1 st Semester Exam Mr. Pleacher Name I. Multiple Choice 1. Which is the solution of x 1 3x + 7? (A) x -4 (B) x 4 (C) x -4 (D) x 4. If the discriminant of a quadratic equation is zero,

More information

Index. Cambridge University Press Data Analysis for Physical Scientists: Featuring Excel Les Kirkup Index More information

Index. Cambridge University Press Data Analysis for Physical Scientists: Featuring Excel Les Kirkup Index More information χ 2 distribution, 410 χ 2 test, 410, 412 degrees of freedom, 414 accuracy, 176 adjusted coefficient of multiple determination, 323 AIC, 324 Akaike s Information Criterion, 324 correction for small data

More information

Solve the problem. Determine the center and radius of the circle. Use the given information about a circle to find its equation.

Solve the problem. Determine the center and radius of the circle. Use the given information about a circle to find its equation. Math1314-TestReview2-Spring2016 Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Solve the problem. 1) Is the point (-5, -3) on the circle defined

More information

MATE EXAMEN FINAL

MATE EXAMEN FINAL MATE7 - EXAMEN FINAL Apellidos Nombre: Instrucciones. Seleccione la alternativa que corresponde a la respuesta del problema. Encunetre el valor de la función. ) Let f() = 5. Find f(). A) 5 B) 5 C)5 D)

More information

MATH-1420 Review Concepts (Haugen)

MATH-1420 Review Concepts (Haugen) MATH-40 Review Concepts (Haugen) Unit : Equations, Inequalities, Functions, and Graphs Rational Expressions Determine the domain of a rational expression Simplify rational expressions -factor and then

More information

6.4 Determinants and Cramer s Rule

6.4 Determinants and Cramer s Rule 6.4 Determinants and Cramer s Rule Objectives Determinant of a 2 x 2 Matrix Determinant of an 3 x 3 Matrix Determinant of a n x n Matrix Cramer s Rule If a matrix is square (that is, if it has the same

More information

MATHEMATICAL METHODS INTERPOLATION

MATHEMATICAL METHODS INTERPOLATION MATHEMATICAL METHODS INTERPOLATION I YEAR BTech By Mr Y Prabhaker Reddy Asst Professor of Mathematics Guru Nanak Engineering College Ibrahimpatnam, Hyderabad SYLLABUS OF MATHEMATICAL METHODS (as per JNTU

More information

Mathematics 3 Curs /Q1 - First exam. 31/10/13 Grup M1 Lecturers: Núria Parés and Yolanda Vidal

Mathematics 3 Curs /Q1 - First exam. 31/10/13 Grup M1 Lecturers: Núria Parés and Yolanda Vidal Mathematics 3 Curs 013-014/Q1 - First exam. 31/10/13 Grup M1 Lecturers: Núria Parés and Yolanda Vidal Name: Calculator: [Generic Competency - 5% of the final grade of the subject a) Expresseu el nombre

More information

Estadística II Chapter 4: Simple linear regression

Estadística II Chapter 4: Simple linear regression Estadística II Chapter 4: Simple linear regression Chapter 4. Simple linear regression Contents Objectives of the analysis. Model specification. Least Square Estimators (LSE): construction and properties

More information

Appendix 8 Numerical Methods for Solving Nonlinear Equations 1

Appendix 8 Numerical Methods for Solving Nonlinear Equations 1 Appendix 8 Numerical Methods for Solving Nonlinear Equations 1 An equation is said to be nonlinear when it involves terms of degree higher than 1 in the unknown quantity. These terms may be polynomial

More information

Bindel, Spring 2012 Intro to Scientific Computing (CS 3220) Week 12: Monday, Apr 16. f(x) dx,

Bindel, Spring 2012 Intro to Scientific Computing (CS 3220) Week 12: Monday, Apr 16. f(x) dx, Panel integration Week 12: Monday, Apr 16 Suppose we want to compute the integral b a f(x) dx In estimating a derivative, it makes sense to use a locally accurate approximation to the function around the

More information

NC Math 1 Scope and Sequence A/B Day High School Refer to Unit Planning Organizers for Instructional Guidance

NC Math 1 Scope and Sequence A/B Day High School Refer to Unit Planning Organizers for Instructional Guidance Suggested Pacing: NC Math 1 Scope and Sequence 2017-2018 Unit Unit Title Days Week for Inspirational Math 5 1 Introduction to Functions & Equations 10 2A Linear Functions 7 Quarter 1 22 2A Linear Functions

More information

Even from Gregory-Leibniz series π could be computed: an example of how convergence of series can be accelerated

Even from Gregory-Leibniz series π could be computed: an example of how convergence of series can be accelerated Lecturas Matemáticas Volumen 27 (2006), páginas 2 25 Even from Gregory-Leibniz series could be computed: an example of how convergence of series can be accelerated Vito Lampret University of Ljubljana,

More information

Engg. Math. II (Unit-IV) Numerical Analysis

Engg. Math. II (Unit-IV) Numerical Analysis Dr. Satish Shukla of 33 Engg. Math. II (Unit-IV) Numerical Analysis Syllabus. Interpolation and Curve Fitting: Introduction to Interpolation; Calculus of Finite Differences; Finite Difference and Divided

More information

Approximation expressions for the large-angle period of a simple pendulum revisited

Approximation expressions for the large-angle period of a simple pendulum revisited ENSEÑANZA REVISTA MEXICANA DE FÍSICA E 54 (1) 59 64 JUNIO 008 Approximation expressions for the large-angle period of a simple pendulum revisited D. Amrani, P. Paradis and M. Beaudin Service des Enseignements

More information

Subatomic particle location charge mass

Subatomic particle location charge mass verview of subatomic particles Subatomic particle location charge mass proton (p + ) nucleus 1+ 1 amu (g/mol) Neutron (n 0 ) nucleus 0 1 amu (g/mol) Electron (e - ) Electron could in energy levels 1-0

More information

Matrices and Determinants

Matrices and Determinants Math Assignment Eperts is a leading provider of online Math help. Our eperts have prepared sample assignments to demonstrate the quality of solution we provide. If you are looking for mathematics help

More information

PARTIAL DIFFERENTIAL EQUATIONS

PARTIAL DIFFERENTIAL EQUATIONS MATHEMATICAL METHODS PARTIAL DIFFERENTIAL EQUATIONS I YEAR B.Tech By Mr. Y. Prabhaker Reddy Asst. Professor of Mathematics Guru Nanak Engineering College Ibrahimpatnam, Hyderabad. SYLLABUS OF MATHEMATICAL

More information

Preface. 2 Linear Equations and Eigenvalue Problem 22

Preface. 2 Linear Equations and Eigenvalue Problem 22 Contents Preface xv 1 Errors in Computation 1 1.1 Introduction 1 1.2 Floating Point Representation of Number 1 1.3 Binary Numbers 2 1.3.1 Binary number representation in computer 3 1.4 Significant Digits

More information

Counting domino trains

Counting domino trains Boletín de la Asociación Matemática Venezolana, Vol. XVIII, No. 2 (2011) 137 Counting domino trains Antonio M. Oller-Marcén. Abstract. In this paper we present a way to count the number of trains that

More information

5. Hand in the entire exam booklet and your computer score sheet.

5. Hand in the entire exam booklet and your computer score sheet. WINTER 2016 MATH*2130 Final Exam Last name: (PRINT) First name: Student #: Instructor: M. R. Garvie 19 April, 2016 INSTRUCTIONS: 1. This is a closed book examination, but a calculator is allowed. The test

More information

X. Numerical Methods

X. Numerical Methods X. Numerical Methods. Taylor Approximation Suppose that f is a function defined in a neighborhood of a point c, and suppose that f has derivatives of all orders near c. In section 5 of chapter 9 we introduced

More information

a) Prepare a normal probability plot of the effects. Which effects seem active?

a) Prepare a normal probability plot of the effects. Which effects seem active? Problema 8.6: R.D. Snee ( Experimenting with a large number of variables, in experiments in Industry: Design, Analysis and Interpretation of Results, by R. D. Snee, L.B. Hare, and J. B. Trout, Editors,

More information

F I F T H E D I T I O N. Introductory Methods of Numerical Analysis. S.S. Sastry

F I F T H E D I T I O N. Introductory Methods of Numerical Analysis. S.S. Sastry F I F T H E D I T I O N Introductory Methods of Numerical Analysis S.S. Sastry Introductory Methods of Numerical Analysis Introductory Methods of Numerical Analysis Fifth Edition S.S. SASTRY Formerly,

More information

The Solution of the Truncated Harmonic Oscillator Using Lie Groups

The Solution of the Truncated Harmonic Oscillator Using Lie Groups Advanced Studies in Theoretical Physics Vol. 11, 2017, no. 7, 327-335 HIKARI Ltd, www.m-hikari.com https://doi.org/10.12988/astp.2017.7521 The Solution of the Truncated Harmonic Oscillator Using Lie Groups

More information

Question Bank (I scheme )

Question Bank (I scheme ) Question Bank (I scheme ) Name of subject: Applied Mathematics Subject code: 22206/22224/22210/22201 Course : CH/CM/CE/EJ/IF/EE/ME Semester: II UNIT-3 (CO3) Unit Test : II (APPLICATION OF INTEGRATION)

More information

3.1 Introduction. Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x x 1.5 =0, tan x x =0.

3.1 Introduction. Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x x 1.5 =0, tan x x =0. 3.1 Introduction Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x 3 +1.5x 1.5 =0, tan x x =0. Practical existence test for roots: by intermediate value theorem, f C[a, b] & f(a)f(b)

More information