5 Solving systems of non-linear equations

Size: px
Start display at page:

Download "5 Solving systems of non-linear equations"

Transcription

1 umercal Methods n Chemcal Engneerng 5 Solvng systems o non-lnear equatons 5 Solvng systems o non-lnear equatons Overvew assng unctons D ewtons Method somethng you dd at school ewton's method n more than one dmenson Solvng the system o two coupled equatons Soluton trajectores The reduced ewton step method roblems wth ewton's Method A chemcal engneerng eample - equlbrum The element balance equatons The equlbrum equatons Thermodynamc data Solvng the equatons Full soluton to the equlbrum problem n Matlab Convergence o the ewton-method Calculatng the Jacoban Matr Fnte derences Broydens Method Takng advantage o sparsty Trust regon method Used by solve Summary Amendments Updated verson o ewtond Updated verson o ewton

2 umercal Methods n Chemcal Engneerng 5. Overvew ow we wll look at solvng systems o non-lnear equatons. We wll look at one method n partcular, ewton's method. We are gong to wrte our own routne or solvng non-lnear equatons usng ewton's method. Matlab has ts own routnes or solvng systems o non-lnear equatons e.g. solve, whch s loosely based on ewton's method. You are encouraged to use these Matlab routnes as they are lkely to be more robust than anythng we can wrte n a lecture! Addtonal readng or ths lecture: Chapter o "umercal Methods or Chemcal Engneers wth Matlab Applcatons" by Constantndes and Mostou Look up the routnes solve and zero n the Matlab help le - -

3 umercal Methods n Chemcal Engneerng 5. assng unctons In Matlab, uncton names can be passed as arguments to unctons. Ths means we can wrte routnes whch act on unctons. E.g. we want to ntegrate under the curve y, we could wrte a uncton whch, gven would return a value o y. We could then pass ths uncton to another routne whch does the numercal ntegraton. The mechansm Matlab provde or ths s a uncton handle other programmng languages would call ths a ponter. E.g. to solve - numercally, we wrte a uncton whch returns the value o -. uncton [resdual] Myunc resdual ^ * return We then call a solvng routne e.g. zero - look t up n the help le Answer s a handle to the uncton MyFunc, whch means that t can be used as an alas or MyFunc e.g. we do the ollowng The varable Functonandle can then be used as an alas or MyFunc,.e. y Functonandle s the same as y MyFunc Another command you can use s y evalfunctonandle, Ths latter command has the advantage o also be able to take a tet strng.e. the name o the uncton n place o a uncton handle and evaluate t. The ablty to store unctons n a varable means that t s possble to pass unctons as arguments to other unctons. - -

4 umercal Methods n Chemcal Engneerng 5. D ewtons Method somethng you dd at school Lets solve - usng ewton's Method. In ewton's method, we set - take an ntal guess or the soluton and calculate. We then etrapolate assumng s lnear to a new value o whch wll make. d.e. new o new o d o or new o o d d o The procedure s then repeated untl the soluton s reached..e. 5 y y Fgure. The soluton to - by ewton's method A Matlab uncton to perorm ths teratve procedure mght look lke: - -

5 umercal Methods n Chemcal Engneerng uncton [soluton] ewtondmyfunc,gradent,guess,tol % solves the non-lnear vector equaton F % set usng ewton Raphson teraton % IUTS: % Myunc andle to the uncton whch calculates F % Gradent andle to the uncton whch calculates F'X % Guess Intal Guess % Tol Tolerance % % OUTUTS: % soluton A soluton to the set o equatons % Descrpton % Solves a D non-lnear equaton by ewtons method Guess; %set the error *tol to make sure the loop runs at least once error *tol whle error > tol %calculate the uncton values at the current teraton F evalmyfunc,; %calculate the Gradent G evalgradent,; %calculate the update d -F/G; %update the value d; %calculate the error F evalmyfunc,; error absf; end %whle loop soluton ; return - 5 -

6 umercal Methods n Chemcal Engneerng 5. ewton's method n more than one dmenson Lets look at an eample: We must rst arrange our equatons n the orm: F Where s the vector o unknowns and F s a vector o uncton values. e.g. or ths eample, F I we start wth a guessed value, we can nd a better guess by etrapolaton. ear our guessed value, the uncton can be epanded M M M d d d d d d d d 5- ote that these dervatves are evaluated at the M L L M M M M M. d d d d d

7 umercal Methods n Chemcal Engneerng d d J d M M or F d F J d 5-5 ow we want our new vector d to be a better appromaton to the soluton, so we set F n Eq 5-5. Then, F J d 5-6 where J s called the Jacoban matr. The procedure or ewton's method s: calculate the uncton values at the guessed value o [,, ] T calculate the Jacoban matr usng the current guess or the soluton solve the lnear system F J d or the values o d update the guessed value d Ths procedure should be repeated, usng the updated value o as the guess, untl the values o F are sucently close to zero. F s a vector o resdual errors. For sucently close to zero we could use Ma{,,,, 5... } < Tolerance or the norm o the vector F, / F 5-7 A uncton whch wll perorm ths procedure s gven overlea. otce how smlar t s to the one dmensonal code, and that a set o lnear equatons must be solved! - 7 -

8 umercal Methods n Chemcal Engneerng uncton [soluton] ewtonmyfunc,jacoban,guess,tol % solves the non-lnear vector equaton F % set usng ewton Raphson teraton % IUTS; % Myuncandle to the uncton whch returns the vector F % Jacobanandle to the uncton whch returns the Jacoban Matr % Guess Intal Guess a vector % tol Tolerance % % OUTUTS % soluton The soluton to F Guess; %set the error *tol to make sure the loop runs at least once error *tol whle error > tol %calculate the uncton values at the current teraton F evalmyfunc,; %calculate the jacoban matr J evaljacoban,; %calculate the update solve the lnear system d J\-F; %update the value d; %calculate the error F evalmyfunc,; error maabsf; end %whle loop soluton ; return - 8 -

9 umercal Methods n Chemcal Engneerng 5.. Solvng the system o two coupled equatons The equatons we want to solve are: The Jacoban s J All we need to do to solve our equatons s to wrte two unctons: that returns the vector o uncton values uncton y Func and that returns the Jacoban matr uncton J Jacoban

10 umercal Methods n Chemcal Engneerng uncton man %man uncton whch call the ewton solver %call the solver soluton ewton@func,@jac,[;],e-6 return uncton y Func %the uncton whch returns the values o F y.^.^ ; y.^ -.^; y y'; return uncton J Jac %The uncton that returns the Jacoban matr J, *^; J, *; J, *; J, -*^; return - -

11 umercal Methods n Chemcal Engneerng 5.. Soluton trajectores From our denton o the norm 5-7 F So at a soluton we must have the smallest possble value o F, and the soluton s a global mnmum n F. For a gven set o equatons F, we can plot the values o F at all values o however, anythng more complcated than D s a bt dcult to nterpret. Returnng to our eample, - A plot o the norm o [, ] T s gven below 5-5- [, ] T Fgure. F There are solutons located at [,] T and [-,] T - -

12 umercal Methods n Chemcal Engneerng Soluton at [,] T Fgure. F and the trajectory taken by the ewton method Fgure shows the trajectory ollowed when the solver s started rom [-,.] T. The trajectory the soluton ollows can be very erratc, especally when the solver s stated a long way rom the soluton. In act, Fgure shows that the error F actually ncreases on the rst teraton. - -

