On the usage of Sorting Networks to Big Data

Size: px
Start display at page:

Download "On the usage of Sorting Networks to Big Data"

Transcription

1 On he sage of Soring Neorks o Big Daa Blanca López and Nareli Crz-Corés Arificial Inelligence Laboraory, Cenro de Invesigación en Compación, Insio Poliécnico Nacional (CIC-IPN), México DF, México Conry Absrac Soring daa in a comper is maybe he mos poplar classical ask in Comper Science For he majoriy of applicaions he main goal is o minimize he nmber of comparisons and execion ime ha he soring algorihm consmes Soring Neorks are algorihms ha perform exacly he same nmber of comparisons o order any inp permaion for a given inp daa size Tha is, each sep does no depend on he resl of a previos comparisons Ths, designing Soring Neorks ih a minimal nmber of comparisons becomes a very imporan ask Hoever, i is an NP-hard problem Acally, he opimal Soring Neorks ih a minimal nmber comparisons (or a leas close o he opimal) for small inp daa sizes from o 6 are pblished in he specialized lierare Of corse, hese inp daa sizes are very small o be sed in real orld problems In his ork e propose a ne sraegy o improve he QickSor performance by copling i ih some Soring Neorks o large inp daa The resls demonsrae i helps redcing he soring execion ime Keyords: Soring Neorks, QickSor Inrodcion Soring Algorihms are maybe one of he mos sdied problems in Comper Science, from he heoreical and pracical poins of vie Applicaions of hem can be fond in Daa Processing Sysems, Neork Commnicaion Sysems, Image Processing, Arificial Inelligence, Crypography, Comper Secriy, Informaion Sysems, among many ohers A large se of Soring Algorihms can be fond in he specialized lierare, sch as: qicksor, bbble sor, merge sor, shell sor, heapsor, inserion, inrosor, shear soring, ec Choosing he mos efficien algorihm sally depends on he ype of applicaion a hand In general, he Soring Algorihms can be classified ino o grops: he adapive and non-adapive An adapive algorihm execes is compare-inerchange operaions depending on he inp daa On he oher hand, he non-adapive algorihms have fixed operaions hich are execed no maer he configraion of he inp daa (e g all he possible permaions) They alays exece he same compare-inerchange operaions Soring Neorks (SN) are an example of he non-adapive algorihms Taking advanage of he divide-and-conqer sraegy ilized by he QickSor, i is designed a sraegy here some SN are copled o i in order o redce he comparisons performed by he QickSor The remaining of his paper is organized as follos In Secion some basic conceps abo Qicksor and Soring Neorks are presened In Secion he proposal is explained Secion 4 presens he experimens and resls Finally in Secion 5 some conclsions are dran Basic Conceps Qicksor Algorihm Qicksor (also knon as Pariion-Exchange Sor) as firs presened in 960 by Tony Hoare [4] I ses a divideand-conqer sraegy by dividing a large lis ino o smaller sbliss A sblis ih he smalles vales and anoher ih he greaes Then, each sblis is recrsively ordered The algorihm is as follos: ) Choose an elemen from he lis ha ill be called pivo ) Order he lis in sch a ay ha all he vales hich are less han he pivo ill be locaed o is lef (before he pivo) Frher, all he vales greaer han he pivo ill be locaed o is righ (afer he pivo) This ay, he vale in he pivo is on is final posiion ) For each sblis, repea he previos seps in a recrsively manner nil he sbliss size is zero or one This idea is illsraed in Figre QickSor is a very efficien algorihm ha on he average and bes cases makes O(n log n) comparisons for soring n elemens In he ors case i makes O(n ) Some varians o his algorihm have been presened in [6][] here heir ahors proposed some modificaions o redce he execion ime Soring Neorks SN are algorihms ih he main feare of being oblivios, i means ha heir crren operaions (comparisons) do no depend on he inp daa or he previos comparisons [5][7] Unlike oher ell knon soring algorihms (bbble

2 Pivo Pivo Pivo Ieraion x 0 =4 x = x = x = c 0 c c c c 4 y 0 = y = y = y =4 Fig Ieraion RECURSIVE PARTITION OPERATION OF THE QUICKSORT ALGORITHM sor, qicksor, ec), he seqence and nmber of comparisons are exacly he same no maer he inp configraion (permaion) The SN exhibis o main feares: The comparisons (called comparaors) are fixed before he SN execion, Some comparisons can be execed in a parallel manner A SN is composed by a se of comparaors, here each of hem execes an acion compare-inerchange beeen o elemens (a, b) The elemen a ms be no graer han b, if so, he vales ms be inerchanged o (b, a) So, for a given inp lis ih size n, he se of comparaors conforming he SN are applied o i, hen he op is he lis monoonically non decreasing ordered Typically, he SN are graphically represened by n horizonal lines represening he n inp daa Frher, some verical lines ha represen comparisons beeen he vale a is op exreme and he vale a is boom If he vale a he op is graer han he vale a he boom, hese vales ms be sapped The inp daa are placed a he lef, hen, afer hey have raveled across he horizonal lines and execed he comparisons fond, he op is obained a he righ The daa ms be ascendan sored from op o boom See for example a SN for n = 4 inps illsraed in Figre Each inp daa is se on he horizonal lines labeled as x 0, x, x, x The verical lines are he comparaors c 0, c, c, c, c 4, each receiving o vales, i e, he comparaor c 0 receives he vales x 0 and x, and so on All he daa vales go from lef o righ execing a Fig SORTING NETWORK FOR n = 4 INPUTS compare-inerchange each ime a comparaor is fond So, he comparaors c 0 and c are execed firs, hen c and c, and finally c 4 c 0 evalaes 4 >, hs he vales of x 0 and x are sapped c evalaes <, so he vales of x and x remain iho change This process conines nil all he comparaors are applied, so he final sored lis y 0, y, y, y a he righ accomplishes y 0 y y y As a maer of fac, if an opimal SN for inp size n can be designed (i e ih minimal nmber of comparaors), hen i means ha is he bes manner o sor n daa Designing SN ih minimal nmber of comparaors and/or high parallelism is a classical ineresing problem in Comper Science Acally, noadays i is an open research area I is imporan o noice ha he opimal SN for inp size greaer han n = 6 are no kno Acally, only loer bonds regarding he nmber of comparaors are heoreically knon [5] The mos sdied SN is he one ih inp size n = 6, hich is a relaively small vale, considering he hge qaniy of informaion ha he modern sysems ms handle The bes knon SN n = 6 has only 60 comparaors, for example, he one designed by Green [5] is illsraed in Figre In [] K E Bacher proposed an ineresing algorihm called Merge Odd-Even o merge o SN ino one Tha is, if e have a SN ih inp size n, hen, i is possible o obain a SN ih inp size n by merging o copies of he original SN size n each By folloing his algorihm i is possible o obain SN ih larger inp sizes An example, o increase he size of inp daa in n from SN for n = 4 A se of operaions o order and o op liss g and h are considered In he Figre 4 are shon o liss o re-arrange The lis has he nmbers {,, g } in ordered A he same ime, second lis called are composed by {,,, h } The g + h is he op of he merging neork, he nmbers of he merged liss in ascending order are {,, g+h, g+h } ie, a firs, a lis g + h can be bild by merging neork ih he odd-indexed nmbers of he o inp liss and he even- Usally SN for inp sizes greaer han n = 6 are considered as large

