Parsers. Introduction to Computational Linguistics: Parsing Algorithms. Ambiguity refresher. CFG refresher. Example: search space for top-down parser

Size: px
Start display at page:

Download "Parsers. Introduction to Computational Linguistics: Parsing Algorithms. Ambiguity refresher. CFG refresher. Example: search space for top-down parser"

Transcription

1 Itroductio to Computatioal Liguistics: Parsig Algorithms haro Goldwater (based o slides by Mark teedma ad Philipp Koeh) July 5 Parsers A parser is a algorithm that computes a structure for a iut strig ge a grammar. Uderstadig differet parsig algorithms is importat for: Computer scietists: parsers used to compile programs, check html, etc. NLP researchers: efficiet parsers eeded for large-scale laguage tasks (e.g., used to create Google s ifoboxes ). Psycholiguists: what algorithm might be used by the huma setece processig mechaism? haro Goldwater Parsig July 5 Ambiguity refresher Parsers eed to hadle (rampat!) sytactic ambiguity i atural laguage. global ambiguity: multiple full parses are possible, e.g., PP attachmet: I saw the ma with the telescope local ambiguity: ambiguous partial structures, eed ot be cosistet with full parse. classic garde path seteces: the old ma the boats but also lots of ormal seteces: the dog bit the child Ambiguity ca be structural (differet possible phrasal costituets) or lexical (word with multiple PO tags), ofte both. haro Goldwater Parsig CFG refresher Parsig algorithms exist for may types of grammars, but we ll cosider just cotext-free grammars for ow. CFG refresher (or see J&M.-.5): Two types of grammar symbols: termials (t): words. No-termials (NT): phrasal categories like,, VP, PP. ometimes we distiguish pre-termials (PO tags), a type of NT. Rules must have the form NT β, where β is ay strig of NT s ad t s. A CFG i Chomsky Normal Form oly has rules of the form NT i NT j NT k or NT i t j haro Goldwater Parsig Parser properties haro Goldwater Parsig Example: search space for top-dow parser All parsers have two fudametal properties: tart with ode. Directioality: the sequece i which the structures are costructed. top-dow: start with root category (), choose expasios, build dow to words. bottom-up: build subtrees over words, build up to. Mixed strategies also possible (e.g., left corer parsers) Choose oe of may possible expasios. Each of which has childre with may possible expasios... VP aux VP earch strategy: the order i which the search space of possible aalyses is explored. etc haro Goldwater Parsig 4 earch strategies depth-first search: explore oe brach of the search space at a time, as far as possible. If this brach is a dead-ed, parser eeds to backtrack. breadth-first search: expad all possible braches i parallel (or simulated parallel). Requires storig may icomplete parses i memory at oce. best-first search: score each partial parse ad pursue the highest-scorig optios first. (Will get back to this whe discussig statistical parsig.) haro Goldwater Parsig 5 Recurse Descet Parsig A recurse descet parser treats a grammar as a specificatio of how to break dow a top-level goal (fid ) ito subgoals (fid VP). It is a top-dow, depth-first parser: blidly expad otermials util reachig a termial (word). If termial matches ext iut word, cotiue; else, backtrack. haro Goldwater Parsig 6 haro Goldwater Parsig 7

2 Backtrack poits Need to keep track of backtrack poits, to retur to if we backtrack. Each backtrack poit stores: A partial parse tree (what was completed whe we made a choice) The rules we have t tried yet The iut words we have t matched yet To esure depth-first search, backtrack poits are stored i a stack: last i, first out. We start with RD Parsig: iitializatio The rules of our cotext-free grammar, e.g., VP VP V NN bit V bit DT NN DT the NN dog V dog Curret partial parse (also curret subgoal): the ode. A ordered list of subgoals, iitially cotaiig just. A empty stack of backtrack poits. The iut sequece (e.g., the dog bit) haro Goldwater Parsig 8 RD Parsig: iterate steps If first subgoal i list is a o-termial A: Pick a rule from the grammar to expad it (e.g., A B C) Replace A i subgoal list with B C If first subgoal i list is a termial w: If iut is empty, backtrack. If ext iut word is differet from w, backtrack. If ext iut word is w, match! i.e., cosume iut word w ad subgoal w ad move to ext subgoal. haro Goldwater Parsig 9 RD Parsig: iterate steps If first subgoal i list is a o-termial A: Pick a rule from the grammar to expad it (e.g., A B C) Replace A i subgoal list with B C If first subgoal i list is a termial w: If iut is empty, backtrack. If ext iut word is differet from w, backtrack. If ext iut word is w, match! i.e., cosume iut word w ad subgoal w ad move to ext subgoal. If stack is empty, we lose! No parse is possible. If o more subgoals, we wi! We foud a parse. haro Goldwater Parsig Recurse descet example haro Goldwater Parsig Parsers vs Recogizers Grammar ad setece from slide 9. Operatios: Expad (E) Match (M) Backtrack to step (B) tep Op. ubgoals Iut the dog bit E VP the dog bit E DT NN VP the dog bit E the NN VP the dog bit 4 M NN VP dog bit 5 E bit VP dog bit 6 B4 NN VP dog bit 7 E dog VP dog bit 8 M VP bit 9 E V bit E bit bit M The above sketch is actually a recogizer: it tells us whether the setece has a valid parse, but ot what the parse is. Would eed to add more ails to keep track of parse structure as it is built. haro Goldwater Parsig hift-reduce Parsig earch strategy ad directioality are orthogoal properties. hift-reduce parsig is depth-first (like RD) but bottom-up (ulike RD). Basic shift-reduce recogizer repeatedly: hifts iut symbols oto a stack. Wheever possible, reduces oe or more items from top of stack that match RH of rule, replacig with LH of rule. Like RD parser, eeds to maitai backtrack poits. haro Goldwater Parsig ame example grammar ad setece. Operatios: hift () Reduce (R) Backtrack to step (B) hift-reduce example tep Op. tack Iut the dog bit the dog bit R DT dog bit DT dog bit 4 R DT V bit 5 DT V bit 6 R DT V V 7 B5 DT V bit 8 R DT V NN 9 B DT dog bit R DT NN bit R bit R bit bit... haro Goldwater Parsig 4 haro Goldwater Parsig 5