13 umercal Methods n Chemcal Engneerng 5.. The reduced ewton step method We don't have to take a ull ewton step, nstead we can search along the drecton o the ewton step, or a pont where the error s less than the error at the startng pont. An algorthm to do ths s smply: Calculate ewton step, Work out F.5 s F.5 < F o Yes ew.5 - -

14 umercal Methods n Chemcal Engneerng.5 Trajectory taken by ewton method.5 Trajectory taken we search back along the lne o a ull ewton step -.5 Soluton Fgure. F and the trajectory taken by the ewton method wth lne searchng to reduce the step Much more robust! 5.. roblems wth ewton's Method ewton's method wll al, when the Jacoban s sngular, but we are not at the soluton. When the Jacoban s sngular, we cannot nd a soluton to F J so we cannot nd our update vector. Ths s analogous to what happens wth the dmensonal ewton method, and a mamum or mnmum n the uncton.e. zero gradent s encountered. - -

15 umercal Methods n Chemcal Engneerng For the reduced step ewton algorthm, a ewton step s calculated and then a search s perormed along the drecton o the ewton step to nd a step whch wll reduce the error. When the update step s almost perpendcular to the drecton o the gradent o the orm, F.e. parallel to the contours o F, the value o F whch we are tryng to make as small as possble doesn't change much along the lne we are searchng. The solver wll then take very small steps

16 umercal Methods n Chemcal Engneerng 5.5 A chemcal engneerng eample - equlbrum Consder the reacton o methane, wth water at hgh temperatures C O Steam reormng o methane has been proposed as one way to produce clean ydrogen or the 'ydrogen economy'. In any reactor contanng and, the sht reacton wll also occur. O So we have a reactor as ollows O C C O and we want to know, what the composton o the outlet stream s, the system s allowed to reach equlbrum. To solve ths problem we can use the method o mnmum reactons. There are 5 speces o nterest.e. 5 unknown lows leavng the reactor we need to solve or. The amounts o, C and O enterng the system must be equal to the amounts leavng; ths generates three elemental balance equatons. Also, there are two reactons sht and reormaton, these wll yeld two equatons, each nvolvng an equlbrum constant

17 umercal Methods n Chemcal Engneerng 5.5. The element balance equatons j j E ν 5-8 where E j and are the number o moles o element j enterng and speces leavng the system the system per unt tme; ν the number o atoms o j n one molecule o speces. e.g. C E C 5-9 C O E 5- O E O 5- Ths can be represented by a stochometrc matr equaton OUT O C I O C O C O C O C O C O C E E E 5.5. The equlbrum equatons For the steam reormng reacton C O o C O o o C o O o o p y y y y K - 7 -

18 umercal Methods n Chemcal Engneerng Takng natural logs Ln K p Ln o Ln Ln Ln O Ln C For the water-gas sht 5- O o o y O y K p y y o o O Takng natural logs Ln K p Ln O Ln Ln Ln Thermodynamc data The values o K p as a uncton o temperature gven below LnKp y.66e-5-7.9e- 6.5E R 9.979E- y -6.95E-6.69E- -.6E R 9.97E- LnKp LnKp Temperature K Fgure 5, Ln K p as a uncton o temperature - 8 -

19 umercal Methods n Chemcal Engneerng A uncton I have wrtten to calculate these values s: uncton [LnKp,LnKp] LnKpT return LnKp.66e-5*T^ - 7.9e-*T 6.5e; LnKp -6.95e-6*T^.69e-*T -.6e; 5.5. Solvng the equatons The equaton set we have to solve s C - E C 5-9 C O - E 5- O - E O 5- Ln Ln Kp Ln Ln Ln Ln 5- o O C Ln Ln Ln Ln Ln Kp 5 5- O We need to wrte a uncton whch returns the let hand sde o these equatons uncton [resdual] global Stochometry global E global T global _o %the element balance equatons resdual: Stochometry* - E %the equlbrum constants [LnKp,LnKp] LnKpT %equlbrum equatons resdual -LnKp log_o/sum*log... log-*log5-log resdual5- LnKp log5log- log- log return - 9 -

20 umercal Methods n Chemcal Engneerng We also need the Jacoban: The rst rows o the Jacoban are just the stochometry matr. The row or equaton 5-,.e. the th row s made up o the ollowng terms., 5 5,, The 5th row o the Jacoban s made up o 5, 5, 5, 5, uncton [Jac] jac global Stochometry Jac:,: Stochometry; %row or the steam reormng reacton Jac, -/ - /sum; Jac, - /sum; Jac, / - /sum; Jac, / - /sum; Jac,5 -/5 - /sum; %row 5 or the water-gas sht Jac5, ; Jac5, /; Jac5, -/; Jac5, -/; Jac5,5 /5; return - -

21 umercal Methods n Chemcal Engneerng Full soluton to the equlbrum problem n Matlab %MAI FUCTIO %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% uncton man global T global E global Stochometry global _o %set the nlet lows [C;;;;O] n [;;;;]; %set the temperature K T 9; %set the pressure o bar _o ; %set the stocometry matr Stochometry [,,,, ;...,,,, ;...,,,, ]; %Calculate the lows o elements enterng the system E Stochometry*n; %solve the system o equatons [] ewtonreduced@,@jac,[,,,,]',*eps; %prnt the soluton dsp return %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %Functon that computes the Jacoban %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% uncton [Jac] jac global Stochometry Jac:,: Stochometry; %row or the steam reormng reacton Jac, -/ - /sum; Jac, - /sum; Jac, / - /sum; Jac, / - /sum; Jac,5 -/5 - /sum; - -

22 umercal Methods n Chemcal Engneerng %row 5 or the water-gas sht Jac5, ; Jac5, /; Jac5, -/; Jac5, -/; Jac5,5 /5; return %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %Functon that computes equlbrum constants %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% uncton [LnKp,LnKp] LnKpT return LnKp.66e-5*T^ - 7.9e-*T 6.5e; LnKp -6.95e-6*T^.69e-*T -.6e; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %Functon that computes the uncton values set o equatons to be solved %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% uncton [resdual] global Stochometry global E global T global _o %the element balance equatons resdual: Stochometry* - E; %the equlbrum constants [LnKp,LnKp] LnKpT; %equlbrum equatons resdual -LnKp log_o/sum*log log-*log5-log; resdual5 - LnKp log5log- log- log; resdual resdual'; return - -

23 umercal Methods n Chemcal Engneerng 5.6 Convergence o the ewton-method The error or a gven teraton can be taken as e - * where * s the true soluton. ow assumng we are close to the soluton, we can epand the uncton F about *, and use ths epanson n place o F F F * J * * O[ * ] 5- F J * * O[ * ] 5-5 F J * e O[ e ] 5-6 Substtutng ths nto our update ormula F gves J * e J * e J O[ e O[ e ] J ] J e e I we are sucently close to the soluton, then J J*, and O [ e ] J * e 5-9 Thus, the convergence s quadratc ths o-course only apples when the Jacoban s sensble. I the Jacoban s sngular, or nearly sngular near the soluton, the error can be very large. [In act, when you have a sngular Jacoban at the root tsel, convergence becomes lnear.] - -