3 sep sep sep sep4 sep5 sep6 g h Fig SN WITH INPUT SIZE n = 6 DESIGNED BY GREEN IT IS THE BEST KNOW WITH 60 COMPARATORS Fig 5 ODD-EVEN MERGESORT SCHEME TWO SN FOR n = 8 INPUTS IS CONSTRUCTED BY TWO SN FOR n = 4 Co C Co C C C C C C4 C4 g h M E R G E g+h O d d E v e n x x x y y y Fig 4 ODD-EVEN MERGESORT SCHEME FOR TO ORDER TWO SN FOR n = 8 INPUTS IS CONSTRUCTED BY TWO SN FOR n = 4 Fig 6 ODD-EVEN MERGING SCHEME indexed nmbers of he o inp liss The loes op of he odd merge is lef alone and becomes he loes nmber of final lis The seps o ordered o liss are : ) Merge he keys of by odd-indexed {,, 5, } ih he odd-indexed {,, 5, } o form he seqences {x, x, x, } of he keys in order ) Merge he keys of by even-indexed {, 4, 6, } ih he even-indexed {, 4, 6, } o form he seqences {y, y, y, } of he keys in order ) Then se = x and se parallel comparaors o se i = min(x i+, y i ) and i+ = max(x i+, y i ) i = {,,, } The sep and sep can be apply in parallel and each of he involves abo (g + )/ keys A more deailed informaion abo he Theorem is [][5][][8] In regard o bild a SN o n = 8 from o SN for n = 4 ih he Odd-Even merge mehod, he Figre 5 exhibi he nmber of comparaors ha i has fll I has 9 comparaors in 6 seps or layers The sep arranged o lis o n = 4, boh in non decreasing order In sep 4 as sed for comparaors o re-arrange (merge) he 8 elemens and hen, o comparaors o merge he for ordered liss (sep 5) and hen, in sep 6 as sed hree comparaors o merge he ordered seqences o form one ordered lis conaining all 8 elemens Neverheless, his mehod orks beer for small inp sizes, and decreases is performance as he inp sizes increase, ie for large inp sizes he resling SN old have more comparaors han he opimal Noice ha for a given inp daa size n he corresponding SN has fixed is comparaors, hich means ha a ne SN ms be designed if he inp daa size is differen han n

4 In his sense he SN are less flexible han he convenional adapive soring algorihms Proposal Considering ha he QickSor is a very efficien algorihm based on a divide-and-conqer sraegy, and he opimal SN are only knon for small inp daa sizes, his proposal consiss on copling a SN ih he QickSor algorihm o order big inp daa in an efficien manner The algorihm ill be named Qick+SN The general idea is o apply QickSor in convenional ay o he inp daa as many imes as necessary nil he sbliss are small enogh o be sored by a given SN of inp size n This idea is illsraed in Figre 7 Wih his small change in he QickSor i is possible o improve is execion ime hile mainaining is flexibiliy, in he sense ha he algorihm is able o order any inp daa size Le s sppose ha e have seleced a deermined SN o ork ih an inp size eqal o n = 6 (hich is he greaes near-opimal knon) For a given inp daa A o be ordered ih size Z (here Z is a large nmber), he algorihm Qick+SN is defined as follos: ) Divide an array A ino o pars (a l and a r ) by selecing he elemen in he middle posiion as pivo denoed by m ) Compare each elemen of a l and a r agains he pivo and move all he elemens less han m o he lef array a l, and all he elemens greaer han m o he righ array a r ) Verify if he resling liss are size n: If so, hen he sblis is sored by he SN If no, hen go o sep recrsively The op of his algorihm is he lis A compleely ordered Noice ha Qick+SN orks by applying a specific SN for a deermined inp size n Therefore, only if a resling lis has exacly n elemens hen he SN can be applied o i Each ime ha he QickSor splis he lis ino o, i is no possible o kno he resling sizes Hence, i is no possible o kno in advance he nmber of imes ha he SN ill be applied 4 Experimenal design In order o assess he proposed algorihm efficiency, a se of experimens ere condced The Qick+SN as applied o daa liss (nmbers) ih differen inp sizes, inp permaions Addiionally, i as experimened by sing differen SN The configraion for each experimen is a combinaion of he folloing opions: Inp daa size: To liss conformed by and nmbers o be sored ere sed as inp Inp permaions: Three differen configraions of he inp liss ere sed: ly generaed nmbers, SN Pivo SN Pivo Fig 7 Pivo SN SCHEME OF THE PROPOSED QUICK+SN ALGORITHM Ieraion Ieraion nmbers hich are already ordered, and inverse ordered nmbers To differen SN ere ilized for n = 6 and n = 56 Therefore, e have elve experimen ses ih differen configraions Each se as execed 0 imes The ime and comparisons performed as aken by he Qick+SN applied o each se as obained The saisical resls abo he ime are shon in Table and and respec o he nmber of comparisons are exhibis in he Table and 4 All of hem have as firs colmn he inp configraion, as second colmn sho he size of he inp daa, in he hird colmns are shoing he ime consmed (in seconds) sing Qick+SN and he oher case, he nmber of comparisons performed In he las colmn he original Qicksor resls are shon The Table and are presened he ime and comparison performed of a SN for n = 6 The SN ih n = 56 as designed by combining copies of Green s SN (shon in Figre ) ih he algorihm Merge Odd-Even menioned in Secion Is performance is presened in Table and 4 I can be observed for he case of random sored inp daa, ha he Qick+SN ih n = 6 operforms he original QickSor Hoever, for he cases here he inp daa as already sored or invered, he QickSor obained beer resls han Qick+SN n = 6 Ths, for all he configraions and inp daa sizes, he Qick+SN ih n = 56 obained bes resls ih he minimal execion imes

5 Table STATISTICAL RESULTS (IN SECONDS) OF QUICK+SN AND QUICKSORT SN TO n = 6 WAS UTILIZED Inp Inp +SN Original Configraion Size Z ih n = 6 QickSor Average 098 Median Bes 089 Wors 0947 Average 40 Median 07 Bes 977 Wors Table STATISTICAL RESULTS (IN COMPARISONS PERFORMED) OF QUICK+SN AND QUICKSORT SN TO n = 6 WAS UTILIZED Inp Inp +SN Original Configraion Size Z ih n = 6 QickSor Average 9587 Median 077 Bes Wors Average Median Bes Wors Average 0787 Median Bes 0097 Wors Average Median n Bes Wors Average 4 Median 9669 Bes 908 Wors 5499 Average Median Bes Wors Average 667 Median 466 Bes 4569 Wors Average Median Bes Wors Average Median Bes Wors 759 Average Median Bes Wors Table STATISTICAL RESULTS (IN SECONDS) OF QUICK+SN AND QUICKSORT SN TO n = 56 WAS UTILIZED Inp Inp +SN Original Configraion Size Z ih n = 56 QickSor Average 0046 Median Bes Wors 0485 Average Median Bes 058 Wors Table 4 STATISTICAL RESULTS (IN COMPARISONS PERFORMED) OF QUICK+SN AND QUICKSORT SN TO n = 56 WAS UTILIZED Inp Inp +SN Original Configraion Size Z ih n = 56 QickSor Average Median Bes Wors 874 Average Median Bes Wors Average Median Bes Wors Average Median n Bes Wors Average Median 059 Bes Wors Average Median Bes Wors Average Median 0098 Bes 0095 Wors Average Median Bes Wors Average Median Bes Wors Average Median Bes Wors