3 Depth-first parsig i practice Depth-first parsers are very efficiet for uambiguous structures. Widely used to parse/compile programmig laguages Laguage/grammar is specially costructed to be uambiguous (sometimes with fiite lookahead). Depth-first parsig i practice Depth-first parsers are very efficiet for uambiguous structures. Widely used to parse/compile programmig laguages Laguage/grammar is specially costructed to be uambiguous (sometimes with fiite lookahead). But ca be massely iefficiet (expoetial i setece legth) if faced with local ambiguity. Blid backtrackig may require re-buildig the same structure over ad over. o, much less commo for atural laguage parsig (though some work o best-first probabilistic shift-reduce parsig: uses lookahead to help predict which expasios to make). haro Goldwater Parsig 6 Breadth-first search usig dyamic programmig With a CFG, a parser should be able to avoid re-aalyzig sub-strigs because the aalysis of ay sub-strig is idepe of the rest of the parse. The dog saw a ma i the park PP haro Goldwater Parsig 7 Breadth-first search usig dyamic programmig With a CFG, a parser should be able to avoid re-aalyzig sub-strigs because the aalysis of ay sub-strig is idepe of the rest of the parse. The dog saw a ma i the park PP To exploit this fact, chart parsig algorithms use dyamic programmig to store ad reuse sub-parses. This permits explorig multiple potetial parses at oce: strategy. a breadth-first haro Goldwater Parsig 8 Parsig as dyamic programmig As i HMM algorithms, dyamic programmig fills a table of solutios to subproblems (memoizatio), the composes these to fid the full solutio. For parsig, subproblems are aalyses of substrigs, memoized i chart (aka well-formed substrig table, WFT). Chart etries are idexed by start ad ed positios i the setece, ad correspod to: either a complete costituet (sub-tree) spaig those positios (if workig bottom-up), or a hypothesis about what complete costituet might be foud (if workig top-dow). haro Goldwater Parsig 9 Depictig a WFT/Chart Chart ca be depicted as either a matrix or a graph. I either case, we assume idices betwee each word i the setece: ee with a telescope 4 i 5 had 6 If usig a matrix, cell [i, j] holds iformatio about the word spa from positio i to positio j: The root ode of ay costituet(s) spaig those words Poiters to its sub-costituets (Depedig o parsig method,) predictios about what costituets might follow the substrig. haro Goldwater Parsig xample, partway through parsig. Here, oly showig root odes of each costituet. Lower left of chart ever used; ofte oly upper right is show. Depictig a WFT as a Matrix 4 5 V Prep Det ee with a telescope 4 i 5 had 6 PP N haro Goldwater Parsig Depictig a WFT as a Graph Here, each setece positio idex is a ode or vertex. edges (arcs) represet spas, labelled with the same iformatio that goes i a cell i the matrix represetatio. Prep PP Det with a telescope 4 N haro Goldwater Parsig haro Goldwater Parsig

4 Algorithms for Chart Parsig May differet chart parsig algorithms, icludig the CKY algorithm, which memoizes oly complete costituets various algorithms that also memoize predictios/partial costituets ofte usig mixed bottom-up ad top-dow approaches, e.g., the Earley algorithm described i J&M, ad left-corer parsig. CKY Algorithm CKY (Cocke, Kasami, Youger) is a bottom-up, breadth-first parsig algorithm. Origial (simplest) versio assumes grammar i Chomsky Normal Form. Add costituet A i cell (i, j) if: there is a rule A B, ad B is i cell (i, j), or there is a rule A B C, ad B is i cell (i,k) ad C is i cell (k, j). haro Goldwater Parsig 4 CKY Algorithm CKY (Cocke, Kasami, Youger) is a bottom-up, breadth-first parsig algorithm. Origial (simplest) versio assumes grammar i Chomsky Normal Form. Add costituet A i cell (i, j) if: there is a rule A B, ad B is i cell (i, j), or there is a rule A B C, ad B is i cell (i,k) ad C is i cell (k, j). Fills chart i order: oly looks for rules that use a costituet from i to j after fidig all costituets edig at i. o, guarateed to fid all possible parses. haro Goldwater Parsig 5 CKY Pseudocode Assume iut setece with idices to, ad chart c. for le = to : #umber of words i costituet for i = to -le: #start positio j = i+le #ed positio #process uary rules if A->B ad c[i,j] has B, add A to c[i,j] for k = i+ to j- #mid positio #process biary rules if A->B C ad c[i,k] has B ad c[k,j] has C, add A to c[i,j] This algorithm performs recogitio i time O( ). haro Goldwater Parsig 6 Grammatical rules VP Det Nom Nom Nom N Rel Nom N VP TV VP IV PP VP IV PP Prep Rel Relpro VP CKY example Lexical rules Det a the (ermier) N fish frogs soup (ou) Prep i for (prepositio) TV saw ate (trasite verb) IV fish swim (itrasite verb) Relpro that (relate proou) Nom: ial (the part of the after the ermier, if ay). Rel: subject relate clause, as i the frogs that ate fish. haro Goldwater Parsig 7 Visualizig the Chart 4 haro Goldwater Parsig 8 Visualizig the Chart (,) 4 haro Goldwater Parsig 9 Visualizig the Chart (,) 4 Uary brachig rules: the Uary brachig rules: N frogs, Nom N, Nom haro Goldwater Parsig haro Goldwater Parsig

5 Visualizig the Chart (,) 4 Visualizig the Chart (,4) 4 Uary brachig rules: ate Uary brachig rules: N fish, Nom N, Nom, fish, haro Goldwater Parsig Visualizig the Chart (,) 4 haro Goldwater Parsig Visualizig the Chart (,) 4 Biary brachig rule: Det Nom (,) & (,) (,) (,) & (,) haro Goldwater Parsig 4 Visualizig the Chart (,4) 4 haro Goldwater Parsig 5 Visualizig the Chart (,) 4 Biary brachig rule: VP TV (,) & (,4) (,4) (,) & (,) (,) & (,) haro Goldwater Parsig 6 Visualizig the Chart (,4) 4 haro Goldwater Parsig 7 Visualizig the Chart (,4) 4 s s s Biary rule: VP (,) & (,4) (,4) (,) & (,4) (,) & (,4) Biary rule: VP (,) & (,4) (,4) (,) & (,4) haro Goldwater Parsig 8 haro Goldwater Parsig 9

6 A ote about CKY orderig Notice that to fill cell (i, j), we use a cell from row i ad a cell from colum j. o, we must fill i all cells dow ad left of (i, j) before fillig (i, j). Here, we filled i all short etries, the loger oes, but other orders ca work (e.g., J&M fill i all spas edig at j, the icremet j.) From CKY Recogizer to CKY Parser As just specified, CKY oly recogizes, but ca t retur the parse. e.g., we do t kow from cell how it was costructed. Easy to fix: wheever a costituet is foud for cell (i, j), store the idices of the sub-costituets that formed it. ca mea storig multiple copies of A with differet idices. ometimes called a packed parse forest: represets a possibly expoetial umber of trees i a compact way. haro Goldwater Parsig 4 CKY i practice Avoids re-computig substructures, so much more efficiet tha depth-first parsers (i worst case). till may compute a lot of uecessary partial parses. imple versio requires covertig the grammar to CNF (may cause blowup). haro Goldwater Parsig 4 Itroductio to Computatioal Liguistics: Parsig ad Huma etece Processig haro Goldwater July 5 Various other chart parsig methods avoid these issues by combiig top-dow ad bottom-up approaches (see J&M). We also have t said aythig about how to choose betwee differet parses whe there s global ambiguity. haro Goldwater Parsig 4 Recap: Parsig We have see several differet parsig algorithms: Recurse descet parsig: top-dow, depth-first. hift-reduce parsig: bottom-up, depth-first. CKY parsig: bottom-up, breadth-first. Do ay of these seem plausbile as a model of huma setece processig? haro Goldwater Huma Parsig July 5 Properties of huma parsig mechaism Fast: real-time. Recogizes global ambiguity: at least to some extet. Icremetal: words (ad meaig) are itegrated ito structure immediately. Ca be led astray: by local ambiguity (garde path seteces). But mostly is t: may local ambiguities do t cause problems. haro Goldwater Huma Parsig Global ambiguity ome examples are clearly (eve humorously) ambiguous: I saw the ma with a telescope. he sat o the chair covered i dust. Milk drikers are turig to powder. But most ambiguity is t eve oticed! I saw the ma with a hat. he stood o the stoop covered i tears. Breast feeders are turig to a ew eriched formula. haro Goldwater Huma Parsig ame goes for local ambiguity: The old ma the boats We paited the wall with cracks Fat people eat accumulates versus Local ambiguity The dog bit the cat The gree is used for playig soccer We stopped short of goig haro Goldwater Huma Parsig haro Goldwater Huma Parsig 4