24 umercal Methods n Chemcal Engneerng 5.7 Calculatng the Jacoban Matr The methods presented so ar assume that an analytcal orm o the Jacoban was avalable. When we have a large system o equatons and the unctons are 'epensve' to evaluate, calculatng the Jacoban can become necent. Ecent calculaton o the Jacoban then becomes mportant Fnte derences The Jacoban s just a matr o dervatves: J L. L M M M Each o these dervatves can be calculated usng nte derences j δ δ 5- The value o δ cannot be made too small, because computers are only able to store numbers to a nte precson. The workng precson o the computer can be ound wth the Matlab command eps whch s equal to.e-6 on my computer. A common value o δ s eps. Calculatng the Jacoban n ths way s less ecent than an analytcal orm o the Jacoban was suppled. The Matlab Routne 'solve' wll use nte derences to calculate the Jacoban, you don't supply a uncton or the Jacoban s constant, a matr to do t. - -

25 umercal Methods n Chemcal Engneerng 5.7. Broydens Method It s not necessary to calculate the eact value o the Jacoban at each teraton. Broyden's method provdes a way o updatng an estmate o the Jacoban. Generally, the resdual uncton values at the th and th teraton are lnked by J F F 5- So we replace the eact Jacoban by an estmate o the Jacoban at teraton, B, we desre ths appromate Jacoban to obey B F F 5- I we use B the estmate o the Jacoban at teraton, wth a ewton step to get our updated, B B F 5- Usng 5- n 5- B F B B F B ost multply both sdes by T T T T B F B T B F B T F B B 5- So on the th teraton we can calculate an updated estmate o the Jacoban, rom normaton calculated n the prevous teraton, and the value o F, whch we would have to calculate anyway. Usng ths type o update results n a Quas-ewton scheme, whch has lnear convergence

26 umercal Methods n Chemcal Engneerng 5.7. Takng advantage o sparsty Oten, the set o equatons we wll be solvng wll be sparse. The Jacoban wll contan manly zeros. I we know that an element o the Jacoban s zero then we don't have to calculate t. Also, a set o lnear equatons s solved at each teraton, these lnear equatons are sparse then t should be possble to use a ecent soluton method recall handout.there are two ways to eplot sparsty when solvng non-lnear equatons n Matlab:. Use sparse matrces. I you wrte a uncton to calculate the Jacoban, make sure t returns a sparse matr. Ecent methods can then be used to solve the resultng sets o lnear equatons. ote that the Matlab \ command wll detect sparse matrces and try to use the most ecent method t can nd. I you are usng solve, t wll detect that the Jacoban s sparse and act accordngly.. I you are usng solve, but you don't want to calculate the Jacoban analytcally, you can nstead supply a Jacoban pattern. The Jacoban pattern s a sparse matr wth ones where the Jacoban s non-zero. Ths means that solve does not have to calculate every element o the Jacoban. It also means that t wll create a sparse Jacoban

27 umercal Methods n Chemcal Engneerng 5.8 Trust regon method Used by solve The update equaton or s F J 5-6 The soluton to ths set o lnear equatons, wll mnmse the value o J F 5-5 So, rather than solvng the set o lnear equatons, we can mnmse 5-5, wth respect to. A long way rom the soluton, the update can be erratc, so we constran to to be wthn a trust regon. We then solve the constraned optmsaton problem mnmse q J F wth respect to, subject to the constrant that < some value I the ewton step s wthn the trust regon, the update wll be a ull ewton step dentcal to we has solved 5-6, by e.g. elmnaton. I however, the ull ewton step s outsde the trust regon, then a mnmsaton routne s ree to vary both the drecton and length o to mnmse the cost uncton q. We wll get as close as possble to a soluton o 5-6, wthout steppng too ar, because the length o s constraned. Ths overcomes problems wth the reduced step method, n that both the drecton and the length o the update can be vared to keep the step wthn the trust regon. A dscusson o how you set the trust regon at each teraton s beyond the scope o these lectures

28 umercal Methods n Chemcal Engneerng 5.9 Summary The soluton o non-lnear equatons usng a computer wll generally requre some sort o teratve procedure. In ths handout the ewton method or solvng systems o non-lnear equatons was presented. Ths method s one o the most wdely used schemes or solvng non-lnear equatons. Matlab also contans routnes whch can be used to solve systems o non-lnear equaton; the most useul beng solve. When solvng a set o non-lnear equatons, at some pont n the procedure the soluton to a set o lnear equatons s oten requred. Thus, ecent soluton o non-lnear equatons requres the ablty to solve a set o lnear equatons. In prevous lectures we have seen that a set o lnear equatons s sparse, t can be solved ecently. Thus, when the Jacoban o a non-lnear system s a sparse matr, any non-lnear teratve routne should be wrtten to take advantage o ths

29 umercal Methods n Chemcal Engneerng 5. Amendments The ewton and ewton D routnes gven earler evaluate the unctons twce or each teraton. Ths s necent, and can be avoded by changng where n the routne the error s evaluated. Updated routnes are gven below. 5.. Updated verson o ewtond uncton [soluton] ewtondmyfunc,gradent,guess,tol % solves the non-lnear vector equaton F % set usng ewton Raphson teraton % IUTS: % Myunc andle to the uncton whch calculates F % Gradent andle to the uncton whch calculates F'X % Guess Intal Guess % Tol Tolerance % % OUTUTS: % soluton A soluton to the set o equatons % Descrpton % Solves a D non-lnear equaton by ewtons method Guess; %set the error *tol to make sure the loop runs at least once error *tol whle error > tol %calculate the uncton values at the current teraton F evalmyfunc,; %calculate the error error absf; %calculate the Gradent G evalgradent,; %calculate the update d -F/G; %update the value d; end %whle loop soluton ; return - 9 -

30 umercal Methods n Chemcal Engneerng 5.. Updated verson o ewton uncton [soluton] ewtonmyfunc,jacoban,guess,tol % solves the non-lnear vector equaton F % set usng ewton Raphson teraton % IUTS; % Myuncandle to the uncton whch returns the vector F % Jacobanandle to the uncton whch returns the Jacoban Matr % Guess Intal Guess a vector % tol Tolerance % % OUTUTS % soluton The soluton to F Guess; %set the error *tol to make sure the loop runs at least once error *tol whle error > tol %calculate the uncton values at the current teraton F evalmyfunc,; error maabsf; %calculate the jacoban matr J evaljacoban,; %calculate the update solve the lnear system d J\-F; %update the value d; end %whle loop soluton ; return - -

Faraday's Law of Induction

Faraday's Law of Induction Introducton Faraday's Law o Inducton In ths lab, you wll study Faraday's Law o nducton usng a wand wth col whch swngs through a magnetc eld. You wll also examne converson o mechanc energy nto electrc energy

More information

Support Vector Machines

Support Vector Machines Support Vector Machnes Max Wellng Department of Computer Scence Unversty of Toronto 10 Kng s College Road Toronto, M5S 3G5 Canada wellng@cs.toronto.edu Abstract Ths s a note to explan support vector machnes.

More information

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by 6 CHAPTER 8 COMPLEX VECTOR SPACES 5. Fnd the kernel of the lnear transformaton gven n Exercse 5. In Exercses 55 and 56, fnd the mage of v, for the ndcated composton, where and are gven by the followng

More information

21 Vectors: The Cross Product & Torque