6 5 Conclsions Taking advanage of heir inheren feares, i as proposed a combinaion of he ell-knon algorihm QickSor ih he algorihm called Soring Neorks The experimenal resls shoed ha he proposal is compeiive by obaining beer execion imes han he original QickSor I as also noiced ha he execion imes ere improved hen SN for larger inp daa sizes ere ilized I is necessary o experimen ih larger inp daa, and also ih SN for differen sizes Frher, a formal sdy relaed o he algorihms complexiy is necessary 6 Acknoledgmens The ahors acknoledges sppor from CONACyT hrogh projecs nmber 804 and 07 The firs ahor acknoledges sppor from CONACyT hrogh a scholarship o prse gradae sdies a CIC-IPN References [] S W Baddar and K E Bacher Designing Soring Neorks: A ne Paradigm Springer, 0 [] K E Bacher Soring neorks and heir applicaions In Proceedings of he April 0 May, 968, spring join comper conference, AFIPS 68 (Spring), pages 07 4, Ne York, NY, USA, 968 ACM [] D Canone and G Cincoi Qickheapsor, an efficien mix of classical soring algorihms In Gambosi G Bongiovanni GC and Pereschi R, ediors, CIAC, volme 767 of Lecre Noes in Comper Science, pages 50 6 Springer, 000 [4] C A R Hoare Algorihm 64: Qicksor Commn ACM, 4(7):, Jly 96 [5] D E Knh The Ar of Comper Programming, Volme III: Soring and Searching, nd Ediion Addison-Wesley, 998 [6] U Kocamaz Increasing he efficiency of qicksor sing a neral neork based algorihm selecion model Inf Sci, 9:94 05, April 0 [7] D G OConnor and R J Nelson Soring sysem ih n-line soring sich Unied Saes Paen nmber,09,4, 6, April, [8] Kenneh E Bacher Sherenaz W Al-Haj Baddar

Longest Common Prefixes

Longest Common Prefixes Longes Common Prefixes The sandard ordering for srings is he lexicographical order. I is induced by an order over he alphabe. We will use he same symbols (,

More information

0.1 MAXIMUM LIKELIHOOD ESTIMATION EXPLAINED

0.1 MAXIMUM LIKELIHOOD ESTIMATION EXPLAINED 0.1 MAXIMUM LIKELIHOOD ESTIMATIO EXPLAIED Maximum likelihood esimaion is a bes-fi saisical mehod for he esimaion of he values of he parameers of a sysem, based on a se of observaions of a random variable

More information

WEEK-3 Recitation PHYS 131. of the projectile s velocity remains constant throughout the motion, since the acceleration a x

WEEK-3 Recitation PHYS 131. of the projectile s velocity remains constant throughout the motion, since the acceleration a x WEEK-3 Reciaion PHYS 131 Ch. 3: FOC 1, 3, 4, 6, 14. Problems 9, 37, 41 & 71 and Ch. 4: FOC 1, 3, 5, 8. Problems 3, 5 & 16. Feb 8, 018 Ch. 3: FOC 1, 3, 4, 6, 14. 1. (a) The horizonal componen of he projecile

More information

4.2 Continuous-Time Systems and Processes Problem Definition Let the state variable representation of a linear system be

4.2 Continuous-Time Systems and Processes Problem Definition Let the state variable representation of a linear system be 4 COVARIANCE ROAGAION 41 Inrodcion Now ha we have compleed or review of linear sysems and random processes, we wan o eamine he performance of linear sysems ecied by random processes he sandard approach

More information

first-order circuit Complete response can be regarded as the superposition of zero-input response and zero-state response.

first-order circuit Complete response can be regarded as the superposition of zero-input response and zero-state response. Experimen 4:he Sdies of ransiional processes of 1. Prpose firs-order circi a) Use he oscilloscope o observe he ransiional processes of firs-order circi. b) Use he oscilloscope o measre he ime consan of

More information

Errata (1 st Edition)

Errata (1 st Edition) P Sandborn, os Analysis of Elecronic Sysems, s Ediion, orld Scienific, Singapore, 03 Erraa ( s Ediion) S K 05D Page 8 Equaion (7) should be, E 05D E Nu e S K he L appearing in he equaion in he book does

More information

Chapter 7: Solving Trig Equations

Chapter 7: Solving Trig Equations Haberman MTH Secion I: The Trigonomeric Funcions Chaper 7: Solving Trig Equaions Le s sar by solving a couple of equaions ha involve he sine funcion EXAMPLE a: Solve he equaion sin( ) The inverse funcions

More information

Modal identification of structures from roving input data by means of maximum likelihood estimation of the state space model

Modal identification of structures from roving input data by means of maximum likelihood estimation of the state space model Modal idenificaion of srucures from roving inpu daa by means of maximum likelihood esimaion of he sae space model J. Cara, J. Juan, E. Alarcón Absrac The usual way o perform a forced vibraion es is o fix

More information

A Mathematical model to Solve Reaction Diffusion Equation using Differential Transformation Method

A Mathematical model to Solve Reaction Diffusion Equation using Differential Transformation Method Inernaional Jornal of Mahemaics Trends and Technology- Volme Isse- A Mahemaical model o Solve Reacion Diffsion Eqaion sing Differenial Transformaion Mehod Rahl Bhadaria # A.K. Singh * D.P Singh # #Deparmen

More information

Single-Pass-Based Heuristic Algorithms for Group Flexible Flow-shop Scheduling Problems

Single-Pass-Based Heuristic Algorithms for Group Flexible Flow-shop Scheduling Problems Single-Pass-Based Heurisic Algorihms for Group Flexible Flow-shop Scheduling Problems PEI-YING HUANG, TZUNG-PEI HONG 2 and CHENG-YAN KAO, 3 Deparmen of Compuer Science and Informaion Engineering Naional

More information

Scalar Conservation Laws

Scalar Conservation Laws MATH-459 Nmerical Mehods for Conservaion Laws by Prof. Jan S. Heshaven Solion se : Scalar Conservaion Laws Eercise. The inegral form of he scalar conservaion law + f ) = is given in Eq. below. ˆ 2, 2 )

More information

Experiments on Individual Classifiers and on Fusion of a Set of Classifiers

Experiments on Individual Classifiers and on Fusion of a Set of Classifiers Experimens on Individal Classifiers and on Fsion of a Se of Classifiers Clade Tremblay, 2 Cenre de Recherches Mahémaiqes Universié de Monréal CP 628 Scc Cenre-Ville, Monréal, QC, H3C 3J7, CANADA claderemblay@monrealca