7 Properties of our parsig algorithms Fast? We argued that RD ad R are iefficiet, but could perhaps be improved by good heuristics for choosig ext rules. Ayway, hard to evaluate what couts as fast. Recogize global ambiguity? CKY builds all parses, so defiitely yes. RD/R ca retur multiple parses if ru past the first oe. But otice a distictio... erial versus parallel parsig Depth-first parsers are iheretly serial: oe structure processed at a time. o, recogizig ambiguity implies backtrackig/re-parsig, ad oe structure will always be recogized first. Breadth-first parsers are idealized as parallel: multiple structures processed simultaeously. If truly parallel, ambiguous structures iified simultaeously. haro Goldwater Huma Parsig 5 Huma parsig: serial or parallel? O the face of it, full parallel parsig seems implausible: Fids/otices all the global ambiguities. Does t get stuck i garde paths. erial parsig provides a possible explaatio for garde paths (backtrackig). But there are parallel optios too: limited parallelism: pursue a fixed (small) umber of structures at oce, may still require occasioal backtrackig. raked parallelism: (possibly i combiatio with above). Possible structures raked by preferece; garde path if low-raked structure turs out to be correct. haro Goldwater Huma Parsig 6 What about icremetality? First, what does it mea to be icremetal? Each word is itegrated ito the parse as soo as it is see/heard. Problems with curret parse are ected immediately; also possible to make predictios about upcomig words. Evidece: eye-trackig of sematic iterpretatio, garde paths. haro Goldwater Huma Parsig 7 Is CKY parsig icremetal? The chart-fillig order we used (short spas first) clearly is t. haro Goldwater Huma Parsig 8 There are still 4 discoected structures before the rule VP DV applies, reducig the umber to (after which, ). The girl gave the dog a boe What about J&M s orderig (fill all cells edig at j, the j + )? c dv c c Cosider processig The girl gave the dog a boe: VP Det CN VP TV VP DV Det the a CN girl dog boe TV bit DV gave The girl gave the dog a boe c dv c c haro Goldwater Huma Parsig 9 Aother problematic example Cosider the garde path setece the old ma the boats. haro Goldwater Huma Parsig Aother problematic example Grammar for processig the old ma the boats: Assume a serial bottom-up parser (or limited parallel key is that the correct structure is ot cosidered iitially). At what poit (ituitely) does a huma realize the iitial aalysis is icorrect? At what poit does the parser realize this? VP Det CN Det Adj CN VP TV VP DV Det the a Adj old CN ma boats old TV ma like DV gave haro Goldwater Huma Parsig haro Goldwater Huma Parsig

8 Garde path is too late! The bottom-up parser does t realize its mistake util it reaches the ed of the setece, ad caot create a full parse: The old ma the boats ummary so far RD parsig caot model humas because of problems with (eg.) left recursio. R parsig caot model humas because it does t recogize garde paths immediately. adj c c CKY parsig caot model humas because it is too parallel, or (if limited), also does t recogize garde paths immediately. o, where does that leave us? But humas recogize a problem at the secod the: they have a expectatio about what should come ext, ad it is violated. haro Goldwater Huma Parsig Left Corer Parsig Left corer parsig is more cogitely plausible: each word is immediately itegrated ito a sigle evolvig structure which makes predictios about what will come ext. Mixed directioality: costraied by iut (like bottom-up) but also makig predictios (like top-dow). Chart cotais acte edges: icomplete costituets represetig predictios. Ex: /CN is a icomplete costituet that will become a complete if a CN is see ext (cf. categorial grammar). haro Goldwater Huma Parsig 4 Rules of Left Corer Parsig. Projectio: For a completed edge Y ad a grammar rule X Y Z, add a acte edge X/Z, where Y ad X/Z spa the same part of the strig.. Completio: For a acte edge X/Y ad a completed edge Y that are adjacet, add a completed edge X that spas the width of both.. Compositio: For two adjacet acte edges X/Y ad Y/Z, add a acte edge X/Z that spas the width of both. Rule is ot ecessary for LC parsig, but is ecessary for a fully icremetal versio (i.e., to esure a sigle coected structure). haro Goldwater Huma Parsig 5 The kittes bite the dog haro Goldwater Huma Parsig 6 Rules of Left Corer Parsig Example of a left corer chart: /c s/ c / /c c If dealig with o-biary grammar:. Projectio: For a completed edge Y ad a grammar rule X Y α, add a acte edge X/α, where Y ad X/α spa the same part of the strig.. Partial Completio: For a acte edge X/Y α ad a completed edge Y that are adjacet, add a acte edge X/α that spas the width of both. s/. Completio: For a acte edge X/Y ad a completed edge Y that are adjacet, add a completed edge X that spas the width of both. s/c 4. Compositio: For two adjacet acte edges X/Y ad Y/Z, add a acte edge X/Z that spas the width of both. s haro Goldwater Huma Parsig 7 Example LC parse for garde path setece To try o your ow with the grammar provided earlier: the old ma the boats Cofirm that the parser realizes a problem where it should! haro Goldwater Huma Parsig 8 ummary Left-corer parsig achieves full icremetality by usig chart etries to represet partial/predicte sytactic structure. Looks promisig for modellig ambiguity resolutio ad garde paths. But still have t explaied why some parses are preferred or some locally ambiguous seteces (but ot others) cause garde paths. Other ope research issues: Developig fully icremetal parsers for wide rage of grammar formalisms (some easier tha others). How/whe does sematics fit i? haro Goldwater Huma Parsig 9 haro Goldwater Huma Parsig

Lecture 13a: Chunks. Announcements. Announcements (III) Announcements (II) Project #3 Preview 4/18/18. Pipeline of NLP Tools

Lecture 13a: Chunks. Announcements. Announcements (III) Announcements (II) Project #3 Preview 4/18/18. Pipeline of NLP Tools Lecture 3a: Chuks Aoucemets Code Freeze Day! From here o out, do t chage your code Exceptios: Bug fixes : do t tell me why your code crashed, just fix it. Checkpoited before-ad-after: If you tell me how

More information

Footwork is the foundation for a skilled basketball player, involving moves

Footwork is the foundation for a skilled basketball player, involving moves The Complete Book of Offesive Basketball Drills Basic Footwork ad Cuts Drills 2 Equipmet 16 chairs (or less) Persoel The etire team Basic Footwork ad Cuts Drills Two coaches How to Ru the Drill Five feet

More information

8.5. Solving Equations II. Goal Solve equations by balancing.

8.5. Solving Equations II. Goal Solve equations by balancing. 8.5 Solvig Equatios II Goal Solve equatios by balacig. STUDENT BOOK PAGES 268 271 Direct Istructio Prerequisite Skills/Cocepts Solve a equatio by ispectio or systematic trial. Perform operatios usig itegers,

More information

A SECOND SOLUTION FOR THE RHIND PAPYRUS UNIT FRACTION DECOMPOSITIONS

A SECOND SOLUTION FOR THE RHIND PAPYRUS UNIT FRACTION DECOMPOSITIONS Fudametal Joural of Mathematics ad Mathematical Scieces Vol., Issue, 0, Pages -55 This paper is available olie at http://www.frdit.com/ Published olie November 9, 0 A SECOND SOLUTION FOR THE RHIND PAPYRUS

More information

