By Gilberto E. Urroz, September 2004

Size: px
Start display at page:

Download "By Gilberto E. Urroz, September 2004"

Transcription

1 Solutio o o-liear equatios By Gilberto E. Urroz, September 004 I this documet I preset methods or the solutio o sigle o-liear equatios as well as or systems o such equatios. Solutio o a sigle o-liear equatio Equatios that ca be cast i the orm o a polyomial are reerred to as algebraic equatios. Equatios ivolvig more complicated terms, such as trigoometric, hyperbolic, epoetial, or logarithmic uctios are reerred to as trascedetal equatios. The methods preseted i this sectio are umerical methods that ca be applied to the solutio o such equatios, to which we will reer, i geeral, as o-liear equatios. I geeral, we will we searchig or oe, or more, solutios to the equatio, ( = 0. We will preset the Newto-Raphso algorithm, ad the secat method. I the secat method we eed to provide two iitial values o to get the algorithm started. I the Newto-Raphso methods oly oe iitial value is required. Because the solutio is ot eact, the algorithms or ay o the methods preseted herei will ot provide the eact solutio to the equatio ( = 0, istead, we will stop the algorithm whe the equatio is satisied withi a allowed tolerace or error, ε. I mathematical terms this is epressed as ( R < ε. The value o or which the o-liear equatio (=0 is satisied, i.e., = R, will be the solutio, or root, to the equatio withi a error o ε uits. The Newto-Raphso method Cosider the Taylor-series epasio o the uctio ( about a value = o : (= ( o +'( o (- o +("( o /!(- o +. Usig oly the irst two terms o the epasio, a irst approimatio to the root o the equatio ( = 0 ca be obtaied rom ( = 0 ( o +'( o ( - o

2 Such approimatio is give by, = o - ( o /'( o. The Newto-Raphso method cosists i obtaiig improved values o the approimate root through the recurret applicatio o equatio above. For eample, the secod ad third approimatios to that root will be give by ad = - ( /'(, 3 = - ( /'(, respectively. This iterative procedure ca be geeralized by writig the ollowig equatio, where i represets the iteratio umber: i+ = i - ( i /'( i. Ater each iteratio the program should check to see i the covergece coditio, amely, ( i+ <ε, is satisied. The igure below illustrates the way i which the solutio is oud by usig the Newto- Raphso method. Notice that the equatio ( = 0 ( o +'( o ( - o represets a straight lie taget to the curve y = ( at = o. This lie itersects the -ais (i.e., y = ( = 0 at the poit as give by = o - ( o /'( o. At that poit we ca costruct aother straight lie taget to y = ( whose itersectio with the -ais is the ew approimatio to the root o ( = 0, amely, =. Proceedig with the iteratio we ca see that the itersectio o cosecutive taget lies with the -ais approaches the actual root relatively ast.

3 The Newto-Raphso method coverges relatively ast or most uctios regardless o the iitial value chose. The mai disadvatage is that you eed to kow ot oly the uctio (, but also its derivative, '(, i order to achieve a solutio. The secat method, discussed i the ollowig sectio, utilizes a approimatio to the derivative, thus obviatig such requiremet. The programmig algorithm o ay o these methods must iclude the optio o stoppig the program i the umber o iteratios grows too large. How large is large? That will deped o the particular problem solved. However, ay Newto-Raphso, or secat method solutio that takes more tha 000 iteratios to coverge is either ill-posed or cotais a logical error. Debuggig o the program will be called or at this poit by chagig the iitial values provided to the program, or by checkig the program's logic. A MATLAB uctio or the Newto-Raphso method The uctio ewto, listed below, implemets the Newto-Raphso algorithm. It uses as argumets a iitial value ad epressios or ( ad '(. uctio [,iter]=ewto(0,,p % ewto-raphso algorithm N = 00; eps =.e-5; % deie ma. o. iteratios ad error maval = ; % deie value or divergece = 0; while (N>0 = -(/p(; i abs((<eps =;iter=00-n; retur; i abs((>maval disp(['iteratios = ',umstr(iter]; error('solutio diverges'; break; N = N - ; = ; error('no covergece'; break; % ed uctio We will use the Newto-Raphso method to solve or the equatio, ( = = 0. The ollowig MATLAB commads deie the uctio 00( ad its derivative, 0p(:»00 = ilie('.^3-*.^+','' 00 = Ilie uctio: 00( =.^3-*.^+ 3

4 » 0p = ilie('3*.^-','' 0p = Ilie uctio: 0p( = 3*.^- To have a idea o the locatio o the roots o this polyomial we'll plot the uctio usig the ollowig MATLAB commads:» = [-0.8:0.0:.0]';y=00(;» plot(,y;label('';ylabel('00(';» grid o ( We see that the uctio graph crosses the -ais somewhere betwee.0 ad 0.5, close to.0, ad betwee.5 ad.0. To activate the uctio we could use, or eample, a iitial value 0 = :» [,iteratios] = ewto(,00,0p =.680 iteratios = 39 The ollowig commad are aimed at obtaiig vectors o the solutios provided by uctio ewto.m or 00(=0 or iitial values i the vector 0 such that 0 < 0 < 0. The solutios oud are stored i variable s while the required umber o iteratios is stored i variable is.» 0 = [-0:0.5:0]; s = []; is = []; EDU» or i = :legth(0 [,ii] = ewto(0(i,00,0p; s = [s,]; is = [is,ii]; ed Plot o s vs. 0, ad o is vs. 0 are show et: 4

5 » igure(;plot(0,s,'o';hold;plot(0,s,'-';hold;» title('newto-raphso solutio';» label('iitial guess, 0';ylabel('solutio, s';.8 Newto-Raphso solutio solutio, s iitial guess, 0 This igure shows that or iitial guesses i the rage 0 < o <0, uctio ewto.m coverges maily to the solutio =.680, with ew istaces covertig to the solutios = - ad =.» igure(;plot(0,is,'+'; hold;plot(0,is,'-';hold;» title('newto-raphso solutio';» label('iitial guess, 0';ylabel('iteratios, is'; 70 Newto-Raphso solutio iteratios, is iitial guess, 0 This igure shows that the umber o iteratios required to achieve a solutio rages rom 0 to about 65. Most o the time, about 50 iteratios are required. The ollowig eample shows a case i which the solutio actually diverges: 5

6 » [,iter] = ewto(-0.75,00,0p iteratios = 6??? Error usig ==> ewto Solutio diverges NOTE: I the uctio o iterest is deied by a m-ile, the reerece to the uctio ame i the call to ewto.m should be placed betwee quotes. The Secat Method I the secat method, we replace the derivative '( i i the Newto-Raphso method with '( i (( i - ( i- /( i - i-. With this replacemet, the Newto-Raphso algorithm becomes ( i i+ i ( i ( ( = i i i To get the method started we eed two values o, say o ad, to get the irst approimatio to the solutio, amely, ( = ( 0. ( ( As with the Newto-Raphso method, the iteratio is stopped whe ( i+ <ε. Figure 4, below, illustrates the way that the secat method approimates the solutio o the equatio ( = 0. o. 6

7 A MATLAB uctio or the secat method The uctio secat, listed below, uses the secat method to solve or o-liear equatios. It requires two iitial values ad a epressio or the uctio, (. uctio [,iter]=secat(0,00, % ewto-raphso algorithm N = 00; eps =.e-5; % deie ma. o. iteratios ad error maval = ; % deie value or divergece = 0; = 00; while N>0 gp = ((-(/(-; = -(/gp; i abs((<eps =; iter = 00-N; retur; i abs((>maval iter=00-n; disp(['iteratios = ',umstr(iter]; error('solutio diverges'; abort; N = N - ; = ; = ; iter=00-n; disp(['iteratios = ',iter]; error('no covergece'; abort; % ed uctio Applicatio o secat method We use the same uctio 00( = 0 preseted earlier. the uctio secat.tt to obtai a solutio to the equatio: The ollowig commads call» [,iter] = secat(-0.0,-9.8,00 = iter = The ollowig commad are aimed at obtaiig vectors o the solutios provided by uctio Newto.m or 00(=0 or iitial values i the vector 0 such that 0 < 0 < 0. The solutios oud are stored i variable s while the required umber o iteratios is stored i variable is. 7

8 » 0 = [-0:0.5:0]; 00 = ; s = []; is = [];» or i = :legth(0 [,ii] = secat(0(i,00(i,00; s = [s, ]; is = [is, ii]; ed Plot o s vs. 0, ad o is vs. 0 are show et:» igure(;plot(0,s,'o';hold;plot(0,s,'-';hold;» title('secat method solutio';» label('irst iitial guess, 0';ylabel('solutio, s'; Secat method solutio.5 solutio, s irst iitial guess, 0 This igure shows that or iitial guesses i the rage 0 < o <0, uctio ewto.m coverges to the three solutios. Notice that iitial guesses i the rage 0 < 0 < -, coverge to = ; those i the rage < <, coverge to = ; ad, those i the rage <<0, coverge to =.680.» igure(;plot(0,is,'o';hold;plot(0,is,'-';hold;» label('irst iitial guess, 0';ylabel('iteratios, is';» title('secat method solutio'; 5 Secat method solutio 0 iteratios, is irst iitial guess, 0 8

9 9 This igure shows that the umber o iteratios required to achieve a solutio rages rom 0 to about 5. Notice also that, the closer the iitial guess is to zero, the less umber o iteratios to covergece are required. NOTE: I the uctio o iterest is deied by a m-ile, the reerece to the uctio ame i the call to ewto.m should be placed betwee quotes. Solvig systems o o-liear equatios Cosider the solutio to a system o o-liear equatios i ukows give by (,,, = 0 (,,, = 0... (,,, = 0 The system ca be writte i a sigle epressio usig vectors, i.e., ( = 0, where the vector cotais the idepedet variables, ad the vector cotais the uctios i (:. ( ( (,...,, (,...,, (,...,, ( (, = = = M M M Newto-Raphso method to solve systems o o-liear equatios A Newto-Raphso method or solvig the system o liear equatios requires the evaluatio o a matri, kow as the Jacobia o the system, which is deied as:. ] [ / / / / / / / / /,...,, (,...,, ( j i = = = L M O M M L L J I = 0 (a vector represets the irst guess or the solutio, successive approimatios to the solutio are obtaied rom + = - J - ( = -, with = + -.

10 A covergece criterio or the solutio o a system o o-liear equatio could be, or eample, that the maimum o the absolute values o the uctios i ( is smaller tha a certai tolerace ε, i.e., ma ( < ε. i i Aother possibility or covergece is that the magitude o the vector ( be smaller tha the tolerace, i.e., ( < ε. We ca also use as covergece criteria the dierece betwee cosecutive values o the solutio, i.e., ma ( ( < ε., or, i i + i = + - < ε. The mai complicatio with usig Newto-Raphso to solve a system o o-liear equatios is havig to deie all the uctios i / j, or i,j =,,,, icluded i the Jacobia. As the umber o equatios ad ukows,, icreases, so does the umber o elemets i the Jacobia,. MATLAB uctio or Newto-Raphso method or a system o o-liear equatios The ollowig MATLAB uctio, ewtom, calculates the solutio to a system o oliear equatios, ( = 0, give the vector o uctios ad the Jacobia J, as well as a iitial guess or the solutio 0. uctio [,iter] = ewtom(0,,j % Newto-Raphso method applied to a % system o liear equatios ( = 0, % give the jacobia uctio J, with % J = del(,,...,/del(,,..., % = [;;...;], = [;;...;] % 0 is a iitial guess o the solutio N = 00; % deie ma. umber o iteratios epsilo = e-0; % deie tolerace maval = ; % deie value or divergece = 0; % load iitial guess while (N>0 JJ = eval(j,; i abs(det(jj<epsilo error('ewtom - Jacobia is sigular - try ew 0'; abort; = - iv(jj*eval(,; 0

11 i abs(eval(,<epsilo =; iter = 00-N; retur; i abs(eval(,>maval iter = 00-N; disp(['iteratios = ',umstr(iter]; error('solutio diverges'; abort; N = N - ; = ; error('no covergece ater 00 iteratios.'; abort; % ed uctio The uctios ad the Jacobia J eed to be deied as separate uctios. To illustrate the deiitio o the uctios cosider the system o o-liear equatios: whose Jacobia is (, = = 0, (, = - 5 = 0, J = =. We ca deie the uctio as the ollowig user-deied MATLAB uctio : uctio [] = ( % ( = 0, with = [(;(] % represets a system o o-liear equatios = (^ + (^ - 50; = (*( -5; = [;]; % ed uctio The correspodig Jacobia is calculated usig the user-deied MATLAB uctio jacob: uctio [J] = jacob( % Evaluates the Jacobia o a % system o o-liear equatios J(, = *(; J(, = *(; J(, = (; J(, = (; % ed uctio

12 Illustratig the Newto-Raphso algorithm or a system o two o-liear equatios Beore usig uctio ewtom, we will perorm some step-by-step calculatios to illustrate the algorithm. We start by deiig a iitial guess or the solutio as:» 0 = [;] 0 = Let s calculate the uctio ( at = 0 to see how ar we are rom a solutio:» (0 as = Obviously, the uctio ( 0 is ar away rom beig zero. Thus, we proceed to calculate a better approimatio by calculatig the Jacobia J( 0 :» J0 = jacob(0 J0 = 4 The ew approimatio to the solutio,, is calculated as:» = 0 - iv(j0*(0 = Evaluatig the uctios at produces: ( as = Still ar away rom covergece. Let s calculate a ew approimatio, :» = -iv(jacob(*( =

13 Evaluatig the uctios at idicates that the values o the uctios are decreasig:» ( as = A ew approimatio ad the correspodig uctio evaluatios are:» 3 = - iv(jacob(*( 3 = E» (3 as = The uctios are gettig eve smaller suggestig covergece towards a solutio. Solutio usig uctio ewtom Net, we use uctio ewtom to solve the problem postulated earlier. A call to the uctio usig the values o 0,, ad jacob is:» [,iter] = ewtom(0,'','jacob' = iter = 6 The result shows the umber o iteratios required or covergece (6 ad the solutio oud as = ad = Evaluatig the uctios or those solutios results i:» ( as =.0e-00 *

14 The values o the uctios are close eough to zero (error i the order o 0 -. Secat method to solve systems o o-liear equatios I this sectio we preset a method or solvig systems o o-liear equatios through the Newto-Raphso algorithm, amely, + = - J - (, but approimatig the Jacobia through iite diereces. This approach is a geeralizatio o the secat method or a sigle o-liear equatio. For that reaso, we reer to the method applied to a system o o-liear equatios as a secat method, although the geometric origi o the term ot loger applies. The secat method or a system o o-liear equatios ree us rom havig to deie the uctios ecessary to deie the Jacobia or a system o equatios. Istead, we approimate the partial derivatives i the Jacobia with i j i (,, L, j +, L, i (,, L, j, L,, where is a small icremet i the idepedet variables. Notice that i / j represets elemet J ij i the jacobia J = (,,, /(,,,. To calculate the Jacobia we proceed by colums, i.e., colum j o the Jacobia will be calculated as show i the uctio jacobfd (jacobia calculated through Fiite Diereces listed below: uctio [J] = jacobfd(,,del % Calculates the Jacobia o the % system o o-liear equatios: % ( = 0, through iite diereces. % The Jacobia is built by colums [m ] = size(; or j = :m = ; (j = (j + del; J(:,j = ((-(/del; % ed uctio Notice that or each colum (i.e., each value o j we deie a variable which is irst made equal to, ad the the j-th elemet is icremeted by del, beore calculatig the j-th colum o the Jacobia, amely, J(:,j. This is the MATLAB implemetatio o the iite dierece approimatio or the Jacobia elemets J ij = i / j as deied earlier. 4

15 Illustratig the secat algorithm or a system o two o-liear equatios To illustrate the applicatio o the secat algorithm we use agai the system o two o-liear equatios deied earlier through the uctio. We choose a iitial guess or the solutio as 0 = [;3], ad a icremet i the idepedet variables o = 0.: 0 = [;3] 0 = 3 EDU» d = 0. d = Variable J0 will store the Jacobia correspodig to 0 calculated through iite diereces with the value o deied above:» J0 = jacobfd('',0,d J0 = A ew estimate or the solutio, amely,, is calculated usig the Newto-Raphso algorithm:» = 0 - iv(j0*(0 = The iite-dierece Jacobia correspodig to gets stored i J:» J = jacobfd('',,d J = Ad a ew approimatio or the solutio ( is calculated as:» = - iv(j*( =

16 The et two approimatios to the solutio ( 3 ad 4 are calculated without irst storig the correspodig iite-dierece Jacobias:» 3 = - iv(jacobfd('',,d*( 3 = EDU» 4 = 3 - iv(jacobfd('',3,d*(3 4 = To check the value o the uctios at = 4 we use:» (4 as = The uctios are close to zero, but ot yet at a acceptable error (i.e., somethig i the order o 0-6. Thereore, we try oe more approimatio to the solutio, i.e., 5 :» 5 = 4 - iv(jacobfd('',4,d*(4 5 = The uctios are eve closer to zero tha beore, suggestig a covergece to a solutio.» (5 as = MATLAB uctio or secat method to solve systems o o-liear equatios To make the process o achievig a solutio automatic, we propose the ollowig MATLAB user -deied uctio, secatm: uctio [,iter] = secatm(0,d, % Secat-type method applied to a % system o liear equatios ( = 0, 6

17 % give the jacobia uctio J, with % The Jacobia built by colums. % = [;;...;], = [;;...;] % 0 is the iitial guess o the solutio % d is a icremet i,,... variables N = 00; epsilo =.0e-0; maval = ; % deie ma. umber o iteratios % deie tolerace % deie value or divergece i abs(d<epsilo error('d = 0, use dieret values'; break; = 0; % load iitial guess [ m] = size(0; while (N>0 JJ = [,;,3]; = zeros(,; or j = : = ; (j = (j + d; = eval(,; = eval(,; % Estimatig % Jacobia by % iite JJ(:,j = (-/d; % diereces % by colums i abs(det(jj<epsilo error('ewtom - Jacobia is sigular - try ew 0,d'; break; p = - iv(jj*; p = eval(,p; i abs(p<epsilo =p; disp(['iteratios: ', umstr(00-n]; retur; i abs(p>maval disp(['iteratios: ', umstr(00-n]; error('solutio diverges'; break; N = N - ; = p; error('no covergece'; break; % ed uctio 7

18 Solutio usig uctio secatm To solve the system represeted by uctio, we ow use uctio secatm. The ollowig call to uctio secatm produces a solutio ater 8 iteratios:» [,iter] = secatm(0,d,'' iteratios: 8 = iter = 8 Solvig equatios with Matlab uctio zero Matlab provides uctio zero or the solutio o sigle o-liear equatios. Use» help zero to obtai additioal iormatio o uctio zero. Also, read Chapter 7 (Fuctio Fuctios i the Usig Matlab guide. For the solutio o systems o o-liear equatios Matlab provides uctio solve as part o the Optimizatio package. Sice this is a add-o package, uctio solve is ot available i the studet versio o Matlab. I usig the ull versio o Matlab, check the help acility or uctio solve by usig:» help solve I uctio solve is ot available i the Matlab istallatio you are usig, you ca always use uctio secatm (or ewtom to solve systems o o-liear equatios. 8

In nite Sequences. Dr. Philippe B. Laval Kennesaw State University. October 9, 2008

In nite Sequences. Dr. Philippe B. Laval Kennesaw State University. October 9, 2008 I ite Sequeces Dr. Philippe B. Laval Keesaw State Uiversity October 9, 2008 Abstract This had out is a itroductio to i ite sequeces. mai de itios ad presets some elemetary results. It gives the I ite Sequeces

More information

Sequences and Series

Sequences and Series CHAPTER 9 Sequeces ad Series 9.. Covergece: Defiitio ad Examples Sequeces The purpose of this chapter is to itroduce a particular way of geeratig algorithms for fidig the values of fuctios defied by their

More information

Section 11.3: The Integral Test

Section 11.3: The Integral Test Sectio.3: The Itegral Test Most of the series we have looked at have either diverged or have coverged ad we have bee able to fid what they coverge to. I geeral however, the problem is much more difficult

More information

Soving Recurrence Relations

Soving Recurrence Relations Sovig Recurrece Relatios Part 1. Homogeeous liear 2d degree relatios with costat coefficiets. Cosider the recurrece relatio ( ) T () + at ( 1) + bt ( 2) = 0 This is called a homogeeous liear 2d degree

More information

Trigonometric Form of a Complex Number. The Complex Plane. axis. ( 2, 1) or 2 i FIGURE 6.44. The absolute value of the complex number z a bi is

Trigonometric Form of a Complex Number. The Complex Plane. axis. ( 2, 1) or 2 i FIGURE 6.44. The absolute value of the complex number z a bi is 0_0605.qxd /5/05 0:45 AM Page 470 470 Chapter 6 Additioal Topics i Trigoometry 6.5 Trigoometric Form of a Complex Number What you should lear Plot complex umbers i the complex plae ad fid absolute values

More information

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

Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed. This documet was writte ad copyrighted by Paul Dawkis. Use of this documet ad its olie versio is govered by the Terms ad Coditios of Use located at http://tutorial.math.lamar.edu/terms.asp. The olie versio

More information

Incremental calculation of weighted mean and variance

Incremental calculation of weighted mean and variance Icremetal calculatio of weighted mea ad variace Toy Fich faf@cam.ac.uk dot@dotat.at Uiversity of Cambridge Computig Service February 009 Abstract I these otes I eplai how to derive formulae for umerically

More information

Normal Distribution.

Normal Distribution. Normal Distributio www.icrf.l Normal distributio I probability theory, the ormal or Gaussia distributio, is a cotiuous probability distributio that is ofte used as a first approimatio to describe realvalued

More information

SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES

SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES Read Sectio 1.5 (pages 5 9) Overview I Sectio 1.5 we lear to work with summatio otatio ad formulas. We will also itroduce a brief overview of sequeces,

More information

Solving Logarithms and Exponential Equations

Solving Logarithms and Exponential Equations Solvig Logarithms ad Epoetial Equatios Logarithmic Equatios There are two major ideas required whe solvig Logarithmic Equatios. The first is the Defiitio of a Logarithm. You may recall from a earlier topic:

More information

The following example will help us understand The Sampling Distribution of the Mean. C1 C2 C3 C4 C5 50 miles 84 miles 38 miles 120 miles 48 miles

The following example will help us understand The Sampling Distribution of the Mean. C1 C2 C3 C4 C5 50 miles 84 miles 38 miles 120 miles 48 miles The followig eample will help us uderstad The Samplig Distributio of the Mea Review: The populatio is the etire collectio of all idividuals or objects of iterest The sample is the portio of the populatio

More information

Chapter XIV: Fundamentals of Probability and Statistics *

Chapter XIV: Fundamentals of Probability and Statistics * Objectives Chapter XIV: Fudametals o Probability ad Statistics * Preset udametal cocepts o probability ad statistics Review measures o cetral tedecy ad dispersio Aalyze methods ad applicatios o descriptive

More information

Confidence Intervals for One Mean

Confidence Intervals for One Mean Chapter 420 Cofidece Itervals for Oe Mea Itroductio This routie calculates the sample size ecessary to achieve a specified distace from the mea to the cofidece limit(s) at a stated cofidece level for a

More information

CME 302: NUMERICAL LINEAR ALGEBRA FALL 2005/06 LECTURE 8

CME 302: NUMERICAL LINEAR ALGEBRA FALL 2005/06 LECTURE 8 CME 30: NUMERICAL LINEAR ALGEBRA FALL 005/06 LECTURE 8 GENE H GOLUB 1 Positive Defiite Matrices A matrix A is positive defiite if x Ax > 0 for all ozero x A positive defiite matrix has real ad positive

More information

I. Chi-squared Distributions

I. Chi-squared Distributions 1 M 358K Supplemet to Chapter 23: CHI-SQUARED DISTRIBUTIONS, T-DISTRIBUTIONS, AND DEGREES OF FREEDOM To uderstad t-distributios, we first eed to look at aother family of distributios, the chi-squared distributios.

More information

Finding the circle that best fits a set of points

Finding the circle that best fits a set of points Fidig the circle that best fits a set of poits L. MAISONOBE October 5 th 007 Cotets 1 Itroductio Solvig the problem.1 Priciples............................... Iitializatio.............................

More information

NEW HIGH PERFORMANCE COMPUTATIONAL METHODS FOR MORTGAGES AND ANNUITIES. Yuri Shestopaloff,

NEW HIGH PERFORMANCE COMPUTATIONAL METHODS FOR MORTGAGES AND ANNUITIES. Yuri Shestopaloff, NEW HIGH PERFORMNCE COMPUTTIONL METHODS FOR MORTGGES ND NNUITIES Yuri Shestopaloff, Geerally, mortgage ad auity equatios do ot have aalytical solutios for ukow iterest rate, which has to be foud usig umerical

More information

SAMPLE QUESTIONS FOR FINAL EXAM. (1) (2) (3) (4) Find the following using the definition of the Riemann integral: (2x + 1)dx

SAMPLE QUESTIONS FOR FINAL EXAM. (1) (2) (3) (4) Find the following using the definition of the Riemann integral: (2x + 1)dx SAMPLE QUESTIONS FOR FINAL EXAM REAL ANALYSIS I FALL 006 3 4 Fid the followig usig the defiitio of the Riema itegral: a 0 x + dx 3 Cosider the partitio P x 0 3, x 3 +, x 3 +,......, x 3 3 + 3 of the iterval

More information

Convexity, Inequalities, and Norms

Convexity, Inequalities, and Norms Covexity, Iequalities, ad Norms Covex Fuctios You are probably familiar with the otio of cocavity of fuctios. Give a twicedifferetiable fuctio ϕ: R R, We say that ϕ is covex (or cocave up) if ϕ (x) 0 for

More information

Chapter 5 Unit 1. IET 350 Engineering Economics. Learning Objectives Chapter 5. Learning Objectives Unit 1. Annual Amount and Gradient Functions

Chapter 5 Unit 1. IET 350 Engineering Economics. Learning Objectives Chapter 5. Learning Objectives Unit 1. Annual Amount and Gradient Functions Chapter 5 Uit Aual Amout ad Gradiet Fuctios IET 350 Egieerig Ecoomics Learig Objectives Chapter 5 Upo completio of this chapter you should uderstad: Calculatig future values from aual amouts. Calculatig

More information

Your organization has a Class B IP address of 166.144.0.0 Before you implement subnetting, the Network ID and Host ID are divided as follows:

Your organization has a Class B IP address of 166.144.0.0 Before you implement subnetting, the Network ID and Host ID are divided as follows: Subettig Subettig is used to subdivide a sigle class of etwork i to multiple smaller etworks. Example: Your orgaizatio has a Class B IP address of 166.144.0.0 Before you implemet subettig, the Network

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE MATHEMATICS P EXEMPLAR 04 MARKS: 50 TIME: 3 hours This questio paper cosists of 8 pages ad iformatio sheet. Please tur over Mathematics/P DBE/04 NSC Grade Eemplar INSTRUCTIONS

More information

Hypothesis testing. Null and alternative hypotheses

Hypothesis testing. Null and alternative hypotheses Hypothesis testig Aother importat use of samplig distributios is to test hypotheses about populatio parameters, e.g. mea, proportio, regressio coefficiets, etc. For example, it is possible to stipulate

More information

Domain 1: Designing a SQL Server Instance and a Database Solution

Domain 1: Designing a SQL Server Instance and a Database Solution Maual SQL Server 2008 Desig, Optimize ad Maitai (70-450) 1-800-418-6789 Domai 1: Desigig a SQL Server Istace ad a Database Solutio Desigig for CPU, Memory ad Storage Capacity Requiremets Whe desigig a

More information

Department of Computer Science, University of Otago

Department of Computer Science, University of Otago Departmet of Computer Sciece, Uiversity of Otago Techical Report OUCS-2006-09 Permutatios Cotaiig May Patters Authors: M.H. Albert Departmet of Computer Sciece, Uiversity of Otago Micah Colema, Rya Fly

More information

Modified Line Search Method for Global Optimization

Modified Line Search Method for Global Optimization Modified Lie Search Method for Global Optimizatio Cria Grosa ad Ajith Abraham Ceter of Excellece for Quatifiable Quality of Service Norwegia Uiversity of Sciece ad Techology Trodheim, Norway {cria, ajith}@q2s.tu.o

More information

Determining the sample size

Determining the sample size Determiig the sample size Oe of the most commo questios ay statisticia gets asked is How large a sample size do I eed? Researchers are ofte surprised to fid out that the aswer depeds o a umber of factors

More information

Vladimir N. Burkov, Dmitri A. Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT

Vladimir N. Burkov, Dmitri A. Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT Keywords: project maagemet, resource allocatio, etwork plaig Vladimir N Burkov, Dmitri A Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT The paper deals with the problems of resource allocatio betwee

More information

Lecture 4: Cauchy sequences, Bolzano-Weierstrass, and the Squeeze theorem

Lecture 4: Cauchy sequences, Bolzano-Weierstrass, and the Squeeze theorem Lecture 4: Cauchy sequeces, Bolzao-Weierstrass, ad the Squeeze theorem The purpose of this lecture is more modest tha the previous oes. It is to state certai coditios uder which we are guarateed that limits

More information

Building Blocks Problem Related to Harmonic Series

Building Blocks Problem Related to Harmonic Series TMME, vol3, o, p.76 Buildig Blocks Problem Related to Harmoic Series Yutaka Nishiyama Osaka Uiversity of Ecoomics, Japa Abstract: I this discussio I give a eplaatio of the divergece ad covergece of ifiite

More information

where: T = number of years of cash flow in investment's life n = the year in which the cash flow X n i = IRR = the internal rate of return

where: T = number of years of cash flow in investment's life n = the year in which the cash flow X n i = IRR = the internal rate of return EVALUATING ALTERNATIVE CAPITAL INVESTMENT PROGRAMS By Ke D. Duft, Extesio Ecoomist I the March 98 issue of this publicatio we reviewed the procedure by which a capital ivestmet project was assessed. The

More information

.04. This means $1000 is multiplied by 1.02 five times, once for each of the remaining sixmonth

.04. This means $1000 is multiplied by 1.02 five times, once for each of the remaining sixmonth Questio 1: What is a ordiary auity? Let s look at a ordiary auity that is certai ad simple. By this, we mea a auity over a fixed term whose paymet period matches the iterest coversio period. Additioally,

More information

Properties of MLE: consistency, asymptotic normality. Fisher information.

Properties of MLE: consistency, asymptotic normality. Fisher information. Lecture 3 Properties of MLE: cosistecy, asymptotic ormality. Fisher iformatio. I this sectio we will try to uderstad why MLEs are good. Let us recall two facts from probability that we be used ofte throughout

More information

CS103A Handout 23 Winter 2002 February 22, 2002 Solving Recurrence Relations

CS103A Handout 23 Winter 2002 February 22, 2002 Solving Recurrence Relations CS3A Hadout 3 Witer 00 February, 00 Solvig Recurrece Relatios Itroductio A wide variety of recurrece problems occur i models. Some of these recurrece relatios ca be solved usig iteratio or some other ad

More information

CHAPTER 3 THE TIME VALUE OF MONEY

CHAPTER 3 THE TIME VALUE OF MONEY CHAPTER 3 THE TIME VALUE OF MONEY OVERVIEW A dollar i the had today is worth more tha a dollar to be received i the future because, if you had it ow, you could ivest that dollar ad ear iterest. Of all

More information

Basic Elements of Arithmetic Sequences and Series

Basic Elements of Arithmetic Sequences and Series MA40S PRE-CALCULUS UNIT G GEOMETRIC SEQUENCES CLASS NOTES (COMPLETED NO NEED TO COPY NOTES FROM OVERHEAD) Basic Elemets of Arithmetic Sequeces ad Series Objective: To establish basic elemets of arithmetic

More information

1. C. The formula for the confidence interval for a population mean is: x t, which was

1. C. The formula for the confidence interval for a population mean is: x t, which was s 1. C. The formula for the cofidece iterval for a populatio mea is: x t, which was based o the sample Mea. So, x is guarateed to be i the iterval you form.. D. Use the rule : p-value

More information

A probabilistic proof of a binomial identity

A probabilistic proof of a binomial identity A probabilistic proof of a biomial idetity Joatho Peterso Abstract We give a elemetary probabilistic proof of a biomial idetity. The proof is obtaied by computig the probability of a certai evet i two

More information

How To Solve The Homewor Problem Beautifully

How To Solve The Homewor Problem Beautifully Egieerig 33 eautiful Homewor et 3 of 7 Kuszmar roblem.5.5 large departmet store sells sport shirts i three sizes small, medium, ad large, three patters plaid, prit, ad stripe, ad two sleeve legths log

More information

Escola Federal de Engenharia de Itajubá

Escola Federal de Engenharia de Itajubá Escola Federal de Egeharia de Itajubá Departameto de Egeharia Mecâica Pós-Graduação em Egeharia Mecâica MPF04 ANÁLISE DE SINAIS E AQUISÇÃO DE DADOS SINAIS E SISTEMAS Trabalho 02 (MATLAB) Prof. Dr. José

More information

THE REGRESSION MODEL IN MATRIX FORM. For simple linear regression, meaning one predictor, the model is. for i = 1, 2, 3,, n

THE REGRESSION MODEL IN MATRIX FORM. For simple linear regression, meaning one predictor, the model is. for i = 1, 2, 3,, n We will cosider the liear regressio model i matrix form. For simple liear regressio, meaig oe predictor, the model is i = + x i + ε i for i =,,,, This model icludes the assumptio that the ε i s are a sample

More information

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 13

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 13 EECS 70 Discrete Mathematics ad Probability Theory Sprig 2014 Aat Sahai Note 13 Itroductio At this poit, we have see eough examples that it is worth just takig stock of our model of probability ad may

More information

INVESTMENT PERFORMANCE COUNCIL (IPC)

INVESTMENT PERFORMANCE COUNCIL (IPC) INVESTMENT PEFOMANCE COUNCIL (IPC) INVITATION TO COMMENT: Global Ivestmet Performace Stadards (GIPS ) Guidace Statemet o Calculatio Methodology The Associatio for Ivestmet Maagemet ad esearch (AIM) seeks

More information

0.7 0.6 0.2 0 0 96 96.5 97 97.5 98 98.5 99 99.5 100 100.5 96.5 97 97.5 98 98.5 99 99.5 100 100.5

0.7 0.6 0.2 0 0 96 96.5 97 97.5 98 98.5 99 99.5 100 100.5 96.5 97 97.5 98 98.5 99 99.5 100 100.5 Sectio 13 Kolmogorov-Smirov test. Suppose that we have a i.i.d. sample X 1,..., X with some ukow distributio P ad we would like to test the hypothesis that P is equal to a particular distributio P 0, i.e.

More information

S. Tanny MAT 344 Spring 1999. be the minimum number of moves required.

S. Tanny MAT 344 Spring 1999. be the minimum number of moves required. S. Tay MAT 344 Sprig 999 Recurrece Relatios Tower of Haoi Let T be the miimum umber of moves required. T 0 = 0, T = 7 Iitial Coditios * T = T + $ T is a sequece (f. o itegers). Solve for T? * is a recurrece,

More information

Annuities Under Random Rates of Interest II By Abraham Zaks. Technion I.I.T. Haifa ISRAEL and Haifa University Haifa ISRAEL.

Annuities Under Random Rates of Interest II By Abraham Zaks. Technion I.I.T. Haifa ISRAEL and Haifa University Haifa ISRAEL. Auities Uder Radom Rates of Iterest II By Abraham Zas Techio I.I.T. Haifa ISRAEL ad Haifa Uiversity Haifa ISRAEL Departmet of Mathematics, Techio - Israel Istitute of Techology, 3000, Haifa, Israel I memory

More information

Systems Design Project: Indoor Location of Wireless Devices

Systems Design Project: Indoor Location of Wireless Devices Systems Desig Project: Idoor Locatio of Wireless Devices Prepared By: Bria Murphy Seior Systems Sciece ad Egieerig Washigto Uiversity i St. Louis Phoe: (805) 698-5295 Email: bcm1@cec.wustl.edu Supervised

More information

A Combined Continuous/Binary Genetic Algorithm for Microstrip Antenna Design

A Combined Continuous/Binary Genetic Algorithm for Microstrip Antenna Design A Combied Cotiuous/Biary Geetic Algorithm for Microstrip Atea Desig Rady L. Haupt The Pesylvaia State Uiversity Applied Research Laboratory P. O. Box 30 State College, PA 16804-0030 haupt@ieee.org Abstract:

More information

3. Greatest Common Divisor - Least Common Multiple

3. Greatest Common Divisor - Least Common Multiple 3 Greatest Commo Divisor - Least Commo Multiple Defiitio 31: The greatest commo divisor of two atural umbers a ad b is the largest atural umber c which divides both a ad b We deote the greatest commo gcd

More information

Confidence Intervals. CI for a population mean (σ is known and n > 30 or the variable is normally distributed in the.

Confidence Intervals. CI for a population mean (σ is known and n > 30 or the variable is normally distributed in the. Cofidece Itervals A cofidece iterval is a iterval whose purpose is to estimate a parameter (a umber that could, i theory, be calculated from the populatio, if measuremets were available for the whole populatio).

More information

AP Calculus BC 2003 Scoring Guidelines Form B

AP Calculus BC 2003 Scoring Guidelines Form B AP Calculus BC Scorig Guidelies Form B The materials icluded i these files are iteded for use by AP teachers for course ad exam preparatio; permissio for ay other use must be sought from the Advaced Placemet

More information

GCE Further Mathematics (6360) Further Pure Unit 2 (MFP2) Textbook. Version: 1.4

GCE Further Mathematics (6360) Further Pure Unit 2 (MFP2) Textbook. Version: 1.4 GCE Further Mathematics (660) Further Pure Uit (MFP) Tetbook Versio: 4 MFP Tetbook A-level Further Mathematics 660 Further Pure : Cotets Chapter : Comple umbers 4 Itroductio 5 The geeral comple umber 5

More information

1 Computing the Standard Deviation of Sample Means

1 Computing the Standard Deviation of Sample Means Computig the Stadard Deviatio of Sample Meas Quality cotrol charts are based o sample meas ot o idividual values withi a sample. A sample is a group of items, which are cosidered all together for our aalysis.

More information

DAME - Microsoft Excel add-in for solving multicriteria decision problems with scenarios Radomir Perzina 1, Jaroslav Ramik 2

DAME - Microsoft Excel add-in for solving multicriteria decision problems with scenarios Radomir Perzina 1, Jaroslav Ramik 2 Itroductio DAME - Microsoft Excel add-i for solvig multicriteria decisio problems with scearios Radomir Perzia, Jaroslav Ramik 2 Abstract. The mai goal of every ecoomic aget is to make a good decisio,

More information

Lesson 17 Pearson s Correlation Coefficient

Lesson 17 Pearson s Correlation Coefficient Outlie Measures of Relatioships Pearso s Correlatio Coefficiet (r) -types of data -scatter plots -measure of directio -measure of stregth Computatio -covariatio of X ad Y -uique variatio i X ad Y -measurig

More information

Sampling Distribution And Central Limit Theorem

Sampling Distribution And Central Limit Theorem () Samplig Distributio & Cetral Limit Samplig Distributio Ad Cetral Limit Samplig distributio of the sample mea If we sample a umber of samples (say k samples where k is very large umber) each of size,

More information

Z-TEST / Z-STATISTIC: used to test hypotheses about. µ when the population standard deviation is unknown

Z-TEST / Z-STATISTIC: used to test hypotheses about. µ when the population standard deviation is unknown Z-TEST / Z-STATISTIC: used to test hypotheses about µ whe the populatio stadard deviatio is kow ad populatio distributio is ormal or sample size is large T-TEST / T-STATISTIC: used to test hypotheses about

More information

WHEN IS THE (CO)SINE OF A RATIONAL ANGLE EQUAL TO A RATIONAL NUMBER?

WHEN IS THE (CO)SINE OF A RATIONAL ANGLE EQUAL TO A RATIONAL NUMBER? WHEN IS THE (CO)SINE OF A RATIONAL ANGLE EQUAL TO A RATIONAL NUMBER? JÖRG JAHNEL 1. My Motivatio Some Sort of a Itroductio Last term I tought Topological Groups at the Göttige Georg August Uiversity. This

More information

GCSE STATISTICS. 4) How to calculate the range: The difference between the biggest number and the smallest number.

GCSE STATISTICS. 4) How to calculate the range: The difference between the biggest number and the smallest number. GCSE STATISTICS You should kow: 1) How to draw a frequecy diagram: e.g. NUMBER TALLY FREQUENCY 1 3 5 ) How to draw a bar chart, a pictogram, ad a pie chart. 3) How to use averages: a) Mea - add up all

More information

Chapter 5: Inner Product Spaces

Chapter 5: Inner Product Spaces Chapter 5: Ier Product Spaces Chapter 5: Ier Product Spaces SECION A Itroductio to Ier Product Spaces By the ed of this sectio you will be able to uderstad what is meat by a ier product space give examples

More information

MARTINGALES AND A BASIC APPLICATION

MARTINGALES AND A BASIC APPLICATION MARTINGALES AND A BASIC APPLICATION TURNER SMITH Abstract. This paper will develop the measure-theoretic approach to probability i order to preset the defiitio of martigales. From there we will apply this

More information

Problem Solving with Mathematical Software Packages 1

Problem Solving with Mathematical Software Packages 1 C H A P T E R 1 Problem Solvig with Mathematical Software Packages 1 1.1 EFFICIENT PROBLEM SOLVING THE OBJECTIVE OF THIS BOOK As a egieerig studet or professioal, you are almost always ivolved i umerical

More information

Running Time ( 3.1) Analysis of Algorithms. Experimental Studies ( 3.1.1) Limitations of Experiments. Pseudocode ( 3.1.2) Theoretical Analysis

Running Time ( 3.1) Analysis of Algorithms. Experimental Studies ( 3.1.1) Limitations of Experiments. Pseudocode ( 3.1.2) Theoretical Analysis Ruig Time ( 3.) Aalysis of Algorithms Iput Algorithm Output A algorithm is a step-by-step procedure for solvig a problem i a fiite amout of time. Most algorithms trasform iput objects ito output objects.

More information

The Binomial Multi- Section Transformer

The Binomial Multi- Section Transformer 4/15/21 The Bioial Multisectio Matchig Trasforer.doc 1/17 The Bioial Multi- Sectio Trasforer Recall that a ulti-sectio atchig etwork ca be described usig the theory of sall reflectios as: where: Γ ( ω

More information

Estimating Probability Distributions by Observing Betting Practices

Estimating Probability Distributions by Observing Betting Practices 5th Iteratioal Symposium o Imprecise Probability: Theories ad Applicatios, Prague, Czech Republic, 007 Estimatig Probability Distributios by Observig Bettig Practices Dr C Lych Natioal Uiversity of Irelad,

More information

Overview. Learning Objectives. Point Estimate. Estimation. Estimating the Value of a Parameter Using Confidence Intervals

Overview. Learning Objectives. Point Estimate. Estimation. Estimating the Value of a Parameter Using Confidence Intervals Overview Estimatig the Value of a Parameter Usig Cofidece Itervals We apply the results about the sample mea the problem of estimatio Estimatio is the process of usig sample data estimate the value of

More information

FIBONACCI NUMBERS: AN APPLICATION OF LINEAR ALGEBRA. 1. Powers of a matrix

FIBONACCI NUMBERS: AN APPLICATION OF LINEAR ALGEBRA. 1. Powers of a matrix FIBONACCI NUMBERS: AN APPLICATION OF LINEAR ALGEBRA. Powers of a matrix We begi with a propositio which illustrates the usefuless of the diagoalizatio. Recall that a square matrix A is diogaalizable if

More information

Case Study. Normal and t Distributions. Density Plot. Normal Distributions

Case Study. Normal and t Distributions. Density Plot. Normal Distributions Case Study Normal ad t Distributios Bret Halo ad Bret Larget Departmet of Statistics Uiversity of Wiscosi Madiso October 11 13, 2011 Case Study Body temperature varies withi idividuals over time (it ca

More information

Approximating Area under a curve with rectangles. To find the area under a curve we approximate the area using rectangles and then use limits to find

Approximating Area under a curve with rectangles. To find the area under a curve we approximate the area using rectangles and then use limits to find 1.8 Approximatig Area uder a curve with rectagles 1.6 To fid the area uder a curve we approximate the area usig rectagles ad the use limits to fid 1.4 the area. Example 1 Suppose we wat to estimate 1.

More information

3. If x and y are real numbers, what is the simplified radical form

3. If x and y are real numbers, what is the simplified radical form lgebra II Practice Test Objective:.a. Which is equivalet to 98 94 4 49?. Which epressio is aother way to write 5 4? 5 5 4 4 4 5 4 5. If ad y are real umbers, what is the simplified radical form of 5 y

More information

INFINITE SERIES KEITH CONRAD

INFINITE SERIES KEITH CONRAD INFINITE SERIES KEITH CONRAD. Itroductio The two basic cocepts of calculus, differetiatio ad itegratio, are defied i terms of limits (Newto quotiets ad Riema sums). I additio to these is a third fudametal

More information

Week 3 Conditional probabilities, Bayes formula, WEEK 3 page 1 Expected value of a random variable

Week 3 Conditional probabilities, Bayes formula, WEEK 3 page 1 Expected value of a random variable Week 3 Coditioal probabilities, Bayes formula, WEEK 3 page 1 Expected value of a radom variable We recall our discussio of 5 card poker hads. Example 13 : a) What is the probability of evet A that a 5

More information

BENEFIT-COST ANALYSIS Financial and Economic Appraisal using Spreadsheets

BENEFIT-COST ANALYSIS Financial and Economic Appraisal using Spreadsheets BENEIT-CST ANALYSIS iacial ad Ecoomic Appraisal usig Spreadsheets Ch. 2: Ivestmet Appraisal - Priciples Harry Campbell & Richard Brow School of Ecoomics The Uiversity of Queeslad Review of basic cocepts

More information

CS103X: Discrete Structures Homework 4 Solutions

CS103X: Discrete Structures Homework 4 Solutions CS103X: Discrete Structures Homewor 4 Solutios Due February 22, 2008 Exercise 1 10 poits. Silico Valley questios: a How may possible six-figure salaries i whole dollar amouts are there that cotai at least

More information

Chapter 7: Confidence Interval and Sample Size

Chapter 7: Confidence Interval and Sample Size Chapter 7: Cofidece Iterval ad Sample Size Learig Objectives Upo successful completio of Chapter 7, you will be able to: Fid the cofidece iterval for the mea, proportio, ad variace. Determie the miimum

More information

Time Value of Money, NPV and IRR equation solving with the TI-86

Time Value of Money, NPV and IRR equation solving with the TI-86 Time Value of Moey NPV ad IRR Equatio Solvig with the TI-86 (may work with TI-85) (similar process works with TI-83, TI-83 Plus ad may work with TI-82) Time Value of Moey, NPV ad IRR equatio solvig with

More information

Example 2 Find the square root of 0. The only square root of 0 is 0 (since 0 is not positive or negative, so those choices don t exist here).

Example 2 Find the square root of 0. The only square root of 0 is 0 (since 0 is not positive or negative, so those choices don t exist here). BEGINNING ALGEBRA Roots ad Radicals (revised summer, 00 Olso) Packet to Supplemet the Curret Textbook - Part Review of Square Roots & Irratioals (This portio ca be ay time before Part ad should mostly

More information

MINING RELAXED GRAPH PROPERTIES IN INTERNET

MINING RELAXED GRAPH PROPERTIES IN INTERNET MINING RELAXED GRAPH PROPERTIES IN INTERNET Wilhelmiia Hämäläie Departmet o Computer Sciece, Uiversity o Joesuu, P.O. Box 111, FIN-80101 Joesuu, Filad whamalai@cs.joesuu.i Hau Toivoe Departmet o Computer

More information

7.1 Finding Rational Solutions of Polynomial Equations

7.1 Finding Rational Solutions of Polynomial Equations 4 Locker LESSON 7. Fidig Ratioal Solutios of Polyomial Equatios Name Class Date 7. Fidig Ratioal Solutios of Polyomial Equatios Essetial Questio: How do you fid the ratioal roots of a polyomial equatio?

More information

Irreducible polynomials with consecutive zero coefficients

Irreducible polynomials with consecutive zero coefficients Irreducible polyomials with cosecutive zero coefficiets Theodoulos Garefalakis Departmet of Mathematics, Uiversity of Crete, 71409 Heraklio, Greece Abstract Let q be a prime power. We cosider the problem

More information

CHAPTER 3 DIGITAL CODING OF SIGNALS

CHAPTER 3 DIGITAL CODING OF SIGNALS CHAPTER 3 DIGITAL CODING OF SIGNALS Computers are ofte used to automate the recordig of measuremets. The trasducers ad sigal coditioig circuits produce a voltage sigal that is proportioal to a quatity

More information

ODBC. Getting Started With Sage Timberline Office ODBC

ODBC. Getting Started With Sage Timberline Office ODBC ODBC Gettig Started With Sage Timberlie Office ODBC NOTICE This documet ad the Sage Timberlie Office software may be used oly i accordace with the accompayig Sage Timberlie Office Ed User Licese Agreemet.

More information

Heat (or Diffusion) equation in 1D*

Heat (or Diffusion) equation in 1D* Heat (or Diffusio) equatio i D* Derivatio of the D heat equatio Separatio of variables (refresher) Worked eamples *Kreysig, 8 th Ed, Sectios.4b Physical assumptios We cosider temperature i a log thi wire

More information

2-3 The Remainder and Factor Theorems

2-3 The Remainder and Factor Theorems - The Remaider ad Factor Theorems Factor each polyomial completely usig the give factor ad log divisio 1 x + x x 60; x + So, x + x x 60 = (x + )(x x 15) Factorig the quadratic expressio yields x + x x

More information

hp calculators HP 12C Statistics - average and standard deviation Average and standard deviation concepts HP12C average and standard deviation

hp calculators HP 12C Statistics - average and standard deviation Average and standard deviation concepts HP12C average and standard deviation HP 1C Statistics - average ad stadard deviatio Average ad stadard deviatio cocepts HP1C average ad stadard deviatio Practice calculatig averages ad stadard deviatios with oe or two variables HP 1C Statistics

More information

Repeating Decimals are decimal numbers that have number(s) after the decimal point that repeat in a pattern.

Repeating Decimals are decimal numbers that have number(s) after the decimal point that repeat in a pattern. 5.5 Fractios ad Decimals Steps for Chagig a Fractio to a Decimal. Simplify the fractio, if possible. 2. Divide the umerator by the deomiator. d d Repeatig Decimals Repeatig Decimals are decimal umbers

More information

CHAPTER 7: Central Limit Theorem: CLT for Averages (Means)

CHAPTER 7: Central Limit Theorem: CLT for Averages (Means) CHAPTER 7: Cetral Limit Theorem: CLT for Averages (Meas) X = the umber obtaied whe rollig oe six sided die oce. If we roll a six sided die oce, the mea of the probability distributio is X P(X = x) Simulatio:

More information

CAMERA AUTOCALIBRATION AND HOROPTER CURVES

CAMERA AUTOCALIBRATION AND HOROPTER CURVES CAMERA AUTOCALIBRATION AND HOROPTER CURVES JOSÉ IGNACIO RONDA, ANTONIO VALDÉS, AND FERNANDO JAUREGUIZAR * Grupo de Tratamieto de Imágees ** Dep. de Geometría y Topología Uiversidad Politécica de Madrid

More information

THE ARITHMETIC OF INTEGERS. - multiplication, exponentiation, division, addition, and subtraction

THE ARITHMETIC OF INTEGERS. - multiplication, exponentiation, division, addition, and subtraction THE ARITHMETIC OF INTEGERS - multiplicatio, expoetiatio, divisio, additio, ad subtractio What to do ad what ot to do. THE INTEGERS Recall that a iteger is oe of the whole umbers, which may be either positive,

More information

1 Correlation and Regression Analysis

1 Correlation and Regression Analysis 1 Correlatio ad Regressio Aalysis I this sectio we will be ivestigatig the relatioship betwee two cotiuous variable, such as height ad weight, the cocetratio of a ijected drug ad heart rate, or the cosumptio

More information

Maximum Likelihood Estimators.

Maximum Likelihood Estimators. Lecture 2 Maximum Likelihood Estimators. Matlab example. As a motivatio, let us look at oe Matlab example. Let us geerate a radom sample of size 00 from beta distributio Beta(5, 2). We will lear the defiitio

More information

Multiple Representations for Pattern Exploration with the Graphing Calculator and Manipulatives

Multiple Representations for Pattern Exploration with the Graphing Calculator and Manipulatives Douglas A. Lapp Multiple Represetatios for Patter Exploratio with the Graphig Calculator ad Maipulatives To teach mathematics as a coected system of cocepts, we must have a shift i emphasis from a curriculum

More information

5: Introduction to Estimation

5: Introduction to Estimation 5: Itroductio to Estimatio Cotets Acroyms ad symbols... 1 Statistical iferece... Estimatig µ with cofidece... 3 Samplig distributio of the mea... 3 Cofidece Iterval for μ whe σ is kow before had... 4 Sample

More information

Partial Di erential Equations

Partial Di erential Equations Partial Di eretial Equatios Partial Di eretial Equatios Much of moder sciece, egieerig, ad mathematics is based o the study of partial di eretial equatios, where a partial di eretial equatio is a equatio

More information

(VCP-310) 1-800-418-6789

(VCP-310) 1-800-418-6789 Maual VMware Lesso 1: Uderstadig the VMware Product Lie I this lesso, you will first lear what virtualizatio is. Next, you ll explore the products offered by VMware that provide virtualizatio services.

More information

. P. 4.3 Basic feasible solutions and vertices of polyhedra. x 1. x 2

. P. 4.3 Basic feasible solutions and vertices of polyhedra. x 1. x 2 4. Basic feasible solutios ad vertices of polyhedra Due to the fudametal theorem of Liear Programmig, to solve ay LP it suffices to cosider the vertices (fiitely may) of the polyhedro P of the feasible

More information

Theorems About Power Series

Theorems About Power Series Physics 6A Witer 20 Theorems About Power Series Cosider a power series, f(x) = a x, () where the a are real coefficiets ad x is a real variable. There exists a real o-egative umber R, called the radius

More information

Measures of Spread and Boxplots Discrete Math, Section 9.4

Measures of Spread and Boxplots Discrete Math, Section 9.4 Measures of Spread ad Boxplots Discrete Math, Sectio 9.4 We start with a example: Example 1: Comparig Mea ad Media Compute the mea ad media of each data set: S 1 = {4, 6, 8, 10, 1, 14, 16} S = {4, 7, 9,

More information

How To Solve An Old Japanese Geometry Problem

How To Solve An Old Japanese Geometry Problem 116 Taget circles i the ratio 2 : 1 Hiroshi Okumura ad Masayuki Wataabe I this article we cosider the followig old Japaese geometry problem (see Figure 1), whose statemet i [1, p. 39] is missig the coditio

More information

Output Analysis (2, Chapters 10 &11 Law)

Output Analysis (2, Chapters 10 &11 Law) B. Maddah ENMG 6 Simulatio 05/0/07 Output Aalysis (, Chapters 10 &11 Law) Comparig alterative system cofiguratio Sice the output of a simulatio is radom, the comparig differet systems via simulatio should

More information