More information

Random Walk with Anti-Correlated Steps

Random Walk with Anti-Correlated Steps Random Walk wih Ani-Correlaed Seps John Noga Dirk Wagner 2 Absrac We conjecure he expeced value of random walks wih ani-correlaed seps o be exacly. We suppor his conjecure wih 2 plausibiliy argumens and

More information

Vehicle Arrival Models : Headway

Vehicle Arrival Models : Headway Chaper 12 Vehicle Arrival Models : Headway 12.1 Inroducion Modelling arrival of vehicle a secion of road is an imporan sep in raffic flow modelling. I has imporan applicaion in raffic flow simulaion where

More information

Section 3.5 Nonhomogeneous Equations; Method of Undetermined Coefficients

Section 3.5 Nonhomogeneous Equations; Method of Undetermined Coefficients Secion 3.5 Nonhomogeneous Equaions; Mehod of Undeermined Coefficiens Key Terms/Ideas: Linear Differenial operaor Nonlinear operaor Second order homogeneous DE Second order nonhomogeneous DE Soluion o homogeneous

More information

Miscellanea Miscellanea

Miscellanea Miscellanea Miscellanea Miscellanea Miscellanea Miscellanea Miscellanea CENRAL EUROPEAN REVIEW OF ECONOMICS & FINANCE Vol., No. (4) pp. -6 bigniew Śleszński USING BORDERED MARICES FOR DURBIN WASON D SAISIC EVALUAION

More information

An introduction to the theory of SDDP algorithm

An introduction to the theory of SDDP algorithm An inroducion o he heory of SDDP algorihm V. Leclère (ENPC) Augus 1, 2014 V. Leclère Inroducion o SDDP Augus 1, 2014 1 / 21 Inroducion Large scale sochasic problem are hard o solve. Two ways of aacking

More information

Designing Information Devices and Systems I Spring 2019 Lecture Notes Note 17

Designing Information Devices and Systems I Spring 2019 Lecture Notes Note 17 EES 16A Designing Informaion Devices and Sysems I Spring 019 Lecure Noes Noe 17 17.1 apaciive ouchscreen In he las noe, we saw ha a capacior consiss of wo pieces on conducive maerial separaed by a nonconducive

More information

STATE-SPACE MODELLING. A mass balance across the tank gives:

STATE-SPACE MODELLING. A mass balance across the tank gives: B. Lennox and N.F. Thornhill, 9, Sae Space Modelling, IChemE Process Managemen and Conrol Subjec Group Newsleer STE-SPACE MODELLING Inroducion: Over he pas decade or so here has been an ever increasing

More information

A Direct Method for Solving Nonlinear PDEs and. New Exact Solutions for Some Examples

A Direct Method for Solving Nonlinear PDEs and. New Exact Solutions for Some Examples In. J. Conemp. Mah. Sciences, Vol. 6, 011, no. 46, 83-90 A Direc Mehod for Solving Nonlinear PDEs and New Eac Solions for Some Eamples Ameina S. Nseir Jordan Universiy of Science and Technology Deparmen

More information

Localization and Map Making

Localization and Map Making Localiaion and Map Making My old office DILab a UTK ar of he following noes are from he book robabilisic Roboics by S. Thrn W. Brgard and D. Fo Two Remaining Qesions Where am I? Localiaion Where have I

More information

Constant Acceleration

Constant Acceleration Objecive Consan Acceleraion To deermine he acceleraion of objecs moving along a sraigh line wih consan acceleraion. Inroducion The posiion y of a paricle moving along a sraigh line wih a consan acceleraion

More information

Physics 235 Chapter 2. Chapter 2 Newtonian Mechanics Single Particle

Physics 235 Chapter 2. Chapter 2 Newtonian Mechanics Single Particle Chaper 2 Newonian Mechanics Single Paricle In his Chaper we will review wha Newon s laws of mechanics ell us abou he moion of a single paricle. Newon s laws are only valid in suiable reference frames,

More information

Analyze patterns and relationships. 3. Generate two numerical patterns using AC

Analyze patterns and relationships. 3. Generate two numerical patterns using AC envision ah 2.0 5h Grade ah Curriculum Quarer 1 Quarer 2 Quarer 3 Quarer 4 andards: =ajor =upporing =Addiional Firs 30 Day 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 andards: Operaions and Algebraic Thinking

More information

Lecture 2-1 Kinematics in One Dimension Displacement, Velocity and Acceleration Everything in the world is moving. Nothing stays still.

Lecture 2-1 Kinematics in One Dimension Displacement, Velocity and Acceleration Everything in the world is moving. Nothing stays still. Lecure - Kinemaics in One Dimension Displacemen, Velociy and Acceleraion Everyhing in he world is moving. Nohing says sill. Moion occurs a all scales of he universe, saring from he moion of elecrons in

More information

Chapter 3 Boundary Value Problem

Chapter 3 Boundary Value Problem Chaper 3 Boundary Value Problem A boundary value problem (BVP) is a problem, ypically an ODE or a PDE, which has values assigned on he physical boundary of he domain in which he problem is specified. Le

More information

Logic in computer science

Logic in computer science Logic in compuer science Logic plays an imporan role in compuer science Logic is ofen called he calculus of compuer science Logic plays a similar role in compuer science o ha played by calculus in he physical

More information

Decimal moved after first digit = 4.6 x Decimal moves five places left SCIENTIFIC > POSITIONAL. a) g) 5.31 x b) 0.

Decimal moved after first digit = 4.6 x Decimal moves five places left SCIENTIFIC > POSITIONAL. a) g) 5.31 x b) 0. PHYSICS 20 UNIT 1 SCIENCE MATH WORKSHEET NAME: A. Sandard Noaion Very large and very small numbers are easily wrien using scienific (or sandard) noaion, raher han decimal (or posiional) noaion. Sandard

More information

Electrical and current self-induction

Electrical and current self-induction Elecrical and curren self-inducion F. F. Mende hp://fmnauka.narod.ru/works.hml mende_fedor@mail.ru Absrac The aricle considers he self-inducance of reacive elemens. Elecrical self-inducion To he laws of

More information