SPH4U Transmission of Waves in One and Two Dimensions LoRusso

SPH4U Transmission of Waves in One and Two Dimensions LoRusso Waves travelig travellig from oe medium to aother will exhibit differet characteristics withi each medium. Rules A wave of fixed frequecy will have a shorter wavelegth whe passig from a fast medium to

More information

DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall Notes - Chapter 6.

DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall Notes - Chapter 6. PARTMNT OF LCTRICAL AN COMPUTR NGINRING, TH UNIVRSITY OF NW MXICO C-238L: Computer Logic esig Fall 23 RGISTRS: Notes - Chapter 6 -bit Register: This is a collectio of '' -type flip flops, where each flip

More information

Equipment. Rackets are fragile. Handle the shuttlecocks carefully and only by their rubber tips.

Equipment. Rackets are fragile. Handle the shuttlecocks carefully and only by their rubber tips. Badmito Overvie ad History Badmito is a racket sport that is played o a court divided by a et five feet high. The game is played ith a shuttlecock ( bird ). Ca be played as sigles or doubles. The object

More information

GENETICS 101 GLOSSARY

GENETICS 101 GLOSSARY GENETICS 101 This documet is iteded to provide a basic uderstadig of caie geetics to the America Eskimo Dog (AED) ower ad breeder. It is simplified from scietific facts ad uderstadig. It is ot iteded to

More information

Basic Gas Spring Theory

Basic Gas Spring Theory Calculatig the iitial force The iitial force of the gas sprig ca be calculated as the sealed area of the pisto rod or the pisto (depedig o desig) multiplied by the pressure iside the gas sprig. The larger

More information

"The twisting movement of any hoof should, for physiological reasons, not be hindered by Shoeing." (Lungwitz 1884)

The twisting movement of any hoof should, for physiological reasons, not be hindered by Shoeing. (Lungwitz 1884) Volume 15: Issue 2 Shoeig for Rotatioal Deviatio of the Equie Limb by Michael J. Wildestei CJF, FWCF (Hos) Examiatio of a horse prelimiary to shoeig should be made while the aimal is at rest ad afterwards

More information

Available online at ScienceDirect. Procedia Engineering 113 (2015 )

Available online at  ScienceDirect. Procedia Engineering 113 (2015 ) Available olie at www.sciecedirect.com ScieceDirect rocedia Egieerig 3 (205 ) 30 305 Iteratioal Coferece o Oil ad Gas Egieerig, OGE-205 The twi spool efficiecy cotrol Michuri A.I. a *, Avtoomova I.V. a

More information

number in a data set adds (or subtracts) that value to measures of center but does not affect measures of spread.

number in a data set adds (or subtracts) that value to measures of center but does not affect measures of spread. Lesso 3-3 Lesso 3-3 Traslatios of Data Vocabulary ivariat BIG IDEA Addig (or subtractig) the same value to every umber i a data set adds (or subtracts) that value to measures of ceter but does ot affect

More information

THE EFFECTS OF COUPLED INDUCTORS IN PARALLEL INTERLEAVED BUCK CONVERTERS

THE EFFECTS OF COUPLED INDUCTORS IN PARALLEL INTERLEAVED BUCK CONVERTERS THE EFFECTS OF COUPED INDUCTORS IN PARAE INTEREAVED BUCK CONVERTERS Paul Seria, David Fi ad Geoff Walker pseria@itee.uq.edu.au School of Iformatio Techology ad Electrical Egieerig Uiversity of Queeslad

More information

ICC WORLD TWENTY ( WORLD CUP-2014 )- A CASE STUDY

ICC WORLD TWENTY ( WORLD CUP-2014 )- A CASE STUDY INTERNATIONAL JOURNAL OF MATHEMATICAL SCIENCES AND APPLICATIONS Volume 5 Number 1 Jauary-Jue 215 ICC WORLD TWENTY2-214 ( WORLD CUP-214 )- A CASE STUDY Bhavi Patel 1 ad Pravi Bhathawala 2 1 Assistat Professor,

More information

The structure of the Fibonacci numbers in the modular ring Z 5

The structure of the Fibonacci numbers in the modular ring Z 5 Notes o Number Theory ad Discrete Mathematics Vol. 19, 013, No. 1, 66 7 The structure of the iboacci umbers i the modular rig Z J. V. Leyedekkers 1 ad A. G. Shao 1 aculty of Sciece, The Uiversity of Sydey

More information

Precautions for Total Hip Replacement Patients Only

Precautions for Total Hip Replacement Patients Only Precautios for Total Hip Replacemet Patiets Oly The followig is a list of precautios to keep you from dislocatig your hip. Dislocatig meas to move a body part out of its usual positio. Durig your stay

More information

Operating Instructions SURGICAL POWER & ACCESSORIES

Operating Instructions SURGICAL POWER & ACCESSORIES SURGICAL POWER & ACCESSORIES Table of Cotets PAGE 2 PAGE 3-5 PAGE 6 Itroductio Warig Traiig Setup Illustratio Drill Motor Setup Quick Coectors Motor / Foot Cotrol Coectios Attachmet Istallatio Straight

More information

This report presents an assessment of existing and future parking & traffic requirements, for the site based on the current development proposal.

This report presents an assessment of existing and future parking & traffic requirements, for the site based on the current development proposal. CR166916b02 20 Jue 2017 Melida Dodso Melida Dodso Architects PO Box 5635 Hughes ACT 2605 Email: mdodso@melidadodsoarchitects.com.au Dear Melida, Project: Dickso Apartmets Lowrie St Re: Statemet o Parkig

More information

ELIGIBILITY / LEVELS / VENUES

ELIGIBILITY / LEVELS / VENUES ELIGIBILITY / LEVELS / VENUES 10U - SQUIRT MINOR '09 & MAJOR '08 Eligibility: Top six teams i the league at each level will qualify based o regular seaso league play. Format: Divisioal crossover with semi-fial

More information

ELIGIBILITY / LEVELS / VENUES

ELIGIBILITY / LEVELS / VENUES ELIGIBILITY / LEVELS / VENUES 10U - SQUIRT MINOR '09 & MAJOR '08 Eligibility: Top six teams i the league at each level will qualify based o regular seaso league play. Format: Divisioal crossover with semi-fial

More information

Series 600 Accessories

Series 600 Accessories Series 600 Geeral These accessories are a rage of devices for completig a peumatic circuit. These valves, with their special fuctios, are iserted betwee two valves, betwee a valve ad a cylider, or followig

More information

ELIGIBILITY / LEVELS / VENUES

ELIGIBILITY / LEVELS / VENUES ELIGIBILITY / LEVELS / VENUES 10U - SQUIRT MINOR '08 & MAJOR '07 Eligibility: Top six teams i the league at each level will qualify based o regular seaso league play. Format: Divisioal crossover with semi-fial

More information

University of California, Los Angeles Department of Statistics. Measures of central tendency and variation Data display

University of California, Los Angeles Department of Statistics. Measures of central tendency and variation Data display Uiversity of Califoria, Los Ageles Departmet of Statistics Statistics 13 Istructor: Nicolas Christou Measures of cetral tedecy Measures of cetral tedecy ad variatio Data display 1. Sample mea: Let x 1,

More information

Introduction to Algorithms 6.046J/18.401J/SMA5503