21 Vectors: The Cross Product & Torque 21 Vectors: The Cross Product & Torque Do not use our left hand when applng ether the rght-hand rule for the cross product of two vectors dscussed n ths chapter or the rght-hand rule for somethng curl

More information

Least Squares Fitting of Data

Least Squares Fitting of Data Least Squares Fttng of Data Davd Eberly Geoetrc Tools, LLC http://www.geoetrctools.co/ Copyrght c 1998-2016. All Rghts Reserved. Created: July 15, 1999 Last Modfed: January 5, 2015 Contents 1 Lnear Fttng

More information

An Alternative Way to Measure Private Equity Performance

An Alternative Way to Measure Private Equity Performance An Alternatve Way to Measure Prvate Equty Performance Peter Todd Parlux Investment Technology LLC Summary Internal Rate of Return (IRR) s probably the most common way to measure the performance of prvate

More information

SPEE Recommended Evaluation Practice #6 Definition of Decline Curve Parameters Background:

SPEE Recommended Evaluation Practice #6 Definition of Decline Curve Parameters Background: SPEE Recommended Evaluaton Practce #6 efnton of eclne Curve Parameters Background: The producton hstores of ol and gas wells can be analyzed to estmate reserves and future ol and gas producton rates and

More information

1. Measuring association using correlation and regression

1. Measuring association using correlation and regression How to measure assocaton I: Correlaton. 1. Measurng assocaton usng correlaton and regresson We often would lke to know how one varable, such as a mother's weght, s related to another varable, such as a

More information

What is Candidate Sampling

What is Candidate Sampling What s Canddate Samplng Say we have a multclass or mult label problem where each tranng example ( x, T ) conssts of a context x a small (mult)set of target classes T out of a large unverse L of possble

More information

1 Example 1: Axis-aligned rectangles

1 Example 1: Axis-aligned rectangles COS 511: Theoretcal Machne Learnng Lecturer: Rob Schapre Lecture # 6 Scrbe: Aaron Schld February 21, 2013 Last class, we dscussed an analogue for Occam s Razor for nfnte hypothess spaces that, n conjuncton

More information

Institute of Informatics, Faculty of Business and Management, Brno University of Technology,Czech Republic

Institute of Informatics, Faculty of Business and Management, Brno University of Technology,Czech Republic Lagrange Multplers as Quanttatve Indcators n Economcs Ivan Mezník Insttute of Informatcs, Faculty of Busness and Management, Brno Unversty of TechnologCzech Republc Abstract The quanttatve role of Lagrange

More information

Mean Molecular Weight

Mean Molecular Weight Mean Molecular Weght The thermodynamc relatons between P, ρ, and T, as well as the calculaton of stellar opacty requres knowledge of the system s mean molecular weght defned as the mass per unt mole of

More information

The OC Curve of Attribute Acceptance Plans

The OC Curve of Attribute Acceptance Plans The OC Curve of Attrbute Acceptance Plans The Operatng Characterstc (OC) curve descrbes the probablty of acceptng a lot as a functon of the lot s qualty. Fgure 1 shows a typcal OC Curve. 10 8 6 4 1 3 4

More information

Texas Instruments 30X IIS Calculator

Texas Instruments 30X IIS Calculator Texas Instruments 30X IIS Calculator Keystrokes for the TI-30X IIS are shown for a few topcs n whch keystrokes are unque. Start by readng the Quk Start secton. Then, before begnnng a specfc unt of the

More information

Calculation of Sampling Weights

Calculation of Sampling Weights Perre Foy Statstcs Canada 4 Calculaton of Samplng Weghts 4.1 OVERVIEW The basc sample desgn used n TIMSS Populatons 1 and 2 was a two-stage stratfed cluster desgn. 1 The frst stage conssted of a sample

More information

+ + + - - This circuit than can be reduced to a planar circuit

+ + + - - This circuit than can be reduced to a planar circuit MeshCurrent Method The meshcurrent s analog of the nodeoltage method. We sole for a new set of arables, mesh currents, that automatcally satsfy KCLs. As such, meshcurrent method reduces crcut soluton to

More information

A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm

A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm Avalable onlne www.ocpr.com Journal of Chemcal and Pharmaceutcal Research, 2014, 6(7):1884-1889 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 A hybrd global optmzaton algorthm based on parallel

More information

Forecasting the Direction and Strength of Stock Market Movement

Forecasting the Direction and Strength of Stock Market Movement Forecastng the Drecton and Strength of Stock Market Movement Jngwe Chen Mng Chen Nan Ye cjngwe@stanford.edu mchen5@stanford.edu nanye@stanford.edu Abstract - Stock market s one of the most complcated systems

More information

Chapter 4 ECONOMIC DISPATCH AND UNIT COMMITMENT

Chapter 4 ECONOMIC DISPATCH AND UNIT COMMITMENT Chapter 4 ECOOMIC DISATCH AD UIT COMMITMET ITRODUCTIO A power system has several power plants. Each power plant has several generatng unts. At any pont of tme, the total load n the system s met by the

More information

The Greedy Method. Introduction. 0/1 Knapsack Problem

The Greedy Method. Introduction. 0/1 Knapsack Problem The Greedy Method Introducton We have completed data structures. We now are gong to look at algorthm desgn methods. Often we are lookng at optmzaton problems whose performance s exponental. For an optmzaton

More information

University Physics AI No. 11 Kinetic Theory