We just finished the Erdős-Stone Theorem, and ex(n, F ) (1 1/(χ(F ) 1)) ( n

We just finished the Erdős-Stone Theorem, and ex(n, F ) (1 1/(χ(F ) 1)) ( n Lecure 3 - Kövari-Sós-Turán Theorem Jacques Versraëe jacques@ucsd.edu We jus finished he Erdős-Sone Theorem, and ex(n, F ) ( /(χ(f ) )) ( n 2). So we have asympoics when χ(f ) 3 bu no when χ(f ) = 2 i.e.

More information

DESIGN OF TENSION MEMBERS

DESIGN OF TENSION MEMBERS CHAPTER Srcral Seel Design LRFD Mehod DESIGN OF TENSION MEMBERS Third Ediion A. J. Clark School of Engineering Deparmen of Civil and Environmenal Engineering Par II Srcral Seel Design and Analysis 4 FALL

More information

Curve Forecast with the SOM Algorithm : Using a Tool to Follow the Time on a Kohonen Map

Curve Forecast with the SOM Algorithm : Using a Tool to Follow the Time on a Kohonen Map Crve Forecas wih he SOM Algorihm : Using a ool o Follow he ime on a Kohonen Map Rosse Parick Maisse-Samos UMR CNRS 8595 Universié de Paris 90 re de olbiac, 75634 PARIS CEDEX 3 rosse@niv-paris.fr Absrac.

More information

The Research of Active Disturbance Rejection Control on Shunt Hybrid Active Power Filter

The Research of Active Disturbance Rejection Control on Shunt Hybrid Active Power Filter Available online a www.sciencedirec.com Procedia Engineering 29 (2) 456 46 2 Inernaional Workshop on Informaion and Elecronics Engineering (IWIEE) The Research of Acive Disrbance Rejecion Conrol on Shn

More information

Algorithmic Discrete Mathematics 6. Exercise Sheet

Algorithmic Discrete Mathematics 6. Exercise Sheet Algorihmic Dicree Mahemaic. Exercie Shee Deparmen of Mahemaic SS 0 PD Dr. Ulf Lorenz 7. and 8. Juni 0 Dipl.-Mah. David Meffer Verion of June, 0 Groupwork Exercie G (Heap-Sor) Ue Heap-Sor wih a min-heap

More information

Two Coupled Oscillators / Normal Modes

Two Coupled Oscillators / Normal Modes Lecure 3 Phys 3750 Two Coupled Oscillaors / Normal Modes Overview and Moivaion: Today we ake a small, bu significan, sep owards wave moion. We will no ye observe waves, bu his sep is imporan in is own

More information

Math 315: Linear Algebra Solutions to Assignment 6

Math 315: Linear Algebra Solutions to Assignment 6 Mah 35: Linear Algebra s o Assignmen 6 # Which of he following ses of vecors are bases for R 2? {2,, 3, }, {4,, 7, 8}, {,,, 3}, {3, 9, 4, 2}. Explain your answer. To generae he whole R 2, wo linearly independen

More information

Srednicki Chapter 20

Srednicki Chapter 20 Srednicki Chaper QFT Problems & Solions. George Ocober 4, Srednicki.. Verify eqaion.7. Using eqaion.7,., and he fac ha m = in his limi, or ask is o evalae his inegral:! x x x dx dx dx x sx + x + x + x

More information

KINEMATICS IN ONE DIMENSION

KINEMATICS IN ONE DIMENSION KINEMATICS IN ONE DIMENSION PREVIEW Kinemaics is he sudy of how hings move how far (disance and displacemen), how fas (speed and velociy), and how fas ha how fas changes (acceleraion). We say ha an objec

More information

1 Review of Zero-Sum Games

1 Review of Zero-Sum Games COS 5: heoreical Machine Learning Lecurer: Rob Schapire Lecure #23 Scribe: Eugene Brevdo April 30, 2008 Review of Zero-Sum Games Las ime we inroduced a mahemaical model for wo player zero-sum games. Any

More information

ADDITIONAL PROBLEMS (a) Find the Fourier transform of the half-cosine pulse shown in Fig. 2.40(a). Additional Problems 91

ADDITIONAL PROBLEMS (a) Find the Fourier transform of the half-cosine pulse shown in Fig. 2.40(a). Additional Problems 91 ddiional Problems 9 n inverse relaionship exiss beween he ime-domain and freuency-domain descripions of a signal. Whenever an operaion is performed on he waveform of a signal in he ime domain, a corresponding

More information

d 1 = c 1 b 2 - b 1 c 2 d 2 = c 1 b 3 - b 1 c 3

d 1 = c 1 b 2 - b 1 c 2 d 2 = c 1 b 3 - b 1 c 3 and d = c b - b c c d = c b - b c c This process is coninued unil he nh row has been compleed. The complee array of coefficiens is riangular. Noe ha in developing he array an enire row may be divided or

More information

Total Domination Number of Generalized Petersen Graphs P(ck,k)

Total Domination Number of Generalized Petersen Graphs P(ck,k) Briish Jornal of Mahemaics & Comper Science 7(): -7 0 Aricle no.bjmcs.788 ISSN: -08 SCIENCEDOMAIN inernaional.sciencedomain.org Toal Dominaion Nmber of Generalized Peersen Graphs P(ckk) Wensheng Li * Fengjn

More information

CHAPTER 12 DIRECT CURRENT CIRCUITS

CHAPTER 12 DIRECT CURRENT CIRCUITS CHAPTER 12 DIRECT CURRENT CIUITS DIRECT CURRENT CIUITS 257 12.1 RESISTORS IN SERIES AND IN PARALLEL When wo resisors are conneced ogeher as shown in Figure 12.1 we said ha hey are conneced in series. As

More information

CSE-4303/CSE-5365 Computer Graphics Fall 1996 Take home Test

CSE-4303/CSE-5365 Computer Graphics Fall 1996 Take home Test Comper Graphics roblem #1) A bi-cbic parameric srface is defined by Hermie geomery in he direcion of parameer. In he direcion, he geomery ecor is defined by a poin @0, a poin @0.5, a angen ecor @1 and

More information

GENERALIZATION OF THE FORMULA OF FAA DI BRUNO FOR A COMPOSITE FUNCTION WITH A VECTOR ARGUMENT

GENERALIZATION OF THE FORMULA OF FAA DI BRUNO FOR A COMPOSITE FUNCTION WITH A VECTOR ARGUMENT Inerna J Mah & Mah Sci Vol 4, No 7 000) 48 49 S0670000970 Hindawi Publishing Corp GENERALIZATION OF THE FORMULA OF FAA DI BRUNO FOR A COMPOSITE FUNCTION WITH A VECTOR ARGUMENT RUMEN L MISHKOV Received

More information

Position, Velocity, and Acceleration

Position, Velocity, and Acceleration rev 06/2017 Posiion, Velociy, and Acceleraion Equipmen Qy Equipmen Par Number 1 Dynamic Track ME-9493 1 Car ME-9454 1 Fan Accessory ME-9491 1 Moion Sensor II CI-6742A 1 Track Barrier Purpose The purpose

More information

International Journal of Mathematics Trends and Technology (IJMTT) Volume 37 Number 3 September 2016

International Journal of Mathematics Trends and Technology (IJMTT) Volume 37 Number 3 September 2016 Inernaional Journal of ahemaics Trends and Technology (IJTT) Volume 37 Number 3 Sepember 6 Conveiy in he s Class of he Rough ahemaical Programming Problems T... Aeya, Kamilia l-bess, Deparmen of Physics

More information

MOMENTUM CONSERVATION LAW

MOMENTUM CONSERVATION LAW 1 AAST/AEDT AP PHYSICS B: Impulse and Momenum Le us run an experimen: The ball is moving wih a velociy of V o and a force of F is applied on i for he ime inerval of. As he resul he ball s velociy changes

More information

T L. t=1. Proof of Lemma 1. Using the marginal cost accounting in Equation(4) and standard arguments. t )+Π RB. t )+K 1(Q RB

T L. t=1. Proof of Lemma 1. Using the marginal cost accounting in Equation(4) and standard arguments. t )+Π RB. t )+K 1(Q RB Elecronic Companion EC.1. Proofs of Technical Lemmas and Theorems LEMMA 1. Le C(RB) be he oal cos incurred by he RB policy. Then we have, T L E[C(RB)] 3 E[Z RB ]. (EC.1) Proof of Lemma 1. Using he marginal

More information

Learning Objectives: Practice designing and simulating digital circuits including flip flops Experience state machine design procedure

Learning Objectives: Practice designing and simulating digital circuits including flip flops Experience state machine design procedure Lab 4: Synchronous Sae Machine Design Summary: Design and implemen synchronous sae machine circuis and es hem wih simulaions in Cadence Viruoso. Learning Objecives: Pracice designing and simulaing digial

More information

Optimal Paired Choice Block Designs. Supplementary Material

Optimal Paired Choice Block Designs. Supplementary Material Saisica Sinica: Supplemen Opimal Paired Choice Block Designs Rakhi Singh 1, Ashish Das 2 and Feng-Shun Chai 3 1 IITB-Monash Research Academy, Mumbai, India 2 Indian Insiue of Technology Bombay, Mumbai,

More information

HYPOTHESIS TESTING. four steps. 1. State the hypothesis and the criterion. 2. Compute the test statistic. 3. Compute the p-value. 4.

HYPOTHESIS TESTING. four steps. 1. State the hypothesis and the criterion. 2. Compute the test statistic. 3. Compute the p-value. 4. Inrodcion o Saisics in Psychology PSY Professor Greg Francis Lecre 24 Hypohesis esing for correlaions Is here a correlaion beween homework and exam grades? for seps. Sae he hypohesis and he crierion 2.

More information

EE 315 Notes. Gürdal Arslan CLASS 1. (Sections ) What is a signal?

EE 315 Notes. Gürdal Arslan CLASS 1. (Sections ) What is a signal? EE 35 Noes Gürdal Arslan CLASS (Secions.-.2) Wha is a signal? In his class, a signal is some funcion of ime and i represens how some physical quaniy changes over some window of ime. Examples: velociy of

More information

MODULE - 9 LECTURE NOTES 2 GENETIC ALGORITHMS

MODULE - 9 LECTURE NOTES 2 GENETIC ALGORITHMS 1 MODULE - 9 LECTURE NOTES 2 GENETIC ALGORITHMS INTRODUCTION Mos real world opimizaion problems involve complexiies like discree, coninuous or mixed variables, muliple conflicing objecives, non-lineariy,

More information

Single and Double Pendulum Models

Single and Double Pendulum Models Single and Double Pendulum Models Mah 596 Projec Summary Spring 2016 Jarod Har 1 Overview Differen ypes of pendulums are used o model many phenomena in various disciplines. In paricular, single and double

More information

CSE 5365 Computer Graphics. Take Home Test #1

CSE 5365 Computer Graphics. Take Home Test #1 CSE 5365 Comper Graphics Take Home Tes #1 Fall/1996 Tae-Hoon Kim roblem #1) A bi-cbic parameric srface is defined by Hermie geomery in he direcion of parameer. In he direcion, he geomery ecor is defined

More information

Some Ramsey results for the n-cube

Some Ramsey results for the n-cube Some Ramsey resuls for he n-cube Ron Graham Universiy of California, San Diego Jozsef Solymosi Universiy of Briish Columbia, Vancouver, Canada Absrac In his noe we esablish a Ramsey-ype resul for cerain

More information

Overview. COMP14112: Artificial Intelligence Fundamentals. Lecture 0 Very Brief Overview. Structure of this course

Overview. COMP14112: Artificial Intelligence Fundamentals. Lecture 0 Very Brief Overview. Structure of this course OMP: Arificial Inelligence Fundamenals Lecure 0 Very Brief Overview Lecurer: Email: Xiao-Jun Zeng x.zeng@mancheser.ac.uk Overview This course will focus mainly on probabilisic mehods in AI We shall presen

More information

Biol. 356 Lab 8. Mortality, Recruitment, and Migration Rates

Biol. 356 Lab 8. Mortality, Recruitment, and Migration Rates Biol. 356 Lab 8. Moraliy, Recruimen, and Migraion Raes (modified from Cox, 00, General Ecology Lab Manual, McGraw Hill) Las week we esimaed populaion size hrough several mehods. One assumpion of all hese

More information

10. State Space Methods

10. State Space Methods . Sae Space Mehods. Inroducion Sae space modelling was briefly inroduced in chaper. Here more coverage is provided of sae space mehods before some of heir uses in conrol sysem design are covered in he

More information

Application of a Stochastic-Fuzzy Approach to Modeling Optimal Discrete Time Dynamical Systems by Using Large Scale Data Processing

Application of a Stochastic-Fuzzy Approach to Modeling Optimal Discrete Time Dynamical Systems by Using Large Scale Data Processing Applicaion of a Sochasic-Fuzzy Approach o Modeling Opimal Discree Time Dynamical Sysems by Using Large Scale Daa Processing AA WALASZE-BABISZEWSA Deparmen of Compuer Engineering Opole Universiy of Technology

More information

ON THE DEGREES OF RATIONAL KNOTS

ON THE DEGREES OF RATIONAL KNOTS ON THE DEGREES OF RATIONAL KNOTS DONOVAN MCFERON, ALEXANDRA ZUSER Absrac. In his paper, we explore he issue of minimizing he degrees on raional knos. We se a bound on hese degrees using Bézou s heorem,

More information

Lab #2: Kinematics in 1-Dimension

Lab #2: Kinematics in 1-Dimension Reading Assignmen: Chaper 2, Secions 2-1 hrough 2-8 Lab #2: Kinemaics in 1-Dimension Inroducion: The sudy of moion is broken ino wo main areas of sudy kinemaics and dynamics. Kinemaics is he descripion

More information

Space truss bridge optimization by dynamic programming and linear programming

Space truss bridge optimization by dynamic programming and linear programming 306 IABSE-JSCE Join Conference on Advances in Bridge Engineering-III, Ags 1-, 015, Dhaka, Bangladesh. ISBN: 978-984-33-9313-5 Amin, Oki, Bhiyan, Ueda (eds.) www.iabse-bd.org Space rss bridge opimizaion

More information

Introduction to Bayesian Estimation. McGill COMP 765 Sept 12 th, 2017

Introduction to Bayesian Estimation. McGill COMP 765 Sept 12 th, 2017 Inrodcion o Baesian Esimaion McGill COM 765 Sep 2 h 207 Where am I? or firs core problem Las class: We can model a robo s moions and he world as spaial qaniies These are no perfec and herefore i is p o

More information

Isolated-word speech recognition using hidden Markov models

Isolated-word speech recognition using hidden Markov models Isolaed-word speech recogniion using hidden Markov models Håkon Sandsmark December 18, 21 1 Inroducion Speech recogniion is a challenging problem on which much work has been done he las decades. Some of

More information

On Measuring Pro-Poor Growth. 1. On Various Ways of Measuring Pro-Poor Growth: A Short Review of the Literature

On Measuring Pro-Poor Growth. 1. On Various Ways of Measuring Pro-Poor Growth: A Short Review of the Literature On Measuring Pro-Poor Growh 1. On Various Ways of Measuring Pro-Poor Growh: A Shor eview of he Lieraure During he pas en years or so here have been various suggesions concerning he way one should check

More information

Brock University Physics 1P21/1P91 Fall 2013 Dr. D Agostino. Solutions for Tutorial 3: Chapter 2, Motion in One Dimension

Brock University Physics 1P21/1P91 Fall 2013 Dr. D Agostino. Solutions for Tutorial 3: Chapter 2, Motion in One Dimension Brock Uniersiy Physics 1P21/1P91 Fall 2013 Dr. D Agosino Soluions for Tuorial 3: Chaper 2, Moion in One Dimension The goals of his uorial are: undersand posiion-ime graphs, elociy-ime graphs, and heir

More information

3.1 More on model selection

3.1 More on model selection 3. More on Model selecion 3. Comparing models AIC, BIC, Adjused R squared. 3. Over Fiing problem. 3.3 Sample spliing. 3. More on model selecion crieria Ofen afer model fiing you are lef wih a handful of

More information

2.7. Some common engineering functions. Introduction. Prerequisites. Learning Outcomes

2.7. Some common engineering functions. Introduction. Prerequisites. Learning Outcomes Some common engineering funcions 2.7 Inroducion This secion provides a caalogue of some common funcions ofen used in Science and Engineering. These include polynomials, raional funcions, he modulus funcion

More information

Robotics I. April 11, The kinematics of a 3R spatial robot is specified by the Denavit-Hartenberg parameters in Tab. 1.

Robotics I. April 11, The kinematics of a 3R spatial robot is specified by the Denavit-Hartenberg parameters in Tab. 1. Roboics I April 11, 017 Exercise 1 he kinemaics of a 3R spaial robo is specified by he Denavi-Harenberg parameers in ab 1 i α i d i a i θ i 1 π/ L 1 0 1 0 0 L 3 0 0 L 3 3 able 1: able of DH parameers of

More information

18 Biological models with discrete time

18 Biological models with discrete time 8 Biological models wih discree ime The mos imporan applicaions, however, may be pedagogical. The elegan body of mahemaical heory peraining o linear sysems (Fourier analysis, orhogonal funcions, and so

More information

Reading from Young & Freedman: For this topic, read sections 25.4 & 25.5, the introduction to chapter 26 and sections 26.1 to 26.2 & 26.4.

Reading from Young & Freedman: For this topic, read sections 25.4 & 25.5, the introduction to chapter 26 and sections 26.1 to 26.2 & 26.4. PHY1 Elecriciy Topic 7 (Lecures 1 & 11) Elecric Circuis n his opic, we will cover: 1) Elecromoive Force (EMF) ) Series and parallel resisor combinaions 3) Kirchhoff s rules for circuis 4) Time dependence