Introduction to Algorithms 6.046J/18.401J/SMA5503 Itroductio to Algorithms 6.046J/8.40J/SMA5503 Lecture 4 Prof. Charles E. Leiserso Quicsort Proposed by C.A.R. Hoare i 962. Divide-ad-coquer algorithm. Sorts i place lie isertio sort, but ot lie merge sort.

More information

ELIGIBILITY / LEVELS / VENUES

ELIGIBILITY / LEVELS / VENUES ELIGIBILITY / LEVELS / VENUES 10U - SQUIRT MINOR '08 & MAJOR '07 Eligibility: Top six teams i the league at each level will qualify based o regular seaso league play. Format: Divisioal crossover with semi-fial

More information

DAMAGE ASSESSMENT OF FIBRE ROPES FOR OFFSHORE MOORING

DAMAGE ASSESSMENT OF FIBRE ROPES FOR OFFSHORE MOORING RECOMMENDED PRACTICE DNV-RP-E304 DAMAGE ASSESSMENT OF FIBRE ROPES FOR OFFSHORE MOORING APRIL 2005 FOREWORD (DNV) is a autoomous ad idepedet foudatio with the objectives of safeguardig life, property ad

More information

THE LATENT DEMAND METHOD

THE LATENT DEMAND METHOD THE LATENT DEMAND METHOD Bruce W. Ladis, Russell M. Otteberg, Vekat R. Vattikuti SCI, Ic., 18115 U.S. Highway 41North, Suite 600, Lutz, FL 33549, USA Email: bladis@sciworld.et Travel patters i a metropolita

More information

» WYOMING s RIDE 2013

» WYOMING s RIDE 2013 » WYOMING s RIDE 2013 WYOMING S RIDE 2013 preseted by First Iterstate Bak of Wyomig bikemswyomig.org 1 We are people who wat to do somethig about ow.» Our Wyomig Bike MS Ride Two-Day Wyomig Ride: To view

More information

Brian Hayes. A reprint from. American Scientist. the magazine of Sigma Xi, the Scientific Research Society

Brian Hayes. A reprint from. American Scientist. the magazine of Sigma Xi, the Scientific Research Society COMPUTING SCIENCE HOW TO AVOID YOURSELF Bria Hayes A reprit from America Scietist the magazie of Sigma Xi, the Scietific Research Society Volume 86, Number 4 July August, 1998 pages 314 319 This reprit

More information

n UL Listed and FM Approved for n Solenoid control n Quick pressure relief valve 73Q n Pressure sustaining & reducing valve 723

n UL Listed and FM Approved for n Solenoid control n Quick pressure relief valve 73Q n Pressure sustaining & reducing valve 723 Pressure Relief/Sustaiig Valve Prioritizig pressure zoes Esurig cotrolled pipelie fill-up Prevetig pipelie emptyig Pump overload & cavitatio protectio Safeguardig pump miimum flow Excessive lie pressure

More information

Research Article. Relative analysis of Taekwondo back kick skills biomechanics based on 3D photograph parsing. Mingming Guo

Research Article. Relative analysis of Taekwondo back kick skills biomechanics based on 3D photograph parsing. Mingming Guo Available olie www.jocpr.com Joural of Chemical ad Pharmaceutical Research, 203, 5(2):64-69 Research Article ISSN : 0975-734 CODEN(USA) : JCPRC5 Relative aalysis of Taekwodo back kick skills biomechaics

More information

Headfirst Entry - Diving and Sliding

Headfirst Entry - Diving and Sliding 5/31/2011 Safe divig board use, safe slide use, usi Headfirst Etry - Divig ad Slidig POOLALARMS.COM HOME POOL SAFETY PRODUCTS POOL SAFETY ARTICLES & REPORTS POOL SAFETY LINKS & RESOURCES POOLALARMS.COM

More information

SPEED OF SOUND MEASUREMENTS IN GAS-MIXTURES AT VARYING COMPOSITION USING AN ULTRASONIC GAS FLOW METER WITH SILICON BASED TRANSDUCERS

SPEED OF SOUND MEASUREMENTS IN GAS-MIXTURES AT VARYING COMPOSITION USING AN ULTRASONIC GAS FLOW METER WITH SILICON BASED TRANSDUCERS SPEED OF SOUND MEASUREMENTS IN GAS-MIXTURES AT VARYING COMPOSITION USING AN ULTRASONIC GAS FLOW METER WITH SILICON BASED TRANSDUCERS Torbjör Löfqvist, Kęstutis Sokas, Jerker Delsig EISLAB, Departmet of

More information

Introductory Rules of Officiating Small Sided Games Under 6 &Under 8 HANDBOOK

Introductory Rules of Officiating Small Sided Games Under 6 &Under 8 HANDBOOK Itroductory Rules of Officiatig Small Sided Games Uder 6 &Uder 8 O F F I C I A L S HANDBOOK 1 T his hadbook is iteded to be used i cojuctio with the US Youth Soccer Small-sided Game Official s classroom

More information

Sequential parimutuel games

Sequential parimutuel games Sequetial parimutuel games Rob Feeey ad Stephe P. Kig Departmet of Ecoomics The Uiversity of Melboure Parkville, Vic. 3052. Australia Abstract: I a parimutuel bettig system, a successful player s retur

More information

Syntax and Parsing II

Syntax and Parsing II Syntax and Parsing II Dependency Parsing Slav Petrov Google Thanks to: Dan Klein, Ryan McDonald, Alexander Rush, Joakim Nivre, Greg Durrett, David Weiss Lisbon Machine Learning School 2015 Notes for 2016

More information

WATER VALVES REPLACEMENT PROJECT

WATER VALVES REPLACEMENT PROJECT WATER VALVES REPLACEMET PROJECT BROWSVILLE, TEXAS BID o B026-17 PUBLIC B R O W S V I L L E UTILITIES B OARD Brownsville - Board of Directors RAFAEL VELA...CHAIR RAFAEL S. CHACO...VICE-CHAIR MARTI C. ARAMBULA...SECRETARY/TREASURER

More information

Extensible Detection and Indexing of Highlight Events in Broadcasted Sports Video

Extensible Detection and Indexing of Highlight Events in Broadcasted Sports Video Extesible Detectio ad Idexig of Highlight Evets i Broadcasted Sports Video Dia W. Tjodroegoro 1, Yi-Pig Phoebe Che 2, Bih Pham 3 1 School of Iformatio Systems, Queeslad Uiversity of Techology, Brisbae,

More information

SYMMETRY AND VARIABILITY OF VERTICAL GROUND REACTION FORCE AND CENTER OF PRESSURE IN ABLE-BODIED GAIT

SYMMETRY AND VARIABILITY OF VERTICAL GROUND REACTION FORCE AND CENTER OF PRESSURE IN ABLE-BODIED GAIT SYMMETRY AND VARIABILITY OF VERTICAL GROUND REACTION FORCE AND CENTER OF PRESSURE IN ABLE-BODIED GAIT Yu Wag ad Kazuhiko Wataabe Graduate School of Educatio, Hiroshima Uiversity, Hiroshima, Japa, wagyu@hiroshima-u.ac.jp

More information

Modelling Lane Changing Behaviour of Heavy Commercial Vehicles

Modelling Lane Changing Behaviour of Heavy Commercial Vehicles Modellig Lae Chagig Behaviour of Heavy Commercial Vehicles Modellig Lae Chagig Behaviour of Heavy Commercial Vehicles Sara Moridpour 1, Majid Sarvi 2, Geoff Rose 3 1 Post Graduate Studet, Moash Uiversity,

More information