University Physics AI No. 11 Kinetic Theory Unersty hyscs AI No. 11 Knetc heory Class Number Name I.Choose the Correct Answer 1. Whch type o deal gas wll hae the largest alue or C -C? ( D (A Monatomc (B Datomc (C olyatomc (D he alue wll be the same

More information

v a 1 b 1 i, a 2 b 2 i,..., a n b n i.

v a 1 b 1 i, a 2 b 2 i,..., a n b n i. SECTION 8.4 COMPLEX VECTOR SPACES AND INNER PRODUCTS 455 8.4 COMPLEX VECTOR SPACES AND INNER PRODUCTS All the vector spaces we have studed thus far n the text are real vector spaces snce the scalars are

More information

CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES

CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES In ths chapter, we wll learn how to descrbe the relatonshp between two quanttatve varables. Remember (from Chapter 2) that the terms quanttatve varable

More information

NON-CONSTANT SUM RED-AND-BLACK GAMES WITH BET-DEPENDENT WIN PROBABILITY FUNCTION LAURA PONTIGGIA, University of the Sciences in Philadelphia

NON-CONSTANT SUM RED-AND-BLACK GAMES WITH BET-DEPENDENT WIN PROBABILITY FUNCTION LAURA PONTIGGIA, University of the Sciences in Philadelphia To appear n Journal o Appled Probablty June 2007 O-COSTAT SUM RED-AD-BLACK GAMES WITH BET-DEPEDET WI PROBABILITY FUCTIO LAURA POTIGGIA, Unversty o the Scences n Phladelpha Abstract In ths paper we nvestgate

More information

Logistic Regression. Lecture 4: More classifiers and classes. Logistic regression. Adaboost. Optimization. Multiple class classification

Logistic Regression. Lecture 4: More classifiers and classes. Logistic regression. Adaboost. Optimization. Multiple class classification Lecture 4: More classfers and classes C4B Machne Learnng Hlary 20 A. Zsserman Logstc regresson Loss functons revsted Adaboost Loss functons revsted Optmzaton Multple class classfcaton Logstc Regresson

More information

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis The Development of Web Log Mnng Based on Improve-K-Means Clusterng Analyss TngZhong Wang * College of Informaton Technology, Luoyang Normal Unversty, Luoyang, 471022, Chna wangtngzhong2@sna.cn Abstract.

More information

On the Solution of Indefinite Systems Arising in Nonlinear Optimization

On the Solution of Indefinite Systems Arising in Nonlinear Optimization On the Soluton of Indefnte Systems Arsng n Nonlnear Optmzaton Slva Bonettn, Valera Ruggero and Federca Tnt Dpartmento d Matematca, Unverstà d Ferrara Abstract We consder the applcaton of the precondtoned

More information

Shielding Equations and Buildup Factors Explained

Shielding Equations and Buildup Factors Explained Sheldng Equatons and uldup Factors Explaned Gamma Exposure Fluence Rate Equatons For an explanaton of the fluence rate equatons used n the unshelded and shelded calculatons, vst ths US Health Physcs Socety

More information

n + d + q = 24 and.05n +.1d +.25q = 2 { n + d + q = 24 (3) n + 2d + 5q = 40 (2)

n + d + q = 24 and.05n +.1d +.25q = 2 { n + d + q = 24 (3) n + 2d + 5q = 40 (2) MATH 16T Exam 1 : Part I (In-Class) Solutons 1. (0 pts) A pggy bank contans 4 cons, all of whch are nckels (5 ), dmes (10 ) or quarters (5 ). The pggy bank also contans a con of each denomnaton. The total

More information

GRAVITY DATA VALIDATION AND OUTLIER DETECTION USING L 1 -NORM

GRAVITY DATA VALIDATION AND OUTLIER DETECTION USING L 1 -NORM GRAVITY DATA VALIDATION AND OUTLIER DETECTION USING L 1 -NORM BARRIOT Jean-Perre, SARRAILH Mchel BGI/CNES 18.av.E.Beln 31401 TOULOUSE Cedex 4 (France) Emal: jean-perre.barrot@cnes.fr 1/Introducton The

More information

Calculating the high frequency transmission line parameters of power cables

Calculating the high frequency transmission line parameters of power cables < ' Calculatng the hgh frequency transmsson lne parameters of power cables Authors: Dr. John Dcknson, Laboratory Servces Manager, N 0 RW E B Communcatons Mr. Peter J. Ncholson, Project Assgnment Manager,

More information

Project Networks With Mixed-Time Constraints

Project Networks With Mixed-Time Constraints Project Networs Wth Mxed-Tme Constrants L Caccetta and B Wattananon Western Australan Centre of Excellence n Industral Optmsaton (WACEIO) Curtn Unversty of Technology GPO Box U1987 Perth Western Australa

More information

Rotation Kinematics, Moment of Inertia, and Torque

Rotation Kinematics, Moment of Inertia, and Torque Rotaton Knematcs, Moment of Inerta, and Torque Mathematcally, rotaton of a rgd body about a fxed axs s analogous to a lnear moton n one dmenson. Although the physcal quanttes nvolved n rotaton are qute

More information

Section 5.4 Annuities, Present Value, and Amortization

Section 5.4 Annuities, Present Value, and Amortization Secton 5.4 Annutes, Present Value, and Amortzaton Present Value In Secton 5.2, we saw that the present value of A dollars at nterest rate per perod for n perods s the amount that must be deposted today

More information

The Cox-Ross-Rubinstein Option Pricing Model

The Cox-Ross-Rubinstein Option Pricing Model Fnance 400 A. Penat - G. Pennacc Te Cox-Ross-Rubnsten Opton Prcng Model Te prevous notes sowed tat te absence o arbtrage restrcts te prce o an opton n terms o ts underlyng asset. However, te no-arbtrage

More information

Compiling for Parallelism & Locality. Dependence Testing in General. Algorithms for Solving the Dependence Problem. Dependence Testing

Compiling for Parallelism & Locality. Dependence Testing in General. Algorithms for Solving the Dependence Problem. Dependence Testing Complng for Parallelsm & Localty Dependence Testng n General Assgnments Deadlne for proect 4 extended to Dec 1 Last tme Data dependences and loops Today Fnsh data dependence analyss for loops General code

More information

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ).

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ). REVIEW OF RISK MANAGEMENT CONCEPTS LOSS DISTRIBUTIONS AND INSURANCE Loss and nsurance: When someone s subject to the rsk of ncurrng a fnancal loss, the loss s generally modeled usng a random varable or

More information

THE METHOD OF LEAST SQUARES THE METHOD OF LEAST SQUARES

THE METHOD OF LEAST SQUARES THE METHOD OF LEAST SQUARES The goal: to measure (determne) an unknown quantty x (the value of a RV X) Realsaton: n results: y 1, y 2,..., y j,..., y n, (the measured values of Y 1, Y 2,..., Y j,..., Y n ) every result s encumbered

More information

SUMMARY. Topology optimization, buckling, eigenvalue, derivative, structural optimization 1. INTRODUCTION

SUMMARY. Topology optimization, buckling, eigenvalue, derivative, structural optimization 1. INTRODUCTION INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN ENGINEERING Int. J. Numer. Meth. Engng 0000; 00:1 20 Publshed onlne n Wley InterScence (www.nterscence.wley.com). A fast method for solvng bnary programmng

More information

Luby s Alg. for Maximal Independent Sets using Pairwise Independence

Luby s Alg. for Maximal Independent Sets using Pairwise Independence Lecture Notes for Randomzed Algorthms Luby s Alg. for Maxmal Independent Sets usng Parwse Independence Last Updated by Erc Vgoda on February, 006 8. Maxmal Independent Sets For a graph G = (V, E), an ndependent

More information

Description of the Force Method Procedure. Indeterminate Analysis Force Method 1. Force Method con t. Force Method con t

Description of the Force Method Procedure. Indeterminate Analysis Force Method 1. Force Method con t. Force Method con t Indeternate Analyss Force Method The force (flexblty) ethod expresses the relatonshps between dsplaceents and forces that exst n a structure. Prary objectve of the force ethod s to deterne the chosen set

More information

CHAPTER 8 Potential Energy and Conservation of Energy

CHAPTER 8 Potential Energy and Conservation of Energy CHAPTER 8 Potental Energy and Conservaton o Energy One orm o energy can be converted nto another orm o energy. Conservatve and non-conservatve orces Physcs 1 Knetc energy: Potental energy: Energy assocated

More information

Point cloud to point cloud rigid transformations. Minimizing Rigid Registration Errors

Point cloud to point cloud rigid transformations. Minimizing Rigid Registration Errors Pont cloud to pont cloud rgd transformatons Russell Taylor 600.445 1 600.445 Fall 000-014 Copyrght R. H. Taylor Mnmzng Rgd Regstraton Errors Typcally, gven a set of ponts {a } n one coordnate system and

More information

Consider a 1-D stationary state diffusion-type equation, which we will call the generalized diffusion equation from now on:

Consider a 1-D stationary state diffusion-type equation, which we will call the generalized diffusion equation from now on: Chapter 1 Boundary value problems Numercal lnear algebra technques can be used for many physcal problems. In ths chapter we wll gve some examples of how these technques can be used to solve certan boundary

More information

Lecture 2 The First Law of Thermodynamics (Ch.1)

Lecture 2 The First Law of Thermodynamics (Ch.1) Lecture he Frst Law o hermodynamcs (Ch.) Outlne:. Internal Energy, Work, Heatng. Energy Conservaton the Frst Law 3. Quas-statc processes 4. Enthalpy 5. Heat Capacty Internal Energy he nternal energy o

More information

Modern Problem Solving Techniques in Engineering with POLYMATH, Excel and MATLAB. Introduction

Modern Problem Solving Techniques in Engineering with POLYMATH, Excel and MATLAB. Introduction Modern Problem Solvng Tehnques n Engneerng wth POLYMATH, Exel and MATLAB. Introduton Engneers are fundamentally problem solvers, seekng to aheve some objetve or desgn among tehnal, soal eonom, regulatory

More information

Loop Parallelization

Loop Parallelization - - Loop Parallelzaton C-52 Complaton steps: nested loops operatng on arrays, sequentell executon of teraton space DECLARE B[..,..+] FOR I :=.. FOR J :=.. I B[I,J] := B[I-,J]+B[I-,J-] ED FOR ED FOR analyze

More information

A Three-Point Combined Compact Difference Scheme

A Three-Point Combined Compact Difference Scheme JOURNAL OF COMPUTATIONAL PHYSICS 140, 370 399 (1998) ARTICLE NO. CP985899 A Three-Pont Combned Compact Derence Scheme Peter C. Chu and Chenwu Fan Department o Oceanography, Naval Postgraduate School, Monterey,

More information

NMT EE 589 & UNM ME 482/582 ROBOT ENGINEERING. Dr. Stephen Bruder NMT EE 589 & UNM ME 482/582

NMT EE 589 & UNM ME 482/582 ROBOT ENGINEERING. Dr. Stephen Bruder NMT EE 589 & UNM ME 482/582 NMT EE 589 & UNM ME 482/582 ROBOT ENGINEERING Dr. Stephen Bruder NMT EE 589 & UNM ME 482/582 7. Root Dynamcs 7.2 Intro to Root Dynamcs We now look at the forces requred to cause moton of the root.e. dynamcs!!

More information

PERRON FROBENIUS THEOREM

PERRON FROBENIUS THEOREM PERRON FROBENIUS THEOREM R. CLARK ROBINSON Defnton. A n n matrx M wth real entres m, s called a stochastc matrx provded () all the entres m satsfy 0 m, () each of the columns sum to one, m = for all, ()

More information

The circuit shown on Figure 1 is called the common emitter amplifier circuit. The important subsystems of this circuit are:

The circuit shown on Figure 1 is called the common emitter amplifier circuit. The important subsystems of this circuit are: polar Juncton Transstor rcuts Voltage and Power Amplfer rcuts ommon mtter Amplfer The crcut shown on Fgure 1 s called the common emtter amplfer crcut. The mportant subsystems of ths crcut are: 1. The basng

More information

Chapter 7: Answers to Questions and Problems

Chapter 7: Answers to Questions and Problems 19. Based on the nformaton contaned n Table 7-3 of the text, the food and apparel ndustres are most compettve and therefore probably represent the best match for the expertse of these managers. Chapter

More information

BERNSTEIN POLYNOMIALS

BERNSTEIN POLYNOMIALS On-Lne Geometrc Modelng Notes BERNSTEIN POLYNOMIALS Kenneth I. Joy Vsualzaton and Graphcs Research Group Department of Computer Scence Unversty of Calforna, Davs Overvew Polynomals are ncredbly useful

More information

A Master Time Value of Money Formula. Floyd Vest

A Master Time Value of Money Formula. Floyd Vest A Master Tme Value of Money Formula Floyd Vest For Fnancal Functons on a calculator or computer, Master Tme Value of Money (TVM) Formulas are usually used for the Compound Interest Formula and for Annutes.

More information

Answer: A). There is a flatter IS curve in the high MPC economy. Original LM LM after increase in M. IS curve for low MPC economy

Answer: A). There is a flatter IS curve in the high MPC economy. Original LM LM after increase in M. IS curve for low MPC economy 4.02 Quz Solutons Fall 2004 Multple-Choce Questons (30/00 ponts) Please, crcle the correct answer for each of the followng 0 multple-choce questons. For each queston, only one of the answers s correct.

More information

IMPACT ANALYSIS OF A CELLULAR PHONE

IMPACT ANALYSIS OF A CELLULAR PHONE 4 th ASA & μeta Internatonal Conference IMPACT AALYSIS OF A CELLULAR PHOE We Lu, 2 Hongy L Bejng FEAonlne Engneerng Co.,Ltd. Bejng, Chna ABSTRACT Drop test smulaton plays an mportant role n nvestgatng

More information

Quantization Effects in Digital Filters

Quantization Effects in Digital Filters Quantzaton Effects n Dgtal Flters Dstrbuton of Truncaton Errors In two's complement representaton an exact number would have nfntely many bts (n general). When we lmt the number of bts to some fnte value

More information

1. Fundamentals of probability theory 2. Emergence of communication traffic 3. Stochastic & Markovian Processes (SP & MP)

1. Fundamentals of probability theory 2. Emergence of communication traffic 3. Stochastic & Markovian Processes (SP & MP) 6.3 / -- Communcaton Networks II (Görg) SS20 -- www.comnets.un-bremen.de Communcaton Networks II Contents. Fundamentals of probablty theory 2. Emergence of communcaton traffc 3. Stochastc & Markovan Processes

More information

CHAPTER 14 MORE ABOUT REGRESSION

CHAPTER 14 MORE ABOUT REGRESSION CHAPTER 14 MORE ABOUT REGRESSION We learned n Chapter 5 that often a straght lne descrbes the pattern of a relatonshp between two quanttatve varables. For nstance, n Example 5.1 we explored the relatonshp

More information

7.5. Present Value of an Annuity. Investigate

7.5. Present Value of an Annuity. Investigate 7.5 Present Value of an Annuty Owen and Anna are approachng retrement and are puttng ther fnances n order. They have worked hard and nvested ther earnngs so that they now have a large amount of money on

More information

Recurrence. 1 Definitions and main statements

Recurrence. 1 Definitions and main statements Recurrence 1 Defntons and man statements Let X n, n = 0, 1, 2,... be a MC wth the state space S = (1, 2,...), transton probabltes p j = P {X n+1 = j X n = }, and the transton matrx P = (p j ),j S def.

More information

A Binary Particle Swarm Optimization Algorithm for Lot Sizing Problem

A Binary Particle Swarm Optimization Algorithm for Lot Sizing Problem Journal o Economc and Socal Research 5 (2), -2 A Bnary Partcle Swarm Optmzaton Algorthm or Lot Szng Problem M. Fath Taşgetren & Yun-Cha Lang Abstract. Ths paper presents a bnary partcle swarm optmzaton

More information

Lecture 2: Single Layer Perceptrons Kevin Swingler

Lecture 2: Single Layer Perceptrons Kevin Swingler Lecture 2: Sngle Layer Perceptrons Kevn Sngler kms@cs.str.ac.uk Recap: McCulloch-Ptts Neuron Ths vastly smplfed model of real neurons s also knon as a Threshold Logc Unt: W 2 A Y 3 n W n. A set of synapses

More information

Safety and Reliability of Distributed Embedded Systems

Safety and Reliability of Distributed Embedded Systems Saety and Relablty o Dstrbuted Embedded Systems Techncal Report ESL 04-01 Smulaton o Vehcle Longtudnal Dynamcs Mchael Short Mchael J. Pont and Qang Huang Embedded Systems Laboratory Unversty o Lecester

More information

SUPPLIER FINANCING AND STOCK MANAGEMENT. A JOINT VIEW.

SUPPLIER FINANCING AND STOCK MANAGEMENT. A JOINT VIEW. SUPPLIER FINANCING AND STOCK MANAGEMENT. A JOINT VIEW. Lucía Isabel García Cebrán Departamento de Economía y Dreccón de Empresas Unversdad de Zaragoza Gran Vía, 2 50.005 Zaragoza (Span) Phone: 976-76-10-00

More information

Heuristic Static Load-Balancing Algorithm Applied to CESM

Heuristic Static Load-Balancing Algorithm Applied to CESM Heurstc Statc Load-Balancng Algorthm Appled to CESM 1 Yur Alexeev, 1 Sher Mckelson, 1 Sven Leyffer, 1 Robert Jacob, 2 Anthony Crag 1 Argonne Natonal Laboratory, 9700 S. Cass Avenue, Argonne, IL 60439,

More information

Figure 1. Inventory Level vs. Time - EOQ Problem

Figure 1. Inventory Level vs. Time - EOQ Problem IEOR 54 Sprng, 009 rof Leahman otes on Eonom Lot Shedulng and Eonom Rotaton Cyles he Eonom Order Quantty (EOQ) Consder an nventory tem n solaton wth demand rate, holdng ost h per unt per unt tme, and replenshment

More information

Extending Probabilistic Dynamic Epistemic Logic

Extending Probabilistic Dynamic Epistemic Logic Extendng Probablstc Dynamc Epstemc Logc Joshua Sack May 29, 2008 Probablty Space Defnton A probablty space s a tuple (S, A, µ), where 1 S s a set called the sample space. 2 A P(S) s a σ-algebra: a set

More information

total A A reag total A A r eag

total A A reag total A A r eag hapter 5 Standardzng nalytcal Methods hapter Overvew 5 nalytcal Standards 5B albratng the Sgnal (S total ) 5 Determnng the Senstvty (k ) 5D Lnear Regresson and albraton urves 5E ompensatng for the Reagent

More information

Causal, Explanatory Forecasting. Analysis. Regression Analysis. Simple Linear Regression. Which is Independent? Forecasting

Causal, Explanatory Forecasting. Analysis. Regression Analysis. Simple Linear Regression. Which is Independent? Forecasting Causal, Explanatory Forecastng Assumes cause-and-effect relatonshp between system nputs and ts output Forecastng wth Regresson Analyss Rchard S. Barr Inputs System Cause + Effect Relatonshp The job of

More information

An Overview of Financial Mathematics

An Overview of Financial Mathematics An Overvew of Fnancal Mathematcs Wllam Benedct McCartney July 2012 Abstract Ths document s meant to be a quck ntroducton to nterest theory. It s wrtten specfcally for actuaral students preparng to take

More information

A fast method for binary programming using first-order derivatives, with application to topology optimization with buckling constraints

A fast method for binary programming using first-order derivatives, with application to topology optimization with buckling constraints INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN ENGINEERING Int. J. Numer. Meth. Engng (2012) Publshed onlne n Wley Onlne Lbrary (wleyonlnelbrary.com)..4367 A fast method for bnary programmng usng frst-order

More information

Implementation of Deutsch's Algorithm Using Mathcad

Implementation of Deutsch's Algorithm Using Mathcad Implementaton of Deutsch's Algorthm Usng Mathcad Frank Roux The followng s a Mathcad mplementaton of Davd Deutsch's quantum computer prototype as presented on pages - n "Machnes, Logc and Quantum Physcs"

More information

DEFINING %COMPLETE IN MICROSOFT PROJECT

DEFINING %COMPLETE IN MICROSOFT PROJECT CelersSystems DEFINING %COMPLETE IN MICROSOFT PROJECT PREPARED BY James E Aksel, PMP, PMI-SP, MVP For Addtonal Informaton about Earned Value Management Systems and reportng, please contact: CelersSystems,

More information

Damage detection in composite laminates using coin-tap method

Damage detection in composite laminates using coin-tap method Damage detecton n composte lamnates usng con-tap method S.J. Km Korea Aerospace Research Insttute, 45 Eoeun-Dong, Youseong-Gu, 35-333 Daejeon, Republc of Korea yaeln@kar.re.kr 45 The con-tap test has the

More information

SOLVING CARDINALITY CONSTRAINED PORTFOLIO OPTIMIZATION PROBLEM BY BINARY PARTICLE SWARM OPTIMIZATION ALGORITHM

SOLVING CARDINALITY CONSTRAINED PORTFOLIO OPTIMIZATION PROBLEM BY BINARY PARTICLE SWARM OPTIMIZATION ALGORITHM SOLVIG CARDIALITY COSTRAIED PORTFOLIO OPTIMIZATIO PROBLEM BY BIARY PARTICLE SWARM OPTIMIZATIO ALGORITHM Aleš Kresta Klíčová slova: optmalzace portfola, bnární algortmus rojení částc Key words: portfolo

More information

Forecasting the Demand of Emergency Supplies: Based on the CBR Theory and BP Neural Network

Forecasting the Demand of Emergency Supplies: Based on the CBR Theory and BP Neural Network 700 Proceedngs of the 8th Internatonal Conference on Innovaton & Management Forecastng the Demand of Emergency Supples: Based on the CBR Theory and BP Neural Network Fu Deqang, Lu Yun, L Changbng School

More information

Logical Development Of Vogel s Approximation Method (LD-VAM): An Approach To Find Basic Feasible Solution Of Transportation Problem

Logical Development Of Vogel s Approximation Method (LD-VAM): An Approach To Find Basic Feasible Solution Of Transportation Problem INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH VOLUME, ISSUE, FEBRUARY ISSN 77-866 Logcal Development Of Vogel s Approxmaton Method (LD- An Approach To Fnd Basc Feasble Soluton Of Transportaton

More information

Inter-Ing 2007. INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC INTERNATIONAL CONFERENCE, TG. MUREŞ ROMÂNIA, 15-16 November 2007.

Inter-Ing 2007. INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC INTERNATIONAL CONFERENCE, TG. MUREŞ ROMÂNIA, 15-16 November 2007. Inter-Ing 2007 INTERDISCIPLINARITY IN ENGINEERING SCIENTIFIC INTERNATIONAL CONFERENCE, TG. MUREŞ ROMÂNIA, 15-16 November 2007. UNCERTAINTY REGION SIMULATION FOR A SERIAL ROBOT STRUCTURE MARIUS SEBASTIAN

More information

Descriptive Models. Cluster Analysis. Example. General Applications of Clustering. Examples of Clustering Applications

Descriptive Models. Cluster Analysis. Example. General Applications of Clustering. Examples of Clustering Applications CMSC828G Prncples of Data Mnng Lecture #9 Today s Readng: HMS, chapter 9 Today s Lecture: Descrptve Modelng Clusterng Algorthms Descrptve Models model presents the man features of the data, a global summary

More information

Introduction to Statistical Physics (2SP)

Introduction to Statistical Physics (2SP) Introducton to Statstcal Physcs (2SP) Rchard Sear March 5, 20 Contents What s the entropy (aka the uncertanty)? 2. One macroscopc state s the result of many many mcroscopc states.......... 2.2 States wth

More information

IDENTIFICATION AND CORRECTION OF A COMMON ERROR IN GENERAL ANNUITY CALCULATIONS

IDENTIFICATION AND CORRECTION OF A COMMON ERROR IN GENERAL ANNUITY CALCULATIONS IDENTIFICATION AND CORRECTION OF A COMMON ERROR IN GENERAL ANNUITY CALCULATIONS Chrs Deeley* Last revsed: September 22, 200 * Chrs Deeley s a Senor Lecturer n the School of Accountng, Charles Sturt Unversty,

More information

A machine vision approach for detecting and inspecting circular parts

A machine vision approach for detecting and inspecting circular parts A machne vson approach for detectng and nspectng crcular parts Du-Mng Tsa Machne Vson Lab. Department of Industral Engneerng and Management Yuan-Ze Unversty, Chung-L, Tawan, R.O.C. E-mal: edmtsa@saturn.yzu.edu.tw

More information

Section 2 Introduction to Statistical Mechanics

Section 2 Introduction to Statistical Mechanics Secton 2 Introducton to Statstcal Mechancs 2.1 Introducng entropy 2.1.1 Boltzmann s formula A very mportant thermodynamc concept s that of entropy S. Entropy s a functon of state, lke the nternal energy.

More information

The issue of June, 1925 of Industrial and Engineering Chemistry published a famous paper entitled

The issue of June, 1925 of Industrial and Engineering Chemistry published a famous paper entitled Revsta Cêncas & Tecnologa Reflectons on the use of the Mccabe and Thele method GOMES, João Fernando Perera Chemcal Engneerng Department, IST - Insttuto Superor Técnco, Torre Sul, Av. Rovsco Pas, 1, 1049-001

More information

Regression Models for a Binary Response Using EXCEL and JMP

Regression Models for a Binary Response Using EXCEL and JMP SEMATECH 997 Statstcal Methods Symposum Austn Regresson Models for a Bnary Response Usng EXCEL and JMP Davd C. Trndade, Ph.D. STAT-TECH Consultng and Tranng n Appled Statstcs San Jose, CA Topcs Practcal

More information

The Mathematical Derivation of Least Squares

The Mathematical Derivation of Least Squares Pscholog 885 Prof. Federco The Mathematcal Dervaton of Least Squares Back when the powers that e forced ou to learn matr algera and calculus, I et ou all asked ourself the age-old queston: When the hell

More information

In the rth step, the computaton of the Householder matrx H r requres only the n ; r last elements of the rth column of A T r;1a r;1 snce we donothave

In the rth step, the computaton of the Householder matrx H r requres only the n ; r last elements of the rth column of A T r;1a r;1 snce we donothave An accurate bdagonal reducton for the computaton of sngular values Ru M. S. Ralha Abstract We present a new bdagonalzaton technque whch s compettve wth the standard bdagonalzaton method and analyse the

More information

Solution: Let i = 10% and d = 5%. By definition, the respective forces of interest on funds A and B are. i 1 + it. S A (t) = d (1 dt) 2 1. = d 1 dt.

Solution: Let i = 10% and d = 5%. By definition, the respective forces of interest on funds A and B are. i 1 + it. S A (t) = d (1 dt) 2 1. = d 1 dt. Chapter 9 Revew problems 9.1 Interest rate measurement Example 9.1. Fund A accumulates at a smple nterest rate of 10%. Fund B accumulates at a smple dscount rate of 5%. Fnd the pont n tme at whch the forces

More information

Numerical Analysis of the Natural Gas Combustion Products

Numerical Analysis of the Natural Gas Combustion Products Energy and Power Engneerng, 2012, 4, 353-357 http://dxdoorg/104236/epe201245046 Publshed Onlne September 2012 (http://wwwscrporg/journal/epe) Numercal Analyss of the Natural Gas Combuston Products Fernando

More information

Binomial Link Functions. Lori Murray, Phil Munz

Binomial Link Functions. Lori Murray, Phil Munz Bnomal Lnk Functons Lor Murray, Phl Munz Bnomal Lnk Functons Logt Lnk functon: ( p) p ln 1 p Probt Lnk functon: ( p) 1 ( p) Complentary Log Log functon: ( p) ln( ln(1 p)) Motvatng Example A researcher

More information

A Simple Approach to Clustering in Excel

A Simple Approach to Clustering in Excel A Smple Approach to Clusterng n Excel Aravnd H Center for Computatonal Engneerng and Networng Amrta Vshwa Vdyapeetham, Combatore, Inda C Rajgopal Center for Computatonal Engneerng and Networng Amrta Vshwa

More information

SIMPLE LINEAR CORRELATION

SIMPLE LINEAR CORRELATION SIMPLE LINEAR CORRELATION Smple lnear correlaton s a measure of the degree to whch two varables vary together, or a measure of the ntensty of the assocaton between two varables. Correlaton often s abused.

More information

Newton-Raphson Method of Solving a Nonlinear Equation Autar Kaw

Newton-Raphson Method of Solving a Nonlinear Equation Autar Kaw Newton-Rphson Method o Solvng Nonlner Equton Autr Kw Ater redng ths chpter, you should be ble to:. derve the Newton-Rphson method ormul,. develop the lgorthm o the Newton-Rphson method,. use the Newton-Rphson

More information

) of the Cell class is created containing information about events associated with the cell. Events are added to the Cell instance

) of the Cell class is created containing information about events associated with the cell. Events are added to the Cell instance Calbraton Method Instances of the Cell class (one nstance for each FMS cell) contan ADC raw data and methods assocated wth each partcular FMS cell. The calbraton method ncludes event selecton (Class Cell

More information

Question 2: What is the variance and standard deviation of a dataset?

Question 2: What is the variance and standard deviation of a dataset? Queston 2: What s the varance and standard devaton of a dataset? The varance of the data uses all of the data to compute a measure of the spread n the data. The varance may be computed for a sample of

More information

Methods for Calculating Life Insurance Rates

Methods for Calculating Life Insurance Rates World Appled Scences Journal 5 (4): 653-663, 03 ISSN 88-495 IDOSI Pulcatons, 03 DOI: 0.589/dos.wasj.03.5.04.338 Methods for Calculatng Lfe Insurance Rates Madna Movsarovna Magomadova Chechen State Unversty,

More information

Durham Research Online

Durham Research Online Durham Research Onlne Deposted n DRO: 9 March 21 Verson of attached le: Accepted Verson Peer-revew status of attached le: Peer-revewed Ctaton for publshed tem: Matthews, P. C. and Coates, G. (27) 'Stochastc

More information

Linear Circuits Analysis. Superposition, Thevenin /Norton Equivalent circuits

Linear Circuits Analysis. Superposition, Thevenin /Norton Equivalent circuits Lnear Crcuts Analyss. Superposton, Theenn /Norton Equalent crcuts So far we hae explored tmendependent (resste) elements that are also lnear. A tmendependent elements s one for whch we can plot an / cure.

More information

L10: Linear discriminants analysis

L10: Linear discriminants analysis L0: Lnear dscrmnants analyss Lnear dscrmnant analyss, two classes Lnear dscrmnant analyss, C classes LDA vs. PCA Lmtatons of LDA Varants of LDA Other dmensonalty reducton methods CSCE 666 Pattern Analyss

More information