More information

ECE 2100 Circuit Analysis

ECE 2100 Circuit Analysis ECE 1 Circui Analysis Lesson 35 Chaper 8: Second Order Circuis Daniel M. Liynski, Ph.D. ECE 1 Circui Analysis Lesson 3-34 Chaper 7: Firs Order Circuis (Naural response RC & RL circuis, Singulariy funcions,

More information

VISUALIZED DEVELOPMENT OF ONSET FLOW BETWEEN TWO ROTATING CYLINDERS

VISUALIZED DEVELOPMENT OF ONSET FLOW BETWEEN TWO ROTATING CYLINDERS ISFV14-14 h Inernaional Symposim on Flo Visalizaion Jne 1-4, 1, EXCO Daeg, Korea VISUALIZED DEVELOPMENT OF ONSET FLOW BETWEEN TWO ROTATING CYLINDERS Takashi Waanabe.*, Yorinob Toya**, Shohei Fjisaa* *Gradae

More information

Computer-Aided Analysis of Electronic Circuits Course Notes 3

Computer-Aided Analysis of Electronic Circuits Course Notes 3 Gheorghe Asachi Technical Universiy of Iasi Faculy of Elecronics, Telecommunicaions and Informaion Technologies Compuer-Aided Analysis of Elecronic Circuis Course Noes 3 Bachelor: Telecommunicaion Technologies

More information

The Rosenblatt s LMS algorithm for Perceptron (1958) is built around a linear neuron (a neuron with a linear

The Rosenblatt s LMS algorithm for Perceptron (1958) is built around a linear neuron (a neuron with a linear In The name of God Lecure4: Percepron and AALIE r. Majid MjidGhoshunih Inroducion The Rosenbla s LMS algorihm for Percepron 958 is buil around a linear neuron a neuron ih a linear acivaion funcion. Hoever,

More information

Chapter 2. Models, Censoring, and Likelihood for Failure-Time Data

Chapter 2. Models, Censoring, and Likelihood for Failure-Time Data Chaper 2 Models, Censoring, and Likelihood for Failure-Time Daa William Q. Meeker and Luis A. Escobar Iowa Sae Universiy and Louisiana Sae Universiy Copyrigh 1998-2008 W. Q. Meeker and L. A. Escobar. Based

More information

Algorithms and Data Structures 2011/12 Week 9 Solutions (Tues 15th - Fri 18th Nov)

Algorithms and Data Structures 2011/12 Week 9 Solutions (Tues 15th - Fri 18th Nov) Algorihm and Daa Srucure 2011/ Week Soluion (Tue 15h - Fri 18h No) 1. Queion: e are gien 11/16 / 15/20 8/13 0/ 1/ / 11/1 / / To queion: (a) Find a pair of ube X, Y V uch ha f(x, Y) = f(v X, Y). (b) Find

More information

Linear Response Theory: The connection between QFT and experiments

Linear Response Theory: The connection between QFT and experiments Phys540.nb 39 3 Linear Response Theory: The connecion beween QFT and experimens 3.1. Basic conceps and ideas Q: How do we measure he conduciviy of a meal? A: we firs inroduce a weak elecric field E, and

More information

Sequences Arising From Prudent Self-Avoiding Walks Shanzhen Gao, Heinrich Niederhausen Florida Atlantic University, Boca Raton, Florida 33431

Sequences Arising From Prudent Self-Avoiding Walks Shanzhen Gao, Heinrich Niederhausen Florida Atlantic University, Boca Raton, Florida 33431 Seqences Arising From Prden Self-Avoiding Walks Shanzhen Gao, Heinrich Niederhasen Florida Alanic Universiy, Boca Raon, Florida 33431 Absrac A self-avoiding walk (SAW) is a seqence of moves on a laice

More information

Echocardiography Project and Finite Fourier Series

Echocardiography Project and Finite Fourier Series Echocardiography Projec and Finie Fourier Series 1 U M An echocardiagram is a plo of how a porion of he hear moves as he funcion of ime over he one or more hearbea cycles If he hearbea repeas iself every

More information

Proposal of atomic clock in motion: Time in moving clock

Proposal of atomic clock in motion: Time in moving clock Proposal of aomic clock in moion: Time in moving clock Masanori Sao Honda Elecronics Co., d., 0 Oyamazuka, Oiwa-cho, Toyohashi, ichi 441-3193, Japan E-mail: msao@honda-el.co.jp bsrac: The ime in an aomic

More information

THE DARBOUX TRIHEDRONS OF REGULAR CURVES ON A REGULAR TIME-LIKE SURFACE. Emin Özyilmaz

THE DARBOUX TRIHEDRONS OF REGULAR CURVES ON A REGULAR TIME-LIKE SURFACE. Emin Özyilmaz Mahemaical and Compaional Applicaions, Vol. 9, o., pp. 7-8, 04 THE DARBOUX TRIHEDROS OF REULAR CURVES O A REULAR TIME-LIKE SURFACE Emin Özyilmaz Deparmen of Mahemaics, Facly of Science, Ee Uniersiy, TR-500

More information

NEWTON S SECOND LAW OF MOTION

NEWTON S SECOND LAW OF MOTION Course and Secion Dae Names NEWTON S SECOND LAW OF MOTION The acceleraion of an objec is defined as he rae of change of elociy. If he elociy changes by an amoun in a ime, hen he aerage acceleraion during

More information

Retrieval Models. Boolean and Vector Space Retrieval Models. Common Preprocessing Steps. Boolean Model. Boolean Retrieval Model

Retrieval Models. Boolean and Vector Space Retrieval Models. Common Preprocessing Steps. Boolean Model. Boolean Retrieval Model 1 Boolean and Vecor Space Rerieval Models Many slides in his secion are adaped from Prof. Joydeep Ghosh (UT ECE) who in urn adaped hem from Prof. Dik Lee (Univ. of Science and Tech, Hong Kong) Rerieval

More information

More Digital Logic. t p output. Low-to-high and high-to-low transitions could have different t p. V in (t)

More Digital Logic. t p output. Low-to-high and high-to-low transitions could have different t p. V in (t) EECS 4 Spring 23 Lecure 2 EECS 4 Spring 23 Lecure 2 More igial Logic Gae delay and signal propagaion Clocked circui elemens (flip-flop) Wriing a word o memory Simplifying digial circuis: Karnaugh maps

More information

20. Applications of the Genetic-Drift Model

20. Applications of the Genetic-Drift Model 0. Applicaions of he Geneic-Drif Model 1) Deermining he probabiliy of forming any paricular combinaion of genoypes in he nex generaion: Example: If he parenal allele frequencies are p 0 = 0.35 and q 0

More information

ECE 2100 Circuit Analysis

ECE 2100 Circuit Analysis ECE 1 Circui Analysis Lesson 37 Chaper 8: Second Order Circuis Discuss Exam Daniel M. Liynski, Ph.D. Exam CH 1-4: On Exam 1; Basis for work CH 5: Operaional Amplifiers CH 6: Capaciors and Inducor CH 7-8:

More information

Lecture 4 Notes (Little s Theorem)

Lecture 4 Notes (Little s Theorem) Lecure 4 Noes (Lile s Theorem) This lecure concerns one of he mos imporan (and simples) heorems in Queuing Theory, Lile s Theorem. More informaion can be found in he course book, Bersekas & Gallagher,

More information

2. Nonlinear Conservation Law Equations

2. Nonlinear Conservation Law Equations . Nonlinear Conservaion Law Equaions One of he clear lessons learned over recen years in sudying nonlinear parial differenial equaions is ha i is generally no wise o ry o aack a general class of nonlinear

More information

Inventory Analysis and Management. Multi-Period Stochastic Models: Optimality of (s, S) Policy for K-Convex Objective Functions

Inventory Analysis and Management. Multi-Period Stochastic Models: Optimality of (s, S) Policy for K-Convex Objective Functions Muli-Period Sochasic Models: Opimali of (s, S) Polic for -Convex Objecive Funcions Consider a seing similar o he N-sage newsvendor problem excep ha now here is a fixed re-ordering cos (> 0) for each (re-)order.

More information

, u denotes uxt (,) and u. mean first partial derivatives of u with respect to x and t, respectively. Equation (1.1) can be simply written as

, u denotes uxt (,) and u. mean first partial derivatives of u with respect to x and t, respectively. Equation (1.1) can be simply written as Proceedings of he rd IMT-GT Regional Conference on Mahemaics Saisics and Applicaions Universii Sains Malaysia ANALYSIS ON () + () () = G( ( ) ()) Jessada Tanhanch School of Mahemaics Insie of Science Sranaree

More information

Particle Swarm Optimization

Particle Swarm Optimization Paricle Swarm Opimizaion Speaker: Jeng-Shyang Pan Deparmen of Elecronic Engineering, Kaohsiung Universiy of Applied Science, Taiwan Email: jspan@cc.kuas.edu.w 7/26/2004 ppso 1 Wha is he Paricle Swarm Opimizaion

More information

Kinematics Vocabulary. Kinematics and One Dimensional Motion. Position. Coordinate System in One Dimension. Kinema means movement 8.

Kinematics Vocabulary. Kinematics and One Dimensional Motion. Position. Coordinate System in One Dimension. Kinema means movement 8. Kinemaics Vocabulary Kinemaics and One Dimensional Moion 8.1 WD1 Kinema means movemen Mahemaical descripion of moion Posiion Time Inerval Displacemen Velociy; absolue value: speed Acceleraion Averages

More information

Numerical Dispersion

Numerical Dispersion eview of Linear Numerical Sabiliy Numerical Dispersion n he previous lecure, we considered he linear numerical sabiliy of boh advecion and diffusion erms when approimaed wih several spaial and emporal

More information

Solutions from Chapter 9.1 and 9.2

Solutions from Chapter 9.1 and 9.2 Soluions from Chaper 9 and 92 Secion 9 Problem # This basically boils down o an exercise in he chain rule from calculus We are looking for soluions of he form: u( x) = f( k x c) where k x R 3 and k is

More information

CONFIDENCE INTERVAL FOR THE DIFFERENCE IN BINOMIAL PROPORTIONS FROM STRATIFIED 2X2 SAMPLES

CONFIDENCE INTERVAL FOR THE DIFFERENCE IN BINOMIAL PROPORTIONS FROM STRATIFIED 2X2 SAMPLES Proceedings of he Annual Meeing of he American Saisical Associaion Augus 5-9 00 CONFIDENCE INTERVAL FOR TE DIFFERENCE IN BINOMIAL PROPORTIONS FROM STRATIFIED X SAMPLES Peng-Liang Zhao John. Troxell ui

More information

2002 November 14 Exam III Physics 191

2002 November 14 Exam III Physics 191 November 4 Exam III Physics 9 Physical onsans: Earh s free-fall acceleraion = g = 9.8 m/s ircle he leer of he single bes answer. quesion is worh poin Each 3. Four differen objecs wih masses: m = kg, m

More information

Christos Papadimitriou & Luca Trevisan November 22, 2016

Christos Papadimitriou & Luca Trevisan November 22, 2016 U.C. Bereley CS170: Algorihms Handou LN-11-22 Chrisos Papadimiriou & Luca Trevisan November 22, 2016 Sreaming algorihms In his lecure and he nex one we sudy memory-efficien algorihms ha process a sream

More information