The Real Thing?: Representing the Bullfight and Spain in Death in the Afternoon by Peter Messent

The Real Thing?: Representing the Bullfight and Spain in Death in the Afternoon by Peter Messent The Real Thig?: Represetig the Bullfight ad Spai i Death i the Afteroo by Peter Messet Hemigway does t give us the real thig i the book; istead he gives us his versio of it Phrase used several times (both

More information

Computer Architecture ELEC3441

Computer Architecture ELEC3441 Computer rchitecture ELEC344 ISC vs CISC Iro Law CPUTime = # of istructio program # of cycle istructio cycle Lecture 5 Pipeliig () Dr. Hayde Kwok-Hay So Departmet of Electrical ad Electroic Egieerig L4

More information

West St Paul YMCA Swim Lessons Schedule

West St Paul YMCA Swim Lessons Schedule West St Paul YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (651) 457-0048 www.weststpaulymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay

More information

DFC NIST DIGITAL MASS FLOW CONTROLLERS. DFC with optional LCD readout PROG RS485. Programmable Mass Flow Controller with Digital Signal Processing

DFC NIST DIGITAL MASS FLOW CONTROLLERS. DFC with optional LCD readout PROG RS485. Programmable Mass Flow Controller with Digital Signal Processing Programmable Mass Flow Cotroller with Digital Sigal Processig Microprocessor drive digital flow cotrollers allow oe to program, record, ad aalyze flow rates of various gases with a computer via a RS-485

More information

G53CLP Constraint Logic Programming

G53CLP Constraint Logic Programming G53CLP Constraint Logic Programming Dr Rong Qu Basic Search Strategies CP Techniques Constraint propagation* Basic search strategies Look back, look ahead Search orders B & B *So far what we ve seen is

More information

When rule-based models need to count

When rule-based models need to count Whe rule-based models eed to cout Pierre Boutillier, Ioaa Cristescu To cite this versio: Pierre Boutillier, Ioaa Cristescu. Whe rule-based models eed to cout. [Research Reort] Harvard Medical School. 2017.

More information

operate regenerator top without boiling aq. amine solution.

operate regenerator top without boiling aq. amine solution. HSRemoval-MaterialBalacemcd Rough material balace for removal of H S from shale gas with MDEA ad recovery of elemetal sulfur via the Claus process The solvet has bee dow-selected to be methyldiethaolamie

More information

M3P. Safety Data Sheet TABLE OF CONTENTS IDENTIFICATION OF THE SUBSTANCE/MIXTURE AND OF THE COMPANY/UNDERTAKING 2 SECTION 2 HAZARDS IDENTIFICATION 2

M3P. Safety Data Sheet TABLE OF CONTENTS IDENTIFICATION OF THE SUBSTANCE/MIXTURE AND OF THE COMPANY/UNDERTAKING 2 SECTION 2 HAZARDS IDENTIFICATION 2 Accordig to the Hazard Commuicatio Stadard (CFR29 1910.1200) HazCom 2015 TABLE OF CONTENTS SECTION 1 IDENTIFICATION OF THE SUBSTANCE/MIXTURE AND OF THE COMPANY/UNDERTAKING 2 SECTION 2 HAZARDS IDENTIFICATION

More information

CLASS: XI: MATHEMATICS

CLASS: XI: MATHEMATICS LASS: XI: MATHEMATIS ERMUTATIONS AND OMBINATIONS RATIE QUESTIONS ON FATORIAL AND FUNDAMENTAL RINILES OF OUNTING ove the followig fo N, 1. (2 )! 2.!.[1.3.5...(2 1)] FORMULA USED Factoial otatio:! o 1.!

More information

Intersleek Pro. Divers Manual. Our World is Water CONTENTS

Intersleek Pro. Divers Manual. Our World is Water CONTENTS Itersleek Pro Divers Maual CONTENTS Itroductio.......................................2 Expectatios for Itersleek Pro........................3 I-Water Maiteace...............................4 Haulig the

More information

P h o t o g r a p h i c L i g h t i n g ( 1 1 B )

P h o t o g r a p h i c L i g h t i n g ( 1 1 B ) 9 1 5 9 P h o t o g r a p h i c L i g h t i g ( 1 1 B ) 30S/30E/30M A Photography Course 9 1 5 9 : P h o t o g r a p h i c L i g h t i g ( 1 1 B ) 3 0 S / 3 0 E / 3 0 M Course Descriptio This course focuses

More information

Non-Harmony Notes GRADE 6 MUSIC THEORY

Non-Harmony Notes GRADE 6 MUSIC THEORY No-Harmoy Notes GRADE 6 MUSIC THEORY Dr. Decla Plummer Lesso 3: No-Harmoy Notes 1. No-Harmoy otes are itches that are ot cotaied withi the chord. They decorate the music by rovidig it with more exressio

More information

HYDRAULIC MOTORS MM APPLICATION CONTENTS GENERAL MOTORS

HYDRAULIC MOTORS MM APPLICATION CONTENTS GENERAL MOTORS HYDRULIC OORS OORS CONENS Specificatio data... 5 Fuctio diagrams... 6 8 Dimesios ad moutig... 9 1 Shaft extesios... 11 Permissible shaft loads... 11 Order code... 12 GENERL PPLICION Coveyors extile machies

More information

Policy sensitivity analysis of Karachi commuters

Policy sensitivity analysis of Karachi commuters Policy sesitivity aalysis of Karachi commuters A. Q. Memo 1 & K. Sao 2 1 Departmet of Civil Egieerig, NED Uiversity of Egieerig ad Techology, Karachi, Pakista 2 Departmet of Civil ad Evirometal Egieerig,

More information

Andover YMCA Swim Lessons Schedule

Andover YMCA Swim Lessons Schedule Adover YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (763) 230-9622 www.adoverymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

MINNESOTA DEER MANAGEMENT

MINNESOTA DEER MANAGEMENT MINNESOTA DEER MANAGEMENT A study of huter opiios about deer populatios ad maagemet: Blocks H H5 Fial Report A cooperative study coducted by: Miesota Cooperative Fish ad Wildlife Research Uit Miesota Departmet

More information

Chilled Mirror Dew Point Instrument

Chilled Mirror Dew Point Instrument 102 The Relatioship Betee Gas Ad Pressure (SF6) Whe the gas is i the temperature belo the codesig poit, de poit measuremet is ot available This gas codeses o the mirror, the figure belo idicates the relatioship

More information

Wondering where to start?

Wondering where to start? Ridgedale YMCA Swim Lessos Schedule 2019 Witer Jauary 1 - February 24 (952) 544-7708 www.ridgedaleymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

ELIGIBILITY / LEVELS / VENUES

ELIGIBILITY / LEVELS / VENUES ELIGIBILITY / LEVELS / VENUES 10U - SQUIRT MINOR '08 & MAJOR '07 Eligibility: Top six teams i the league at each level will qualify based o regular seaso league play. Format: Divisioal crossover with semi-fial

More information

A Comparison of MOEA/D, NSGA II and SPEA2 Algorithms

A Comparison of MOEA/D, NSGA II and SPEA2 Algorithms Iteratioal Joural of Egieerig Treds ad Applicatios (IJETA) Volume 4 Issue 6, Nov-Dec 7 RESEARCH ARTICLE A Comparo of MOEA/D, ad Algorithms Rajai [1], Dr. Aad Prakash [] Asstat Professor of Computer Sciece

More information

SEARCH TREE. Generating the children of a node

SEARCH TREE. Generating the children of a node SEARCH TREE Node: State in state tree Root node: Top of state tree Children: Nodes that can be reached from a given node in 1 step (1 operator) Expanding: Generating the children of a node Open: Closed:

More information

CSE 3401: Intro to AI & LP Uninformed Search II

CSE 3401: Intro to AI & LP Uninformed Search II CSE 3401: Intro to AI & LP Uninformed Search II Required Readings: R & N Chapter 3, Sec. 1-4. 1 {Arad}, {Zerind, Timisoara, Sibiu}, {Zerind, Timisoara, Arad, Oradea, Fagaras, RimnicuVilcea }, {Zerind,

More information

Chapter 10: File-System Interface Dr. Varin Chouvatut. Operating System Concepts 8 th Edition,

Chapter 10: File-System Interface Dr. Varin Chouvatut. Operating System Concepts 8 th Edition, Chapter 10: Fie-System Iterface Dr. Vari Chouvatut Operatig System Cocepts 8 th Editio, Siberschatz, Gavi ad Gage 2010 Chapter 10: Fie-System Iterface Fie Cocept Access Methods Directory Structure Fie-System

More information

WhisperFit EZ Ventilation Fans

WhisperFit EZ Ventilation Fans FV-08-11VF5, FV-08-11VFM5, FV-08-11VFL5 FV-08-11VF5 FV-08-11VFM5 FV-08-11VFL5 (with 3" duct adapter) Ideal for remodelig ad hotel ew costructio or reovatio Pick-A-Flow Speed Selector oe fa, you choose

More information

draft final report NGSIM Arterial-Lane Selection Mode Federal Highway Administration Cambridge Systematics, Inc.

draft final report NGSIM Arterial-Lane Selection Mode Federal Highway Administration Cambridge Systematics, Inc. NGSIM Arterial-Lae Selectio Mode draft fial report prepared for Federal Highway Admiistratio prepared by Cambridge Systematics, Ic. with Itelliget Trasportatio Systems Laboratory Massachusetts Istitute

More information

1 Main Board. 24 dots characters: 48 Columns

1 Main Board. 24 dots characters: 48 Columns 1 Mai Board CPU Memory Character r Size Character r Per e Lie L Prit r Commads Prit r Fot t Barcode Iterface ARM 32-bit 256Kb Flash memory 16 dots characters: 16 X 8 (2 x 1mm) 24 dots characters: 24 X

More information

Princess Nora University Faculty of Computer & Information Systems ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department

Princess Nora University Faculty of Computer & Information Systems ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department Princess Nora University Faculty of Computer & Information Systems 1 ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department (CHAPTER-3-PART2) PROBLEM SOLVING AND SEARCH (Course coordinator) Searching

More information

Our club has a rich history that dates back to the turn of the 20th century.

Our club has a rich history that dates back to the turn of the 20th century. M E MB E R SHIP IN F O RM AT IO N 9 7 8-7 7 9-6 9 1 9 t h e i t e r at i o a l. c o m 1 5 9 B a l lv i l l e R d, B o lto, MA 01740 Dear Prospective Member Thak you for your iterest i membership at The

More information

» COLORADO s RIDE 2013

» COLORADO s RIDE 2013 » COLORADO s RIDE 2013 COLORADO S RIDE 2013 bikemscolorado.org 1 We are people who wat to do somethig about ow.» COlorado 2-Day Ride Caledar of Evets o back 2 2013 Bike MS COLORADO MS Society Missio Statemet

More information

Syntax and Parsing II

Syntax and Parsing II Syntax and Parsing II Dependency Parsing Slav Petrov Google Thanks to: Dan Klein, Ryan McDonald, Alexander Rush, Joakim Nivre, Greg Durrett, David Weiss Lisbon Machine Learning School 2016 Dependency Parsing

More information

Eagan YMCA Swim Lessons Schedule

Eagan YMCA Swim Lessons Schedule Eaga YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (651) 456-9622 www.eagaymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

(612)

(612) Shoreview YMCA Swim Lessos Schedule Late Sprig 2019 - April 15 - Jue 2 (612) 230-9622 www.shoreviewymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

Product Features Product Benefits Application

Product Features Product Benefits Application lamps are compact UVC (germicidal) lamps used i residetial water ad air disifectio uits. The compact size of the lamp allows for a small system desig ad desig flexibility. lamps offer costat UV output

More information

-H- Note. Flow control valve. Key features

-H- Note. Flow control valve. Key features Flow cotrol valves Flow cotrol valves Key features Fuctio Flow cotrol or oe-way flow cotrol valves regulate the pisto speed of peumatic drives durig advace ad retur strokes. This is doe through suitable

More information

HERKIMER CENTRAL SCHOOL DISTRICT Herkimer Elementary School 255 Gros Boulevard Herkimer, New York 13350

HERKIMER CENTRAL SCHOOL DISTRICT Herkimer Elementary School 255 Gros Boulevard Herkimer, New York 13350 HERKIMER CENTRAL SCHOOL DISTRICT Herkimer Elemetary School 255 Gros Boulevard Herkimer, New York 13350 Robert J. Miller Superitedet ofschools 315-866-2230, Ext. 1302 FAX 315-866-2234 Reee L. Vogt, Pricipal

More information

Polynomial functions have graphs that are smooth and continuous. c) Use your knowledge of quadratic functions to sketch the graph.

Polynomial functions have graphs that are smooth and continuous. c) Use your knowledge of quadratic functions to sketch the graph. Math 165 4.1 Polyomial fuctios I class work Polyomial fuctios have graphs that are smooth ad cotiuous 1) For the fuctio: y 2 = x 9. a) Write the fuctio i factored form. b) Fid the x-itercepts or real zeros

