The Islamic University of Gaza Faculty of Engineering Civil Engineering Department. Numerical Analysis ECIV Chapter 5. Bracketing Methods

Size: px
Start display at page:

Download "The Islamic University of Gaza Faculty of Engineering Civil Engineering Department. Numerical Analysis ECIV Chapter 5. Bracketing Methods"

Transcription

1 The Islami University of Gaza Faulty of Engineering Civil Engineering Department Numerial Analysis ECIV 3306 Chapter 5 Braketing Methods Assoiate Prof. Mazen Abualtayef Civil Engineering Department, The Islami University of Gaza

2 PART II: ROOTS OF EQUATIONS Bisetion method Braketing Methods False Position Method Roots of Equations Open Methods System of Nonlinear Equations Roots of polynomials Simple fied point iteration Newton Raphson Seant Modified Newton Raphson Muller Method

3 Study Objetives for Part Two

4 ROOTS OF EQUATIONS Root of an equation: is the value of the equation variable whih make the equations = b b a b 0 2a 4a But a 5 b 4 3 d 2 e f 0? sin 0?

5 ROOTS OF EQUATIONS Non-omputer methods: - Closed form solution (not always available) - Graphial solution (inaurate) Numerial systemati methods suitable for omputers

6 Plot the funtion f() f() Graphial Solution roots f()=0 f()=0 The roots eist where f() rosses the -ais

7 Graphial Solution: Eample The parahutist veloity is mg ( 1 e What is the drag oeffiient needed to reah a veloity of f() 40 m/s if m=68.1 kg, t =10 s, g= 9.8 m/s 2 f f v ( ) ( ) t m m ) mg t (1 e ) (1 e v =14.75 Chek: F (14.75) = ~ 0.0 v (=14.75) = ~ 40 m/s ) 40

8 Numerial Systemati Methods I. Braketing Methods f() No roots or even number of roots f() Odd number of roots f( l )=+ve f( l )=+ve roots roots f( u )=+ve l u l u f( u )=-ve

9 Braketing Methods (ont.) Two initial guesses ( l and u ) are required for the root whih braket the root (s). If one root of a real and ontinuous funtion, f()=0, is bounded by values l, u then f( l ).f( u ) <0. (The funtion hanges sign on opposite sides of the root)

10

11

12 Braketing Methods 1. Bisetion Method Generally, if f() is real and ontinuous in the interval l to u and f ( l ).f( u )<0, then there is at least one real root between l and u to this funtion. The bisetion method, whih is alternatively alled binary hopping, interval halving, or Bolzano s method, is one type of inremental searh method in whih the interval is always divided in half. The interval at whih the funtion hanges sign is loated. Then the interval is divided in half with the root lies in the midpoint of the subinterval. This proess is repeated to obtained refined estimates.

13 f() Step 1: Choose lower l and upper u guesses for the root suh that: f( l ).f( u )<0 Step 2: The root estimate is: r = ( l + u )/2 Step 3: Subdivide the interval aording to: If (f( l ).f( r )<0) the root lies in the lower subinterval; set u = r and go to step 2. If (f( l ).f( r )>0) the root lies in the upper subinterval; set l = r and go to step 2. If (f( l ).f( r )=0) the root is r and stop f() l l f( u ) f( u ) r2 r = ( l + u )/2 r1 f( r1 ) f( r2 ) u u f( u ) f( u ) (f( l ).f( r )<0): u = r r = ( l + u )/2

14 Bisetion Method - Termination Criteria e t True X relaive true X X true Error : approimat e 100% Approimate relative Error e e a a X X X n r u u X X n r X X n1 r l l 100% 100% (Bisetion) : For the Bisetion Method e a > e t The omputation is terminated when e a beomes less than a ertain riterion (e a < e s )