More information

Load Calculation and Design of Roller Crowning of Truck Hub Bearing

Load Calculation and Design of Roller Crowning of Truck Hub Bearing Sed Orders for Reprits to reprits@bethamsciece.ae 106 The Ope Mechaical Egieerig Joural, 2015, 9, 106-110 Ope Access Load Calculatio ad Desig of Roller Crowig of Truck Hub Bearig Xitao Xia,1, Shujig Dog

More information

CENG 466 Artificial Intelligence. Lecture 4 Solving Problems by Searching (II)

CENG 466 Artificial Intelligence. Lecture 4 Solving Problems by Searching (II) CENG 466 Artificial Intelligence Lecture 4 Solving Problems by Searching (II) Topics Search Categories Breadth First Search Uniform Cost Search Depth First Search Depth Limited Search Iterative Deepening

More information

Problem Solving as Search - I

Problem Solving as Search - I Problem Solving as Search - I Shobhanjana Kalita Dept. of Computer Science & Engineering Tezpur University Slides prepared from Artificial Intelligence A Modern approach by Russell & Norvig Problem-Solving

More information

Range St. Dev. n Mean. Total Mean % Competency. Range St. Dev. n Mean. Total Mean % Competency

Range St. Dev. n Mean. Total Mean % Competency. Range St. Dev. n Mean. Total Mean % Competency CSWE Core Competecies - MSW 2013 MSW Program Dual Degree MSW/JD Program* *Due to the curret limited umber of Dual Degree studets, the MSW outcomes data represets outcomes for both programs. 1 : Idetify

More information

Roll Wave! Dear Tulane Green Wave Fans,

Roll Wave! Dear Tulane Green Wave Fans, Dear Tulae Gree Wave Fas, Tulae football is comig home! After almost 40 years, the Wave is returig to our beautiful uptow campus, which will esure a classic college football experiece for our studets,

More information

The Complete Book of Offensive. Basketball Drills GAME-CHANGING DRILLS FROM AROUND THE WORLD GIORGIO GANDOLFI

The Complete Book of Offensive. Basketball Drills GAME-CHANGING DRILLS FROM AROUND THE WORLD GIORGIO GANDOLFI The Complete Book of Offesive Basketball Drills GAME-CHANGING DRILLS FROM AROUND THE WORLD GIORGIO GANDOLFI New York Chicago Sa Fracisco Lisbo Lodo Madrid Mexico City Mila New Delhi Sa Jua Seoul Sigapore

More information

securing your safety

securing your safety securig your safety LIFE POINT PRO DEFIBRILLATOR AN AUTOMATED EXTERNAL DEFIBRILLATOR (AED) CAN BE THE DIFFERENCE BETWEEN LIFE AND DEATH. Statistics show that early 200,000 people die each year as a result

More information

The Analysis of Bullwhip Effect in Supply Chain Based on Strategic Alliance

The Analysis of Bullwhip Effect in Supply Chain Based on Strategic Alliance The Aalysis of Bullwhip Effect i Supply Chai Based o Strategic Alliace Rui Xu, Xiaoli Li, Xiaomi Sog, Gag Liu School of Busiess, Hubei Uiversy, Wuha, 430062, P. R. Chia, wdxj826@126.com Abstract. Bullwhip

More information

Human-Robot Interaction: Group Behavior Level

Human-Robot Interaction: Group Behavior Level SPECOM'006, St. Petersburg, 5-9 Jue 006 Huma-Robot Iteractio: Group Behavior Level Lev Stakevich, Deis Trotsky Sait Petersburg State Techical Uiversity 9, Politechicheskaya, St. Petersburg, 955, Russia

More information

HYDRAULIC MOTORS MR APPLICATION GENERAL

HYDRAULIC MOTORS MR APPLICATION GENERAL HYDRAULIC OTORS R APPLICATION»»»» Coveyors Feedig mechaism of robots ad maipulators etal workig machies Textile machies» Agricultural machies» Food idustries» Grass cuttig machiery etc. CONTENTS Specificatio

More information

Avoiding danger from underground services

Avoiding danger from underground services Health ad Safety Avoidig dager from udergroud services This is a free-to-dowload, web-friedly versio of HSG47 (Fourth editio, published 2000). This versio has bee adapted for olie use from HSE s curret

More information

n Mix of public, private and NGO respondents Overview n Understanding Walking & Biking Trips n Informing Project Development through:

n Mix of public, private and NGO respondents Overview n Understanding Walking & Biking Trips n Informing Project Development through: Creatig Walkable, Bikeable Commuities Developig Effective Active Trasportatio Projects ad Programs ATP Needs & Challeges Survey Mix of public, private ad NGO respodets 96% from orgaizatios/agecies servig

More information

Welcome to the world of the Rube Goldberg!

Welcome to the world of the Rube Goldberg! Welcome to the world of the Rube Goldberg! Sice 1988, tes of thousads of studets have competed i our aual Rube Goldberg Machie Cotests where they are challeged to build the wackiest workig Rube Goldberg

More information

PERFORMANCE TEAM EVALUATION IN 2008 BEIJING OLYMPIC GAMES

PERFORMANCE TEAM EVALUATION IN 2008 BEIJING OLYMPIC GAMES XV INTERNATIONAL CONFERENCE ON INDUSTRIAL ENGINEERING AND OPERATIONS MANAGEMENT The Idustrial Egieerig ad the Sustaiable Developmet: Itegratig Techology ad Maagemet. Salvador, BA, Brazil, 06 to 09 October

More information

Version IV: April a publication from

Version IV: April a publication from Versio IV: April 2013 a publicatio from AWRF Associated Wire Rope Fabricators Recommeded Practice ad Guidelie Disclaimer for AWRF Recommeded Guidelie Swager Safety Guide Associated Wire Rope Fabricators

More information

7.0 Nonmotorized Facilities

7.0 Nonmotorized Facilities 7.0 Nomotorized Facilities 7.1 Sectio Overview This sectio describes the existig coditios ad ay idetified future impacts with the project o omotorized facilities withi the study area. Data were collected

More information

Kentucky SCL National Core Indicators Data

Kentucky SCL National Core Indicators Data Kentucky SCL ational Core dicators Data 2013-2014 Laura. Butler Table of Contents DEMOGRAPHICS... 2 WORK... 7 RELATIOSHIPS... 11 WELLESS... 13 MEDICATIO... 14 HEALTH... 15 COMMUITY ICLUSIO... 18 CHOICE

More information

Better Search Improved Uninformed Search CIS 32

Better Search Improved Uninformed Search CIS 32 Better Search Improved Uninformed Search CIS 32 Functionally PROJECT 1: Lunar Lander Game - Demo + Concept - Open-Ended: No One Solution - Menu of Point Options - Get Started NOW!!! - Demo After Spring

More information

1998 Plenary Session: Imaging Symposium

1998 Plenary Session: Imaging Symposium 1998 Pleary Sessio: Imagig Symposium LEARNING OBJECTIVE Uderstad basic woud ballistics ad their radiographic implicatios. Gushot Ijuries: What Does a Radiologist Need to Kow? 1 Athoy J. Wilso, MB, ChB

More information

Representing polynominals with DFT (Discrete Fourier Transform) and FFT (Fast Fourier Transform) Arne Andersson

Representing polynominals with DFT (Discrete Fourier Transform) and FFT (Fast Fourier Transform) Arne Andersson Represetig polyomils with DFT Discrete Fourier Trsform d FFT Fst Fourier Trsform Are Adersso Iformtiostekologi Polyomil A Emple: 4 Coefficiet represettio:,,,4 Poit-vlue represettio:,, 4 4... 4,,,7,, Istitutioe

More information

Design, construction and installation of gas service pipes

Design, construction and installation of gas service pipes Desig, costructio ad istallatio of gas service pipes Pipelies Safety Regulatios 1996 Approved Code of Practice ad guidace This is a free-to-dowload, web-friedly versio of L81, (First editio, published

More information

SEARCH SEARCH TREE. Node: State in state tree. Root node: Top of state tree

SEARCH SEARCH TREE. Node: State in state tree. Root node: Top of state tree Page 1 Page 1 Page 2 SEARCH TREE SEARCH Node: State in state tree Root node: Top of state tree Children: Nodes that can be reached from a given node in 1 step (1 operator) Expanding: Generating the children

More information

Computation of the inviscid drift force caused by nonlinear waves on a submerged circular cylinder

Computation of the inviscid drift force caused by nonlinear waves on a submerged circular cylinder csnak, 2011 Iter J Nav Archit Oc Egg (2011) 3:201~207 http://dx.doi.org/10.3744/jnaoe.2011.3.3.201 Computatio of the iviscid drift force caused by oliear waves o a submerged circular cylider Hyeok-Ju Koh

More information

Hazard Identificaiton of Railway Signaling System Using PHA and HAZOP Methods

Hazard Identificaiton of Railway Signaling System Using PHA and HAZOP Methods www.ijape.org Iteratioal Joural of Automatio ad Power Egieerig (IJAPE) Volume 2 Issue 2, February 2013 Hazard Idetificaito of Railway Sigalig System Usig PHA ad HAZOP Methods Jog Gyu Hwag *1, Hyu Jeog

More information