15 Bisetion method: Eample The parahutist veloity is What is the drag oeffiient needed to reah a veloity of 40 m/s if m = 68.1 kg, t = 10 s, g= 9.8 m/s 2 f() ) ( t m e 1 mg v 40 e f v e 1 mg f t m ) (. ) ( ) ( ) (.

16 f ( ) (1 e ) Assume l =12 and u =16 f( l )=6.067 and f( u )= The root: r =( l + u )/2= Chek f(12).f(14) = =9.517 >0; the root lies between 14 and 16. f() Set l = 14 and u =16, thus the new root r =(14+ 16)/2= 15 f() (f(12).f(14)>0): l = Chek f(14).f(15) = = <0; the root lies bet. 14 and Set l = 14 and u =15, thus the new root r =(14+ 15)/2= 14.5 and so on... True Value at Xr =

17 Bisetion method: Eample In the previous eample, if the stopping riterion is e t = 0.5%; what is the root? True relaive Error : Approimate relative Error : e t X true X X approimat e true 100% e a X n r X X n r n1 r 100%

18 Bisetion method

19 Flow Chart Bisetion Start Input: l, u, e s, mai False f( l ). f( u )<0 i=0 e a =1.1e s while e a > e s & i <mai False r i i u 2 1 r Print: r, f( r ),e a, i Stop

20 u + l =0 True e a u u l l 100% Test=f( l ). f( r ) Test=0 True e a =0.0 Test<0 True u = r False l = r

21 Braketing Methods 2. False-position Method The bisetion method divides the interval l to u in half not aounting for the magnitudes of f( l ) and f( u ). For eample if f( l ) is loser to zero than f( u ), then it is more likely that the root will be loser to f( l ). The fat that the replaement of the urve by a straight line gives a false position of the root is the origin of the name, method of false position. It is also alled the linear interpolation method.

22 2. False-position Method False position method is an alternative approah where f( l ) and f( u ) are joined by a straight line; the intersetion of whih with the -ais represents and improved estimate of the root. f( r )

23 2. False-position Method -Proedure f( r )

24 2. False-position Method -Proedure

25 False-position Method -Proedure Step 1: Choose lower l and upper u guesses for the root suh that: f( l ).f( u )<0 Step 2: The root estimate is: Step 3: Subdivide the interval aording to: If (f( l ).f( r )<0) the root lies in the lower subinterval; u = r and go to step 2. If (f( l ).f( r )>0) the root lies in the upper subinterval; l = r and go to step 2. If (f( l ).f( r )=0) the root is r and stop

26 The parahutist veloity is What is the drag oeffiient needed to reah a f() False position method: Eample veloity of 40 m/s if m =68.1 kg, t =10 s, g= 9.8 m/s 2 f f ( ) ( ) v mg ( 1 e t m mg (1 e ) (1 e m t v ) ) 40

27 False position method: Eample 1. Assume l = 12 and u =16 f( l )= and f( u )= The root: r = f(12). f( ) = < 0; 3. The root lies between 12 and f() f ( ) 4. Assume l = 12 and u = , f( l )=6.067 and f( u )= f( l ).f( u )<0 5. The new root r = This has an approimate error of 0.79% (1 e )

28 False position method: Eample

29 Flow Chart False Position Start Input: l, 0, e s, mai False f( l ). f( u )<0 i=0 e a =1.1e s while e a > e s & i <mai False Print: r, f( r ),e a, i r i i u 1 f ( )( ) u l u f ( ) f ( ) l u Stop

30 i=1 or r =0 True e a r r0 100% r Test=f( l ). f( r ) Test=0 True e a =0.0 Test<0 l = r r0 = r False True u = r r0 = r

31 False Position Method-Eample 2

32 False Position Method-Eample 2

33 Eel Goal Seek Tool

34 Roots of Polynomials: Using Software Pakages MS Eel:Goal seek f()=-os

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

The gravitational phenomena without the curved spacetime

The gravitational phenomena without the curved spacetime The gravitational phenomena without the urved spaetime Mirosław J. Kubiak Abstrat: In this paper was presented a desription of the gravitational phenomena in the new medium, different than the urved spaetime,

More information

Scientific Computing. Roots of Equations

Scientific Computing. Roots of Equations ECE257 Numerical Methods and Scientific Computing Roots of Equations Today s s class: Roots of Equations Bracketing Methods Roots of Equations Given a function f(x), the roots are those values of x that

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

Today s class. Numerical differentiation Roots of equation Bracketing methods. Numerical Methods, Fall 2011 Lecture 4. Prof. Jinbo Bi CSE, UConn

Today s class. Numerical differentiation Roots of equation Bracketing methods. Numerical Methods, Fall 2011 Lecture 4. Prof. Jinbo Bi CSE, UConn Today s class Numerical differentiation Roots of equation Bracketing methods 1 Numerical Differentiation Finite divided difference First forward difference First backward difference Lecture 3 2 Numerical

More information

Chapter 2: One-dimensional Steady State Conduction

Chapter 2: One-dimensional Steady State Conduction 1 Chapter : One-imensional Steay State Conution.1 Eamples of One-imensional Conution Eample.1: Plate with Energy Generation an Variable Conutivity Sine k is variable it must remain insie the ifferentiation

More information

Chapter 2: Solution of First order ODE

Chapter 2: Solution of First order ODE 0 Chapter : Solution of irst order ODE Se. Separable Equations The differential equation of the form that is is alled separable if f = h g; In order to solve it perform the following steps: Rewrite the

More information

Nonlinear Equations. Chapter The Bisection Method

Nonlinear Equations. Chapter The Bisection Method Chapter 6 Nonlinear Equations Given a nonlinear function f(), a value r such that f(r) = 0, is called a root or a zero of f() For eample, for f() = e 016064, Fig?? gives the set of points satisfying y

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

Exact and Approximate Numbers:

Exact and Approximate Numbers: Eact and Approimate Numbers: The numbers that arise in technical applications are better described as eact numbers because there is not the sort of uncertainty in their values that was described above.

More information

Chapter IX. Roots of Equations

Chapter IX. Roots of Equations 14 Chapter IX Roots of Equations Root solving typially onsists of finding values of x whih satisfy a relationship suh as: 3 3 x + x = 1 + e x The problem an be restated as: Find the root of 3 f ( x) =

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

18 Numerical Integration of Functions

18 Numerical Integration of Functions Slightly moifie //9, /8/6 Firstly written at Marh 5 8 Numerial Integration of Funtions Introution Romberg Integration Gauss Quarature Aaptive Quarature Case Stuy: Root-Mean-Square Current DM869/Computational

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

Example - Newton-Raphson Method

Example - Newton-Raphson Method Eample - Newton-Raphson Method We now consider the following eample: minimize f( 3 3 + -- 4 4 Since f ( 3 2 + 3 3 and f ( 6 + 9 2 we form the following iteration: + n 3 ( n 3 3( n 2 ------------------------------------

More information

Numerical Methods. Roots of Equations

Numerical Methods. Roots of Equations Roots of Equations by Norhayati Rosli & Nadirah Mohd Nasir Faculty of Industrial Sciences & Technology norhayati@ump.edu.my, nadirah@ump.edu.my Description AIMS This chapter is aimed to compute the root(s)

More information

Examining Applied Rational Functions

Examining Applied Rational Functions HiMAP Pull-Out Setion: Summer 1990 Eamining Applied Rational Funtions Flod Vest Referenes Environmental Protetion Agen. Gas Mileage Guide. (Copies an usuall e otained from a loal new ar dealer.) Information

More information

CHAPTER 10 Flow in Open Channels

CHAPTER 10 Flow in Open Channels CHAPTER 10 Flow in Open Channels Chapter 10 / Flow in Open Channels Introdution 1 α os (1 0.) 1.159 rad or 66.4 10. QB Qdsinα ga g d /4( α sinα os α) 4 sin(1.159) 1 5 9.81 ( d / 64) 1.159 sin1.159os1.159)

More information

CHAPTER-II ROOTS OF EQUATIONS

CHAPTER-II ROOTS OF EQUATIONS CHAPTER-II ROOTS OF EQUATIONS 2.1 Introduction The roots or zeros of equations can be simply defined as the values of x that makes f(x) =0. There are many ways to solve for roots of equations. For some

More information

On the Quantum Theory of Radiation.

On the Quantum Theory of Radiation. Physikalishe Zeitshrift, Band 18, Seite 121-128 1917) On the Quantum Theory of Radiation. Albert Einstein The formal similarity between the hromati distribution urve for thermal radiation and the Maxwell

More information

7 Max-Flow Problems. Business Computing and Operations Research 608

7 Max-Flow Problems. Business Computing and Operations Research 608 7 Max-Flow Problems Business Computing and Operations Researh 68 7. Max-Flow Problems In what follows, we onsider a somewhat modified problem onstellation Instead of osts of transmission, vetor now indiates

More information

Normative and descriptive approaches to multiattribute decision making

Normative and descriptive approaches to multiattribute decision making De. 009, Volume 8, No. (Serial No.78) China-USA Business Review, ISSN 57-54, USA Normative and desriptive approahes to multiattribute deision making Milan Terek (Department of Statistis, University of

More information

UTC. Engineering 329. Proportional Controller Design. Speed System. John Beverly. Green Team. John Beverly Keith Skiles John Barker.

UTC. Engineering 329. Proportional Controller Design. Speed System. John Beverly. Green Team. John Beverly Keith Skiles John Barker. UTC Engineering 329 Proportional Controller Design for Speed System By John Beverly Green Team John Beverly Keith Skiles John Barker 24 Mar 2006 Introdution This experiment is intended test the variable

More information

4.4 Solving Systems of Equations by Matrices

4.4 Solving Systems of Equations by Matrices Setion 4.4 Solving Systems of Equations by Matries 1. A first number is 8 less than a seond number. Twie the first number is 11 more than the seond number. Find the numbers.. The sum of the measures of

More information

Root Finding: Close Methods. Bisection and False Position Dr. Marco A. Arocha Aug, 2014

Root Finding: Close Methods. Bisection and False Position Dr. Marco A. Arocha Aug, 2014 Root Finding: Close Methods Bisection and False Position Dr. Marco A. Arocha Aug, 2014 1 Roots Given function f(x), we seek x values for which f(x)=0 Solution x is the root of the equation or zero of the

More information

Joint simultaneous inversion of PP and PS angle gathers

Joint simultaneous inversion of PP and PS angle gathers Inversion of and angle gathers Joint simultaneous inversion of and angle gathers Brian H. ussell, aniel. Hampson, Keith Hirshe, and Janusz eron ABTACT e present a new approah to the joint simultaneous

More information

5.1 Composite Functions

5.1 Composite Functions SECTION. Composite Funtions 7. Composite Funtions PREPARING FOR THIS SECTION Before getting started, review the following: Find the Value of a Funtion (Setion., pp. 9 ) Domain of a Funtion (Setion., pp.

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

KAMILLA OLIVER AND HELMUT PRODINGER

KAMILLA OLIVER AND HELMUT PRODINGER THE CONTINUED RACTION EXPANSION O GAUSS HYPERGEOMETRIC UNCTION AND A NEW APPLICATION TO THE TANGENT UNCTION KAMILLA OLIVER AND HELMUT PRODINGER Abstrat Starting from a formula for tan(nx in the elebrated

More information

Cavity flow with surface tension past a flat plate

Cavity flow with surface tension past a flat plate Proeedings of the 7 th International Symposium on Cavitation CAV9 Paper No. ## August 7-, 9, Ann Arbor, Mihigan, USA Cavity flow with surfae tension past a flat plate Yuriy Savhenko Institute of Hydromehanis

More information

Stress triaxiality to evaluate the effective distance in the volumetric approach in fracture mechanics

Stress triaxiality to evaluate the effective distance in the volumetric approach in fracture mechanics IOSR Journal of ehanial and Civil Engineering (IOSR-JCE) e-issn: 78-1684,p-ISSN: 30-334X, Volume 11, Issue 6 Ver. IV (Nov- De. 014), PP 1-6 Stress triaxiality to evaluate the effetive distane in the volumetri

More information

Chapter 9. The excitation process

Chapter 9. The excitation process Chapter 9 The exitation proess qualitative explanation of the formation of negative ion states Ne and He in He-Ne ollisions an be given by using a state orrelation diagram. state orrelation diagram is

More information

Chapter 2 Solutions of Equations of One Variable

Chapter 2 Solutions of Equations of One Variable Chapter 2 Solutions of Equations of One Variable 2.1 Bisection Method In this chapter we consider one of the most basic problems of numerical approximation, the root-finding problem. This process involves

More information

Millennium Relativity Acceleration Composition. The Relativistic Relationship between Acceleration and Uniform Motion

Millennium Relativity Acceleration Composition. The Relativistic Relationship between Acceleration and Uniform Motion Millennium Relativity Aeleration Composition he Relativisti Relationship between Aeleration and niform Motion Copyright 003 Joseph A. Rybzyk Abstrat he relativisti priniples developed throughout the six

More information

A fast incremental-iterative procedure for ultimate strength analysis of composite cross-sections of arbitrary shape

A fast incremental-iterative procedure for ultimate strength analysis of composite cross-sections of arbitrary shape Computational ethods and Eperimental easurements XV 363 fast inremental-iterative proedure for ultimate strength analsis of omposite ross-setions of arbitrar shape C. G. Chiorean Tehnial Universit of Cluj-apoa

More information

2. The Energy Principle in Open Channel Flows

2. The Energy Principle in Open Channel Flows . The Energy Priniple in Open Channel Flows. Basi Energy Equation In the one-dimensional analysis of steady open-hannel flow, the energy equation in the form of Bernoulli equation is used. Aording to this

More information

Reliability-Based Approach for the Determination of the Required Compressive Strength of Concrete in Mix Design

Reliability-Based Approach for the Determination of the Required Compressive Strength of Concrete in Mix Design Reliability-Based Approah for the Determination of the Required Compressive Strength of Conrete in Mix Design Nader M Okasha To ite this version: Nader M Okasha. Reliability-Based Approah for the Determination

More information

Bisection and False Position Dr. Marco A. Arocha Aug, 2014

Bisection and False Position Dr. Marco A. Arocha Aug, 2014 Bisection and False Position Dr. Marco A. Arocha Aug, 2014 1 Given function f, we seek x values for which f(x)=0 Solution x is the root of the equation or zero of the function f Problem is known as root

More information

After the completion of this section the student should recall

After the completion of this section the student should recall Chapter I MTH FUNDMENTLS I. Sets, Numbers, Coordinates, Funtions ugust 30, 08 3 I. SETS, NUMERS, COORDINTES, FUNCTIONS Objetives: fter the ompletion of this setion the student should reall - the definition

More information

The Hanging Chain. John McCuan. January 19, 2006

The Hanging Chain. John McCuan. January 19, 2006 The Hanging Chain John MCuan January 19, 2006 1 Introdution We onsider a hain of length L attahed to two points (a, u a and (b, u b in the plane. It is assumed that the hain hangs in the plane under a

More information

NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR)

NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR) NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR) Autumn Session UNIT 1 Numerical analysis is the study of algorithms that uses, creates and implements algorithms for obtaining numerical solutions to problems

More information

A Queueing Model for Call Blending in Call Centers

A Queueing Model for Call Blending in Call Centers A Queueing Model for Call Blending in Call Centers Sandjai Bhulai and Ger Koole Vrije Universiteit Amsterdam Faulty of Sienes De Boelelaan 1081a 1081 HV Amsterdam The Netherlands E-mail: {sbhulai, koole}@s.vu.nl

More information

Eigenvalues of tridiagonal matrix using Strum Sequence and Gerschgorin theorem

Eigenvalues of tridiagonal matrix using Strum Sequence and Gerschgorin theorem Eigenvalues o tridiagonal matrix using Strum Sequene and Gershgorin theorem T.D.Roopamala Department o Computer Siene and Engg., Sri Jayahamarajendra College o Engineering Mysore INDIA roopa_td@yahoo.o.in

More information

A new initial search direction for nonlinear conjugate gradient method

A new initial search direction for nonlinear conjugate gradient method International Journal of Mathematis Researh. ISSN 0976-5840 Volume 6, Number 2 (2014), pp. 183 190 International Researh Publiation House http://www.irphouse.om A new initial searh diretion for nonlinear

More information

Practical and Efficient Evaluation of Inverse Functions

Practical and Efficient Evaluation of Inverse Functions J. C. HAYEN ORMATYC 017 TEXT PAGE A-1 Practical and Efficient Evaluation of Inverse Functions Jeffrey C. Hayen Oregon Institute of Technology (Jeffrey.Hayen@oit.edu) ORMATYC 017 J. C. HAYEN ORMATYC 017

More information

HIGHER SECONDARY FIRST YEAR MATHEMATICS

HIGHER SECONDARY FIRST YEAR MATHEMATICS HIGHER SECONDARY FIRST YEAR MATHEMATICS ANALYTICAL GEOMETRY Creative Questions Time :.5 Hrs Marks : 45 Part - I Choose the orret answer 0 = 0. The angle between the straight lines 4y y 0 is a) 0 30 b)

More information

On Certain Singular Integral Equations Arising in the Analysis of Wellbore Recharge in Anisotropic Formations

On Certain Singular Integral Equations Arising in the Analysis of Wellbore Recharge in Anisotropic Formations On Certain Singular Integral Equations Arising in the Analysis of Wellbore Reharge in Anisotropi Formations C. Atkinson a, E. Sarris b, E. Gravanis b, P. Papanastasiou a Department of Mathematis, Imperial

More information

Relative Maxima and Minima sections 4.3

Relative Maxima and Minima sections 4.3 Relative Maxima and Minima setions 4.3 Definition. By a ritial point of a funtion f we mean a point x 0 in the domain at whih either the derivative is zero or it does not exists. So, geometrially, one

More information

is the intuition: the derivative tells us the change in output y (from f(b)) in response to a change of input x at x = b.

is the intuition: the derivative tells us the change in output y (from f(b)) in response to a change of input x at x = b. Uses of differentials to estimate errors. Recall the derivative notation df d is the intuition: the derivative tells us the change in output y (from f(b)) in response to a change of input at = b. Eamples.

More information

CONDITIONAL CONFIDENCE INTERVAL FOR THE SCALE PARAMETER OF A WEIBULL DISTRIBUTION. Smail Mahdi

CONDITIONAL CONFIDENCE INTERVAL FOR THE SCALE PARAMETER OF A WEIBULL DISTRIBUTION. Smail Mahdi Serdia Math. J. 30 (2004), 55 70 CONDITIONAL CONFIDENCE INTERVAL FOR THE SCALE PARAMETER OF A WEIBULL DISTRIBUTION Smail Mahdi Communiated by N. M. Yanev Abstrat. A two-sided onditional onfidene interval

More information

CLASS NOTES Computational Methods for Engineering Applications I Spring 2015

CLASS NOTES Computational Methods for Engineering Applications I Spring 2015 CLASS NOTES Computational Methods for Engineering Applications I Spring 2015 Petros Koumoutsakos Gerardo Tauriello (Last update: July 2, 2015) IMPORTANT DISCLAIMERS 1. REFERENCES: Much of the material

More information

Chapter 5 Roots of Equations: Bracketing Models. Gab-Byung Chae

Chapter 5 Roots of Equations: Bracketing Models. Gab-Byung Chae Chapter 5 Roots of Equations: Bracketing Models Gab-Byung Chae 2008 4 17 2 Chapter Objectives Studying Bracketing Methods Understanding what roots problems are and where they occur in engineering and science.

More information

Tutorial 8: Solutions

Tutorial 8: Solutions Tutorial 8: Solutions 1. * (a) Light from the Sun arrives at the Earth, an average of 1.5 10 11 m away, at the rate 1.4 10 3 Watts/m of area perpendiular to the diretion of the light. Assume that sunlight

More information

Chapter 26 Lecture Notes

Chapter 26 Lecture Notes Chapter 26 Leture Notes Physis 2424 - Strauss Formulas: t = t0 1 v L = L0 1 v m = m0 1 v E = m 0 2 + KE = m 2 KE = m 2 -m 0 2 mv 0 p= mv = 1 v E 2 = p 2 2 + m 2 0 4 v + u u = 2 1 + vu There were two revolutions

More information

Four-dimensional equation of motion for viscous compressible substance with regard to the acceleration field, pressure field and dissipation field

Four-dimensional equation of motion for viscous compressible substance with regard to the acceleration field, pressure field and dissipation field Four-dimensional equation of motion for visous ompressible substane with regard to the aeleration field, pressure field and dissipation field Sergey G. Fedosin PO box 6488, Sviazeva str. -79, Perm, Russia

More information

Numerical Analysis & Computer Programming

Numerical Analysis & Computer Programming ++++++++++ Numerical Analysis & Computer Programming Previous year Questions from 07 to 99 Ramanasri Institute W E B S I T E : M A T H E M A T I C S O P T I O N A L. C O M C O N T A C T : 8 7 5 0 7 0 6

More information

The First Integral Method for Solving a System of Nonlinear Partial Differential Equations

The First Integral Method for Solving a System of Nonlinear Partial Differential Equations ISSN 179-889 (print), 179-897 (online) International Journal of Nonlinear Siene Vol.5(008) No.,pp.111-119 The First Integral Method for Solving a System of Nonlinear Partial Differential Equations Ahmed

More information

Singular Event Detection

Singular Event Detection Singular Event Detetion Rafael S. Garía Eletrial Engineering University of Puerto Rio at Mayagüez Rafael.Garia@ee.uprm.edu Faulty Mentor: S. Shankar Sastry Researh Supervisor: Jonathan Sprinkle Graduate

More information

CALCULATION OF NONLINEAR TUNE SHIFT USING BEAM POSITION MEASUREMENT RESULTS

CALCULATION OF NONLINEAR TUNE SHIFT USING BEAM POSITION MEASUREMENT RESULTS International Journal of Modern Physis A Vol. 24, No. 5 (2009) 974 986 World Sientifi Publishing Company CALCULATION OF NONLINEAR TUNE SHIFT USING BEAM POSITION MEASUREMENT RESULTS PAVEL SNOPOK, MARTIN

More information

Robust Flight Control Design for a Turn Coordination System with Parameter Uncertainties

Robust Flight Control Design for a Turn Coordination System with Parameter Uncertainties Amerian Journal of Applied Sienes 4 (7): 496-501, 007 ISSN 1546-939 007 Siene Publiations Robust Flight ontrol Design for a urn oordination System with Parameter Unertainties 1 Ari Legowo and Hiroshi Okubo

More information

Ph1c Analytic Quiz 2 Solution

Ph1c Analytic Quiz 2 Solution Ph1 Analyti Quiz 2 olution Chefung Chan, pring 2007 Problem 1 (6 points total) A small loop of width w and height h falls with veloity v, under the influene of gravity, into a uniform magneti field B between

More information

Critical Reflections on the Hafele and Keating Experiment

Critical Reflections on the Hafele and Keating Experiment Critial Refletions on the Hafele and Keating Experiment W.Nawrot In 1971 Hafele and Keating performed their famous experiment whih onfirmed the time dilation predited by SRT by use of marosopi loks. As

More information

Some facts you should know that would be convenient when evaluating a limit:

Some facts you should know that would be convenient when evaluating a limit: Some fats you should know that would be onvenient when evaluating a it: When evaluating a it of fration of two funtions, f(x) x a g(x) If f and g are both ontinuous inside an open interval that ontains

More information

Control Theory association of mathematics and engineering

Control Theory association of mathematics and engineering Control Theory assoiation of mathematis and engineering Wojieh Mitkowski Krzysztof Oprzedkiewiz Department of Automatis AGH Univ. of Siene & Tehnology, Craow, Poland, Abstrat In this paper a methodology

More information

). In accordance with the Lorentz transformations for the space-time coordinates of the same event, the space coordinates become

). In accordance with the Lorentz transformations for the space-time coordinates of the same event, the space coordinates become Relativity and quantum mehanis: Jorgensen 1 revisited 1. Introdution Bernhard Rothenstein, Politehnia University of Timisoara, Physis Department, Timisoara, Romania. brothenstein@gmail.om Abstrat. We first

More information

FIBER/MATRIX DEBONDING CRITERIONS IN SIC/TI COMPOSITE. NUMERICAL AND EXPERIMENTAL ANALYSIS

FIBER/MATRIX DEBONDING CRITERIONS IN SIC/TI COMPOSITE. NUMERICAL AND EXPERIMENTAL ANALYSIS FIBER/MATRIX DEBONDING CRITERIONS IN SIC/TI COMPOSITE. NUMERICAL AND EXPERIMENTAL ANALYSIS A. Thionnet 1, J. Renard 1 1 Eole Nationale Supérieure des Mines de Paris - Centre des Matériaux P. M. Fourt BP

More information

Numerical Modeling in Biomedical Systems

Numerical Modeling in Biomedical Systems Numeial Modeling in Biomedial Systems BME 15:35 Letue 7 9/6/17 Nonlinea Systems Dunn Chapte 5 Nonlinea equations Root finding Baketing methods Open methods Gaphial Bisetion False Position Newton s method

More information

Special Relativity Entirely New Explanation

Special Relativity Entirely New Explanation 8-1-15 Speial Relatiity Entirely New Eplanation Mourii Shahter mourii@gmail.om mourii@walla.o.il ISRAEL, HOLON 54-54855 Introdution In this paper I orret a minor error in Einstein's theory of Speial Relatiity,

More information

6.4 Dividing Polynomials: Long Division and Synthetic Division

6.4 Dividing Polynomials: Long Division and Synthetic Division 6 CHAPTER 6 Rational Epressions 6. Whih of the following are equivalent to? y a., b. # y. y, y 6. Whih of the following are equivalent to 5? a a. 5, b. a 5, 5. # a a 6. In your own words, eplain one method

More information

Calculus Problem Sheet Prof Paul Sutcliffe. 2. State the domain and range of each of the following functions

Calculus Problem Sheet Prof Paul Sutcliffe. 2. State the domain and range of each of the following functions f() 8 6 4 8 6-3 - - 3 4 5 6 f().9.8.7.6.5.4.3.. -4-3 - - 3 f() 7 6 5 4 3-3 - - Calculus Problem Sheet Prof Paul Sutcliffe. By applying the vertical line test, or otherwise, determine whether each of the

More information

Developing Excel Macros for Solving Heat Diffusion Problems

Developing Excel Macros for Solving Heat Diffusion Problems Session 50 Developing Exel Maros for Solving Heat Diffusion Problems N. N. Sarker and M. A. Ketkar Department of Engineering Tehnology Prairie View A&M University Prairie View, TX 77446 Abstrat This paper

More information

Word of Mass: The Relationship between Mass Media and Word-of-Mouth

Word of Mass: The Relationship between Mass Media and Word-of-Mouth Word of Mass: The Relationship between Mass Media and Word-of-Mouth Roman Chuhay Preliminary version Marh 6, 015 Abstrat This paper studies the optimal priing and advertising strategies of a firm in the

More information

ECE-320 Linear Control Systems. Winter 2013, Exam 1. No calculators or computers allowed, you may leave your answers as fractions.

ECE-320 Linear Control Systems. Winter 2013, Exam 1. No calculators or computers allowed, you may leave your answers as fractions. ECE-320 Linear Control Systems Winter 2013, Exam 1 No alulators or omputers allowed, you may leave your answers as frations. All problems are worth 3 points unless noted otherwise. Total /100 1 Problems

More information

, an inverse square law.

, an inverse square law. Uniform irular motion Speed onstant, but eloity hanging. and a / t point to enter. s r θ > θ s/r t / r, also θ in small limit > t/r > a / r, entripetal aeleration Sine a points to enter of irle, F m a

More information

Chapter 3: Three faces of the derivative. Overview

Chapter 3: Three faces of the derivative. Overview Overview We alread saw an algebraic wa of thinking about a derivative. Geometric: zooming into a line Analtic: continuit and rational functions Computational: approimations with computers 3. The geometric

More information

CHAPTER P Preparation for Calculus

CHAPTER P Preparation for Calculus PART I CHAPTER P Preparation for Calulus Setion P. Graphs and Models...................... Setion P. Linear Models and Rates of Change............. 7 Setion P. Funtions and Their Graphs.................

More information

The Laws of Acceleration

The Laws of Acceleration The Laws of Aeleration The Relationships between Time, Veloity, and Rate of Aeleration Copyright 2001 Joseph A. Rybzyk Abstrat Presented is a theory in fundamental theoretial physis that establishes the

More information

Speed-feedback Direct-drive Control of a Low-speed Transverse Flux-type Motor with Large Number of Poles for Ship Propulsion

Speed-feedback Direct-drive Control of a Low-speed Transverse Flux-type Motor with Large Number of Poles for Ship Propulsion Speed-feedbak Diret-drive Control of a Low-speed Transverse Flux-type Motor with Large Number of Poles for Ship Propulsion Y. Yamamoto, T. Nakamura 2, Y. Takada, T. Koseki, Y. Aoyama 3, and Y. Iwaji 3

More information

Estimation of Density Function Parameters with Censored Data from Product Life Tests

Estimation of Density Function Parameters with Censored Data from Product Life Tests VŠB TU Ostrava Faulty of Mehanial Engineering Department of Control Systems and Instrumentation Estimation of Density Funtion Parameters with Censored Data from Produt Life Tests JiříTůma 7. listopadu

More information

Optimization of replica exchange molecular dynamics by fast mimicking

Optimization of replica exchange molecular dynamics by fast mimicking THE JOURNAL OF CHEMICAL PHYSICS 127, 204104 2007 Optimization of replia exhange moleular dynamis by fast mimiking Jozef Hritz and Chris Oostenbrink a Leiden Amsterdam Center for Drug Researh (LACDR), Division

More information

Lecture 3 - Lorentz Transformations

Lecture 3 - Lorentz Transformations Leture - Lorentz Transformations A Puzzle... Example A ruler is positioned perpendiular to a wall. A stik of length L flies by at speed v. It travels in front of the ruler, so that it obsures part of the

More information

Differential Equations 8/24/2010

Differential Equations 8/24/2010 Differential Equations A Differential i Equation (DE) is an equation ontaining one or more derivatives of an unknown dependant d variable with respet to (wrt) one or more independent variables. Solution

More information

Duct Acoustics. Chap.4 Duct Acoustics. Plane wave

Duct Acoustics. Chap.4 Duct Acoustics. Plane wave Chap.4 Dut Aoustis Dut Aoustis Plane wave A sound propagation in pipes with different ross-setional area f the wavelength of sound is large in omparison with the diameter of the pipe the sound propagates

More information

Solutions to Math 41 Final Exam December 9, 2013

Solutions to Math 41 Final Exam December 9, 2013 Solutions to Math 4 Final Eam December 9,. points In each part below, use the method of your choice, but show the steps in your computations. a Find f if: f = arctane csc 5 + log 5 points Using the Chain

More information

Analysis of strain localization by a damage front approach

Analysis of strain localization by a damage front approach Analysis of strain loalization by a damage front approah Prabu MANOHARAN Eole Centrale Nantes 1, rue de Noël Nantes 443 Thesis Advisors Prof. Niolas Moës Prof. Steven Le Corre May 29 ABSTRACT Manufaturing

More information

Optimal control of solar energy systems

Optimal control of solar energy systems Optimal ontrol of solar energy systems Viorel Badesu Candida Oanea Institute Polytehni University of Buharest Contents. Optimal operation - systems with water storage tanks 2. Sizing solar olletors 3.

More information

An Integrated Architecture of Adaptive Neural Network Control for Dynamic Systems

An Integrated Architecture of Adaptive Neural Network Control for Dynamic Systems An Integrated Arhiteture of Adaptive Neural Network Control for Dynami Systems Robert L. Tokar 2 Brian D.MVey2 'Center for Nonlinear Studies, 2Applied Theoretial Physis Division Los Alamos National Laboratory,

More information

A NETWORK SIMPLEX ALGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM

A NETWORK SIMPLEX ALGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM NETWORK SIMPLEX LGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM Cen Çalışan, Utah Valley University, 800 W. University Parway, Orem, UT 84058, 801-863-6487, en.alisan@uvu.edu BSTRCT The minimum

More information

max min z i i=1 x j k s.t. j=1 x j j:i T j

max min z i i=1 x j k s.t. j=1 x j j:i T j AM 221: Advaned Optimization Spring 2016 Prof. Yaron Singer Leture 22 April 18th 1 Overview In this leture, we will study the pipage rounding tehnique whih is a deterministi rounding proedure that an be

More information

Chapter 2 Lecture 5 Longitudinal stick fixed static stability and control 2 Topics

Chapter 2 Lecture 5 Longitudinal stick fixed static stability and control 2 Topics hapter 2 eture 5 ongitudinal stik fied stati stability and ontrol 2 Topis 2.2 mg and mα as sum of the ontributions of various omponent 2.3 ontributions of ing to mg and mα 2.3.1 orretion to mα for effets

More information

Lecture 23: Spinodal Decomposition: Part 2: regarding free energy. change and interdiffusion coefficient inside the spinodal

Lecture 23: Spinodal Decomposition: Part 2: regarding free energy. change and interdiffusion coefficient inside the spinodal Leture 3: Spinodal eoposition: Part : regarding free energy hange and interdiffusion oeffiient inside the spinodal Today s topis ontinue to understand the basi kinetis of spinodal deoposition. Within the

More information

GLOBAL EDITION. Calculus. Briggs Cochran Gillett SECOND EDITION. William Briggs Lyle Cochran Bernard Gillett

GLOBAL EDITION. Calculus. Briggs Cochran Gillett SECOND EDITION. William Briggs Lyle Cochran Bernard Gillett GOBA EDITION Briggs Cohran Gillett Calulus SECOND EDITION William Briggs le Cohran Bernar Gillett ( (, ) (, ) (, Q ), Q ) (, ) ( Q, ) / 5 /4 5 5 /6 7 /6 ( Q, 5 5 /4 ) 4 4 / 7 / (, ) 9 / (, ) 6 / 5 / (Q,

More information

When p = 1, the solution is indeterminate, but we get the correct answer in the limit.

When p = 1, the solution is indeterminate, but we get the correct answer in the limit. The Mathematia Journal Gambler s Ruin and First Passage Time Jan Vrbik We investigate the lassial problem of a gambler repeatedly betting $1 on the flip of a potentially biased oin until he either loses

More information

FP1 PAST EXAM QUESTIONS ON NUMERICAL METHODS: NEWTON-RAPHSON ONLY

FP1 PAST EXAM QUESTIONS ON NUMERICAL METHODS: NEWTON-RAPHSON ONLY FP PAST EXAM QUESTIONS ON NUMERICAL METHODS: NEWTON-RAPHSON ONLY A number of questions demand that you know derivatives of functions now not included in FP. Just look up the derivatives in the mark scheme,

More information

( ) ( ) Volumetric Properties of Pure Fluids, part 4. The generic cubic equation of state:

( ) ( ) Volumetric Properties of Pure Fluids, part 4. The generic cubic equation of state: CE304, Spring 2004 Leture 6 Volumetri roperties of ure Fluids, part 4 The generi ubi equation of state: There are many possible equations of state (and many have been proposed) that have the same general

More information

CHAPTER 26 The Special Theory of Relativity

CHAPTER 26 The Special Theory of Relativity CHAPTER 6 The Speial Theory of Relativity Units Galilean-Newtonian Relativity Postulates of the Speial Theory of Relativity Simultaneity Time Dilation and the Twin Paradox Length Contration Four-Dimensional

More information

3 Tidal systems modelling: ASMITA model

3 Tidal systems modelling: ASMITA model 3 Tidal systems modelling: ASMITA model 3.1 Introdution For many pratial appliations, simulation and predition of oastal behaviour (morphologial development of shorefae, beahes and dunes) at a ertain level

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

Probabilistic analysis of the face stability of circular tunnels

Probabilistic analysis of the face stability of circular tunnels Probabilisti analysis of the fae stability of irular tunnels Guilhem Mollon 1, Daniel Dias 2 and Abdul-Hamid Soubra 3, M. ASCE 1 PhD Student, INSA Lyon, LGCIE Site Coulomb 3, Géotehnique, Bât. J.C.A. Coulomb,

More information

APPROXIMATION OF ROOTS OF EQUATIONS WITH A HAND-HELD CALCULATOR. Jay Villanueva Florida Memorial University Miami, FL

APPROXIMATION OF ROOTS OF EQUATIONS WITH A HAND-HELD CALCULATOR. Jay Villanueva Florida Memorial University Miami, FL APPROXIMATION OF ROOTS OF EQUATIONS WITH A HAND-HELD CALCULATOR Jay Villanueva Florida Memorial University Miami, FL jvillanu@fmunivedu I Introduction II III IV Classical methods A Bisection B Linear interpolation

More information