Artificial Intelligence. The Planning Problem. Typical Assumptions. Planning. Given: Find

Size: px
Start display at page:

Download "Artificial Intelligence. The Planning Problem. Typical Assumptions. Planning. Given: Find"

Transcription

1 rtificial Intelligence Planning 1 The Planning Problem Given: set of oerators n initial state descrition goal state descrition or redicate Find sequence of oerator instances such that erforming them in order from the initial state will modify the state to achieve the goal. 2 Tyical ssumtions Each action is indivisible atomic. No concurrent actions allowed. ctions are deterministic i.e. no uncertainty in outcome. gent is sole cause of change to world. gent is omniscient. losed World ssumtion Everything known to be true is included in state descrition. Otherwise it s false. 3 1

2 Possible roaches Situation alculus: ugment FOL to reason about actions in time. dd situation variables. Define redicates as a function of situation. dd new function resultas that returns new situation given action and current situation. Examle: Definition of action agent-walks-to-location. x y s atgentxs traedgents atgentyresultwalkys 4 Possible roaches State-Sace Search: We already need an initial state. Goal test checks to see if goal state is achieved. Successor function based on set of oerators. Once goal is found the lan is simly the sequence of oerators on ath from initial state to goal state. Unfortunately this aroach relies totally on algorithm and ignores information inherent in state es. goal and oerator descritions. 5 Oening States/Oerators State/situation reresentation is a conjunction of ground literals i.e. facts with no variables. Goal is a state where all literals are ositive i.e. all true. STRIPS Oerators have three arts: Oerator/action name Preconditions: what needs to be true Effects: what is now true ND false 6 2

3 Examle Oerator Descrition Suose we want to describe an oerator that icks u an object. Name: ickux Preconditions: ontablex clearx handemty dd List: holdingx Delete List: ontablex clearx handemty lternatively effects could be Effect List: holdingx ontablex clearx handemty 7 ction Descrition Language lternative method for reresenting actions. States include both ositive and negative literals oen world assumtion. Quantifiers and disjunction now allowed in goals. Equality redicate built in. Variables can be tyed reduces search sace. 8 Examle: Moving a Piano 1 Goal: Move the iano through the window. 9 3

4 4 10 Examle: Moving a Piano 2 Goal: Move the iano through the window. 11 Examle: ir argo EFFET : PREOND : EFFET : PREOND : EFFET : PREOND : to from to irort from irort Plane from from to Fly ction c In a c a irort Plane c argo a c In a c Unload ction c In a c a irort Plane c argo a a c a c Load ction SFO JFK Goal SFO irort JFK irort P Plane P Plane argo argo JFK P SFO P JFK SFO Init 12 Examle: Sare Tire EFFET : PREOND : EFFET : PREOND : EFFET : PREOND : EFFET : PREOND : xle Flat Ground Flat Trunk Sare xle Sare Ground Sare LeaveOvernight ction xle Sare Ground Sare xle Flat Ground Sare xle Sare PutOn ction Ground Flat xle Flat xle Flat xle Flat Remove ction Ground Sare Trunk Sare Trunk Sare Trunk Sare Remove ction xle Sare Goal Trunk Sare xle Flat Init

5 Planning as Search Generally lanning is regarded as a search roblem due to the natural descrition. Two main aroaches suggest themselves: Situation-Sace Search: Search sace is sace of all ossible states. Plan is sequence of oerators on ath from start to goal. Plan-Sace Search: Search sace is sace of all ossible lans or artial lans. 13 Situation-Sace Planning Two aroaches Progression Planning Forward chaining Use standard search techniques FS * etc. State-sace search excet with STRIPS oerators Regression Planning ackward chaining Historically More efficient that rogression lanning Must consider re-conditions and add-list of effects ll search methods now benefit from heuristics. 14 STRIPS Uses a goal stack instead of the regression algorithm. Maintains current state throughout. roach: Pick an order for achieving each of the goals. When a goal is oed from stack ush oerator that adds goal followed by its reconditions. Reeat until all reconditions solved. 15 5

6 STRIPS lgorithm rocedure rocedurestripsi G 1 1 G n n OPS OPS ushachieveg ushachieveg 1 1 G n n GoalStack GoalStack do do if ifemtygoalstack then then success success N ogoalstack ogoalstack if ifn of of form form achieveg achieveg 1 1 gg m m then then if ifn true true in ini I continue continue if if N reviously reviously tried tried fail fail Mark Mark N attemted attemted ushn ushn GoalStack GoalStack order order N s N s goals goals gg i i ushachieveg ushachieveg i i GoalStack GoalStack in in order order else else if if N of of form form achieveg achieveg then then if if N true true in in I I continue continue choose choose oerator oerator O from from OPS OPS that that may may add add gg if if none none fail fail choose choose unifyo unifyo I I so so O adds adds gg ushalyo ushalyo GoalStack GoalStack ushachievereconditionso GoalStack GoalStack else else if if N of of form form alyo alyo then theni I alyo alyo I I 16 Examle Oerators ickux P: ontablex clearx handemty E: holdingx ontablex clearx handemty utdownx P: holdingx E: ontablex clearx handemty holdingx stackxy P: holdingx cleary E: onxy clearx handemty holdingx cleary unstackxy P: clearx onxy handemty E: holdingx cleary clearx onxy handemty 17 Examle Initial State: clear clear on ontable ontable handemty 18 6

7 Examle Goal State: on on 19 State: clear clear on ontable ontable handemty Plan: Ste 1 GoalStack: achieveonon 20 State: clear clear on ontable ontable handemty Plan: Ste 2 GoalStack: achieveon achieveon achieveonon Subgoals 21 7

8 8 22 Ste 3 State: clear clear on ontable ontable handemty GoalStack: achieveclearholding alystack achieveon achieveonon oerator reconditions Plan: 23 Ste 4 State: clear clear on ontable ontable handemty GoalStack: achieveholding achieveclear achieveclearholding alystack achieveon achieveonon Subgoals Plan: 24 Ste 5 State: clear clear on ontable ontable handemty GoalStack: achievehandemtyclearony alyunstacky achieveclear achieveclearholding alystack achieveon achieveonon Plan:

9 9 25 Ste 6 State: clear ontable ontable holding clear GoalStack: achieveclear achieveclearholding alystack achieveon achieveonon Plan: Unstack 26 Ste 7 State: ontable ontable clear on clear handemty GoalStack: achieveon achieveonon Plan: Unstack Stack 27 Ste 8 State: ontable ontable clear on clear handemty GoalStack: achieveclearholding alystack achieveonon Plan: Unstack Stack

10 10 28 Ste 9 State: ontable ontable clear on clear handemty GoalStack: achieveholding achieveclear achieveclearholding alystack achieveonon Plan: Unstack Stack 29 Ste 10 State: ontable ontable clear on clear handemty GoalStack: achieveontableclearhandemty alyicku achieveclear achieveclearholding alystack achieveonon Plan: Unstack Stack 30 Ste 11 State: ontable on clear holding GoalStack: achieveclear achieveclearholding alystack achieveonon Plan: Unstack Stack Picku

11 State: Plan: ontable Unstack on Stack on Picku clear Stack handemty Ste 12 GoalStack: achieveonon 31 State: ontable on on clear handemty Plan: Unstack Stack Picku Stack GoalStack: Ste 13 DONE 32 Progression Planning Initial State: The initial state for lanning corresonds to the initial search state. ctions: lication actions are those whose reconditions are met by the current state. Successor state results from alying EFFETS list. Goal Test: hecks whether goal state is achieved. Ste ost: Tyically unit cost but any cost function can be used. ny comlete search algorithm can be used to solve

12 Irrelevant ctions Forward rogression lanning considers all alicable actions from a state. Many of these actions are likely to be irrelevant for the roblem. Potentially high branching factor can bog down search. an imrove the situation with a good heuristic as in any informed search. 34 ranching Factor onsider task get milk bananas and cordless drill. Progression lanning tends to have trouble. Start Pet Store School Market Parrot Dog lass Slee Read Tuna Milk Finish Sit Read 35 Regression Planning Hels with the irrelevant action roblem. Only relevant actions considered based on definition: n action is relevant to a conjunctive goal if it achieves one of the conjuncts of the goal. Regression involves matching EFFETS in rules satisfying goals thus making relevant. First identify states from which alying an action will yield goal or goal conjunct. dd new actions reconditions to goal descrition. Delete ositive effects from goal descrition. onsistent actions do not undo any desired literal

13 Goal Interaction Most lanners assume goals to be achieved are indeendent. Sometimes this is not true. Resulting interaction of goals can result in infinite loos or the inability to create a lan. 37 Sussman nomaly Initial State Goal State Solving on will be undone when solving on Solving on will be undone when solving on 38 Heuristics oth rogression and regression lanning benefit greatly from good heuristics. Neither rogression nor regression lanning are efficient without heuristics. In fact lanning is PSPE-comlete unless limited to only ositive reconditions and single effects. Recent advances in defining heuristics have enabled many ractical lanning roblems to be solved

14 Relaxation Note that we have exlicit reresentations of both reconditions and effects. We will modify these to derive a simler lanning roblem. One aroach remove all reconditions from actions i.e. make all actions alicable at all times. hn = # unsatisfied subgoals? Not quite. Negative interactions one action canceling out another. Single actions may achieve multile goals. 40 Subgoal Indeendence ssume ure divide-and-conquer will work Estimate cost of solving as sum of cost of solving each subgoal indeendently. Note that this can be either otimistic or essimistic. Otimistic when there are negative interactions between sublans that must be corrected. Pessimistic when sublans contain redundant actions e.g. actions from two sublans could be relaced with another single action. 41 Minimal Set over First relax the roblem by ignoring reconditions. Then further relax the roblem by removing negative effects. Finally count the minimum number of actions required such that the union of the actions ositive effects satisfies the goal. Goal ctionxeffet: P ctionyeffet: Q ctionzeffet: P Q Minimal set cover given by {X Y} =

15 Emty Delete List an also relax roblems by removing negative effects without removing reconditions. Examle: If action has effect it just has effect in relaxed roblem. Negative interactions no longer matter since no action can delete literals achieved by another action. Requires solving the new lanning roblem. Heuristic is just number of stes to solve the roblem. In ractice this aroach is usually worthwhile. 43 Total Order vs Partial Order Total-Order Planner: a lanner that maintains a artial solution as a totallyordered list of stes found so far. lso known as a linear lanner. Partial-Order Planner: a lanner that only reresents artial-order constraints on stes. lso known as a non-linear lanner. STRIPS is a total-order lanner. 44 Princile of Least ommitment Never make a choice unless required to do so. In lanning never order the stes unless the order is required. Thus ordering constraints define order of stes in a lan. Leads to artial-order lanning

16 Reresenting Partial-Order Plans Reresented as a grah. Each node is a ste in the lan. Each arc reresents a temoral constraint between two stes. S1 S2 S5 S3 S4 46 Examle S1 S2 S5 S3 S4 Reresents three total-order lans: 1. [S1 S2 S3 S4 S5] 2. [S1 S3 S2 S4 S5] 3. [S1 S3 S4 S2 S5] 47 Examle 2 Partial Order Plan On On Start Finish On On 48 16

17 Examle 2 Total Order Plans Start Finish Start Finish Start Finish Start Finish Start Finish Start Finish 49 omonents Each artial order lan has the following comonents: set of actions that make u the lan. set of ordering constraints of the form before where and are actions. Note this does not require to be immediately before. set of causal links of the form achieves for where is a redicate that is now satisfied by erforming action. Note that is also a recondition for that is now satisfied. Note: Once is satisfied a new action cannot be added that conflicts with this causal link. set of oen reconditions i.e. reconditions not achieved by some action in the lan. 50 roach Search in lan-sace. Start node in lan-sace consists of a lan with two connected seudo-nodes. Start P: None E: all ositive literals defining initial state Finish P: literals defining the conjunctive goal E: None 51 17

18 Searching in Plan-Sace There are two main reasons why a lan may not be a solution. Unsatisfied goal There is a goal or subgoal that is not satisfied by the current lan stes. Possible threat lan ste could cause the undoing of a needed goal if that ste is done at the wrong time. Define lan modification oerators to detect and fix these roblems. 52 Examle Setting the Table Goal: {ontablecloth outglasses outplates outsilver} Initial State: cleartable Oerators lay-tablecloth P: cleartable E: ontablecloth cleartable ut-outx P: None E: outx cleartable 53 Ste 1 Start Finish 54 18

19 Ste 2 Insert the 4 unsolved goals in Finish Start S1: lay-tablecloth Finish S2: ut-outglasses S3: ut-outplates S4: ut-outsilver 55 Threat Precondition to S1 is cleartable. S2 S3 and S4 do not have this as a recondition. Performing S2 S3 or S4 before S1 would revent S1 from ever being erformed. Need to add a temoral constraint to revent this from haening. 56 Ste 3 dd temoral constraints Start S1: lay-tablecloth Finish S2: ut-outglasses S3: ut-outplates S4: ut-outsilver ny total order satisfying above is legal; therefore this is a comlete lan

20 Partial-Order Planning lgorithm function POPinitial goal goal oerators returns lan lan lan lan MakeMinimalPlaninitial goal goal do do if if Solution?lan return lan lan S need need re-s SelectSubgoallan hooseolan oerators S need need re-s ResolveThreatslan end_do 58 Partial-Order Planning lgorithm function SelectSubgoallan returns S need need re-s ick icka lan lan ste ste S need from need from Steslan with with a recondition re-s not not yet yet achieved return S need need re-s 59 Partial-Order Planning lgorithm rocedure hooseolan oerators S need need re-s choose ste ste S add from add from oerators or or Steslan that that has has re-s as as an an effect. if if no no such such ste ste fail fail add add link link S add -re-s-> add S need to need to Linkslan add add constraint S add < add S need to need to Orderingslan if if S add is add is newly added ste ste from from oerators add add S add to add to Steslan add add Start Start < S add < add Finish to to Orderingslan end_if 60 20

21 Partial-Order Planning lgorithm rocedure ResolveThreatslan for for each each S threat threatening threat link link S i -re-s-> i S j j in in Linkslan do do choose either Demote: dd dd S threat < threat S i to i to Orderingslan Promote: dd dd S j < j S threat to threat to Orderingslan if if not not onsistentlan fail fail end_do 61 hanging a Flat Tire InitFlatxle SareTrunk GoalSarexle ctionremovesaretrunk PREOND: SareTrunk EFFET: SareTrunk SareGround ctionremoveflatxle PREOND: Flatxle EFFET: Flatxle FlatGround ctionputonsarexle PREOND: SareGround Flatxle EFFET: SareGround Sarexle ctionleaveovernight PREOND: EFFET: SareGround Sarexle SareTrunk FlatGround Flatxle 62 hanging a Flat Tire Start with the initial lan containing a Start action effects: SareTrunk Flatxle and a Finish action recondition: Sarexle. First ick the only oen recondition namely Sarexle. The only alicable action is PutOnSarexle. Next ick the SareGround recondition of the PutOn action. gain there is only one alicable action RemoveSareTrunk. SareTrunk RemoveSareTrunk Sarexle SareTrunk SareGround Start PutOnSarexle Finish Flatxle Flatxle 63 21

22 hanging a Flat Tire Now ick Flatxle recondition of the PutOn action. Suose we choose LeaveOvernight as the action. The effect includes SareGround but this conflicts with the causal link Sare Ground Remove Sare Trunk PutOn Sare xle Now we add ordering constraint LeaveOvernight before RemoveSareTrunk. 64 hanging a Flat Tire SareTrunk RemoveSareTrunk Sarexle SareTrunk SareGround Start PutOnSarexle Finish Flatxle Flatxle LeaveOvernight Flatxle FlatGround Sarexle SareGround SareTrunk 65 hanging a Flat Tire Only one oen recondition remains SareTrunk which is a recondition of RemoveSareTrunk. Only one action can achieve this the Start action. Unfortunately we have a conflict between the causal link between Start and Remove and the SareTrunk effect of LeaveOvernight. Note we cannot demote the LeaveOvernight action to recede Start and we cannot romote it to follow Remove. This leads to a backtrack to remove LeaveOvernight from the lan altogether. Following in this manner yields the final lan

23 hanging a Flat Tire SareTrunk RemoveSareTrunk Sarexle SareTrunk SareGround Start PutOnSarexle Finish Flatxle Flatxle Flatxle RemoveFlatxle 67 Planning Grahs s we see lanning is a search roblem. We would like to be able to aly search heuristics to imrove the rocess. One aroach is to construct a grah of the search sace and use this to guide search. This leads to the concet of a lanning grah. 68 Planning Grahs Planning grahs are constructed as a sequence of levels. Each level contains a set of literals and a set of actions. The literals are those that could be true at that time ste. The actions are those that could have their reconditions satisfied at that time ste. Planning grahs work only for roositional lanning roblems

24 onstructing Planning Grahs Start with state level S 0 reresenting the roblem s initial state. Insert action level 0 and lace all actions whose reconditions are satisfied in the revious level. onnect each action to its reconditions in S 0 and to its effects in S 1. This introduces new literals into S 1 not found in S 0. ontinue until the grah is filled out. 70 Persistent ctions We need to reresent ersistence like frame axioms. Persistent actions are actions that have the same reconditions and effects. Thus ersistent action has reconditions and effects. These are reresented in lanning grahs with small boxes. 71 Mutual Exclusion articular level shows all actions that could occur in the corresonding state. The level also records conflicts between actions that could revent them from occurring together. These conflicts are reresented through mutual exclusion mutex links. These are shown as gray links in the lanning grah

25 Mutex Links Mutex links exist between two actions at a given level if any of the following holds: Inconsistent effects: One action negates an effect of another action. Interference: One of the effects of an action is the negation of a recondition of another action. ometing needs: One of the reconditions of an action is mutually exclusive with the recondition of another action. Mutex links exist between two literals if one is the negation of the other or if each ossible air of actions that could achieve the literals is mutually exclusive inconsistent suort. 73 GRPHPLN Given a lanning grah it is ossible to extract a lan directly from the grah. The rocess follows in two main stes that alternate in a loo: heck whether all the goal literals are resent in the current level with no mutex links between any air of them. If this holds attemt to extract the lan; otherwise exand the grah by adding the actions for the current level and the state literals for the next level. 74 GRPHPLN function GRPHPLNroblem returns solution or failure grah INITIL-PLNNING-GRPHroblem goals GOLS[roblem] loo do if goals all non-mutex in last level of grah then do solution EXTRT-SOLUTIONgrah goals LENGTHgrah if solution failure then return solution else if NO-SOLUTION-POSSILEgrah then return failure grah EXPND-GRPHgrah roblem 75 25

26 Sare Tire Planning Grah 76 26

CRIKEY - A Temporal Planner Looking at the Integration of Scheduling and Planning

CRIKEY - A Temporal Planner Looking at the Integration of Scheduling and Planning CRIKEY - A Temoral Planner Looking at the Integration of Scheduling and Planning Keith Halsey and Derek Long and Maria Fox University of Strathclyde Glasgow, UK keith.halsey@cis.strath.ac.uk Abstract For

More information

Lecture 2: Linear vs. Branching time. Temporal Logics: CTL, CTL*. CTL model checking algorithm. Counter-example generation.

Lecture 2: Linear vs. Branching time. Temporal Logics: CTL, CTL*. CTL model checking algorithm. Counter-example generation. CS 267: Automated Verification Lecture 2: Linear vs. Branching time. Temoral Logics: CTL, CTL*. CTL model checking algorithm. Counter-examle generation. Instructor: Tevfik Bultan Linear Time vs. Branching

More information

An Algorithm for Probabilistic Least{Commitment Planning 3. Nicholas Kushmerick Steve Hanks Daniel Weld. University ofwashington Seattle, WA 98195

An Algorithm for Probabilistic Least{Commitment Planning 3. Nicholas Kushmerick Steve Hanks Daniel Weld. University ofwashington Seattle, WA 98195 To aear, AAAI-94 An Algorithm for Probabilistic Least{Commitment Planning 3 Nicholas Kushmerick Steve Hanks Daniel Weld Deartment of Comuter Science and Engineering, FR{35 University ofwashington Seattle,

More information

Chapter 11 Multiway Search Trees

Chapter 11 Multiway Search Trees Chater 11 Multiway Search Trees m-way Search Trees B-Trees B + -Trees C-C Tsai P.1 m-way Search Trees Definition: An m-way search tree is either emty or satisfies the following roerties: The root has at

More information

This is an author-deposited version published in: Eprints ID: 15989

This is an author-deposited version published in:   Eprints ID: 15989 Oen Archive TOULOUSE Archive Ouverte (OATAO) OATAO is an oen access reository that collects the work of Toulouse researchers and makes it freely available over the web where ossible. This is an author-deosited

More information

Complexity Results in Epistemic Planning

Complexity Results in Epistemic Planning Comlexity Results in Eistemic Planning Thomas Bolander, DTU Comute, Tech Univ of Denmark Joint work with: Martin Holm Jensen and Francois Schwarzentruer Comlexity Results in Eistemic Planning. 1/9 Automated

More information

Reinforcing Visual Grouping Cues to Communicate Complex Informational Structure

Reinforcing Visual Grouping Cues to Communicate Complex Informational Structure 8 IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS, VOL. 20, NO. 12, DECEMBER 2014 1973 Reinforcing Visual Grouing Cues to Communicate Comlex Informational Structure Juhee Bae and Benjamin Watson

More information

The Application of a Cognitive Diagnosis Model via an. Analysis of a Large-Scale Assessment and a. Computerized Adaptive Testing Administration

The Application of a Cognitive Diagnosis Model via an. Analysis of a Large-Scale Assessment and a. Computerized Adaptive Testing Administration The Alication of a Cognitive Diagnosis Model via an Analysis of a Large-Scale Assessment and a Comuterized Adative Testing Administration by Meghan Kathleen McGlohen, B.S., M. A. Dissertation Presented

More information

Objectives. 6.3, 6.4 Quantifying the quality of hypothesis tests. Type I and II errors. Power of a test. Cautions about significance tests

Objectives. 6.3, 6.4 Quantifying the quality of hypothesis tests. Type I and II errors. Power of a test. Cautions about significance tests Objectives 6.3, 6.4 Quantifying the quality of hyothesis tests Tye I and II errors Power of a test Cautions about significance tests Further reading: htt://onlinestatbook.com/2/ower/contents.html Toics:

More information

CS 730/730W/830: Intro AI

CS 730/730W/830: Intro AI CS 730/730W/830: Intro AI 1 handout: slides Wheeler Ruml (UNH) Lecture 18, CS 730 1 / 15 Comparison Extensions Setting Break Wheeler Ruml (UNH) Lecture 18, CS 730 2 / 15 Comparison Comparison Extensions

More information

Popular Application. Planning & Logic. Overview. Logistics. Planning. CSE 473 Automated Planning. Dan Weld (With slides by UW AI faculty & Dana Nau

Popular Application. Planning & Logic. Overview. Logistics. Planning. CSE 473 Automated Planning. Dan Weld (With slides by UW AI faculty & Dana Nau SE 473 utomated Planning Poula lication Dan Weld (With slides by UW I faculty & Dana Nau I have a lan - a lan that cannot ossibly fail. - Insecto lousseau Mausam Oveview Planning & Logic Intoduction &

More information

Remaining Useful Life Prediction of Rolling Element Bearings Based On Health State Assessment

Remaining Useful Life Prediction of Rolling Element Bearings Based On Health State Assessment Remaining Useful Life Prediction of Rolling Element Bearings Based On Health State Assessment Zhiliang Liu, Ming J. Zuo,2, and Longlong Zhang School of Mechanical, Electronic, and Industrial Engineering,

More information

Author's personal copy

Author's personal copy Vision Research 48 (2008) 1837 1851 Contents lists available at ScienceDirect Vision Research journal homeage: www.elsevier.com/locate/visres Bias and sensitivity in two-interval forced choice rocedures:

More information

Cost Advantages of an Ad Hoc Angioplasty Strategy

Cost Advantages of an Ad Hoc Angioplasty Strategy 321 Cost Advantages of an Angiolasty Strategy CHITURU ADELE, MD,* PAUL T. VAITKUS, MD, FACC,* SUSANNAH K. WELLS, JONATHAN B. ZEHNACKER Burlington, Vermont Objectives. We sought to determine the cost advantage

More information

Merging of Experimental and Simulated Data Sets with a Bayesian Technique in the Context of POD Curves Determination

Merging of Experimental and Simulated Data Sets with a Bayesian Technique in the Context of POD Curves Determination 5 th Euroean-American Worksho on Reliability of NDE Lecture 5 Merging of Exerimental and Simulated Data Sets with a Bayesian Technique in the Context of POD Curves Determination Bastien CHAPUIS *, Nicolas

More information

Cocktail party listening in a dynamic multitalker environment

Cocktail party listening in a dynamic multitalker environment Percetion & Psychohysics 2007, 69 (1), 79-91 Cocktail arty listening in a dynamic multitalker environment DOUGLAS S. BRUNGART AND BRIAN D. SIMPSON Air Force Research Laboratory, Wright-Patterson Air Force

More information

Chapter 4: One Compartment Open Model: Intravenous Bolus Administration

Chapter 4: One Compartment Open Model: Intravenous Bolus Administration Home Readings Search AccessPharmacy Adv. Search Alied Bioharmaceutics & Pharmacokinetics, 7e > Chater 4 Chater 4: One Comartment Oen Model: Intravenous Bolus Administration avid S.H. Lee CHAPTER OBJECTIVES

More information

1Number and Algebra. Surds

1Number and Algebra. Surds Numer an Algera ffi ffi ( ), cue root ( ecimal or fraction value cannot e foun. When alying Pythagoras theorem, we have foun lengths that cannot e exresse as an exact rational numer. Pythagoras encountere

More information

The vignette, task, requirement, and option (VITRO) analyses approach to operational concept development

The vignette, task, requirement, and option (VITRO) analyses approach to operational concept development CAN UNCLASSIFIED The vignette, task, requirement, and otion (VITRO) analyses aroach to oerational concet develoment atrick W. Dooley, Yvan Gauthier DRDC Centre for Oerational Research and Analysis Journal

More information

SIMULATIONS OF ERROR PROPAGATION FOR PRIORITIZING DATA ACCURACY IMPROVEMENT EFFORTS (Research-in-progress)

SIMULATIONS OF ERROR PROPAGATION FOR PRIORITIZING DATA ACCURACY IMPROVEMENT EFFORTS (Research-in-progress) SIMLATIONS OF ERROR PROPAGATION FOR PRIORITIZING DATA ACCRACY IMPROEMENT EFFORTS (Research-in-rogress) Irit Askira Gelman niversity of Arizona Askirai@email.arizona.edu Abstract: Models of the association

More information

Do People s First Names Match Their Faces?

Do People s First Names Match Their Faces? First names and faces 1 Journal of Articles in Suort of the Null Hyothesis Vol. 12, No. 1 Coyright 2015 by Reysen Grou. 1539-8714 www.jasnh.com Do Peole s First Names Match Their Faces? Robin S. S. Kramer

More information

Research. Dental Hygienist Attitudes toward Providing Care for the Underserved Population. Introduction. Abstract. Lynn A.

Research. Dental Hygienist Attitudes toward Providing Care for the Underserved Population. Introduction. Abstract. Lynn A. Dental Hygienist Attitudes toward Providing Care for the Underserved Poulation Lynn A. Marsh RDH, EdD Introduction The Surgeon General s Reort on Oral Health identified barriers to care as restraining

More information

Cognitive Load and Analogy-making in Children: Explaining an Unexpected Interaction

Cognitive Load and Analogy-making in Children: Explaining an Unexpected Interaction Cognitive Load and Analogy-making in Children: Exlaining an Unexected Interaction Jean-Pierre Thibaut, Robert French, Milena Vezneva LEAD-CNRS, UMR50, University of Burgundy, FRANCE {jean-ierre.thibaut,

More information

Randomized controlled trials: who fails run-in?

Randomized controlled trials: who fails run-in? Rees et al. Trials (2016) 17:374 DOI 10.1186/s13063-016-1451-9 RESEARCH Oen Access Randomized controlled trials: who fails run-in? Judy R. Rees 1, Leila A. Mott 1, Elizabeth L. Barry 1, John A. Baron 1,2,

More information

PART - A 1. Define Artificial Intelligence formulated by Haugeland. The exciting new effort to make computers think machines with minds in the full and literal sense. 2. Define Artificial Intelligence

More information

The meaning of Beta: background and applicability of the target reliability index for normal conditions to structural fire engineering

The meaning of Beta: background and applicability of the target reliability index for normal conditions to structural fire engineering Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 21 (217) 528 536 6th International Worksho on Performance, Protection & Strengthening of Structures under Extreme Loading, PROTECT217,

More information

A modular neural-network model of the basal ganglia s role in learning and selecting motor behaviours

A modular neural-network model of the basal ganglia s role in learning and selecting motor behaviours Cognitive Systems Research 3 (2002) 5 13 www.elsevier.com/ locate/ cogsys A modular neural-network model of the basal ganglia s role in learning and selecting motor behaviours Action editors: Wayne Gray

More information

Fusing Procedural and Declarative Planning Goals for Nondeterministic Domains

Fusing Procedural and Declarative Planning Goals for Nondeterministic Domains Proceedings of the wenty-hird AAAI Conference on Artificial Intelligence (2008) Fusing Procedural and Declarative Planning Goals for Nondeterministic Domains Dzmitry Shaarau FBK-IRS, rento, Italy shaarau@fbk.eu

More information

FC Boulder Off-Season Strength and Conditioning Program Summer year olds ONLY Overview

FC Boulder Off-Season Strength and Conditioning Program Summer year olds ONLY Overview FC Boulder Off-Season Strength and Conditioning Program Summer 2014 14-18 year olds ONLY Overview 1. It takes a year round eriodized rogram secific to an individual in order to truly be beneficial to long

More information

Presymptomatic Risk Assessment for Chronic Non- Communicable Diseases

Presymptomatic Risk Assessment for Chronic Non- Communicable Diseases Presymtomatic Risk Assessment for Chronic Non- Communicable Diseases Badri Padhukasahasram 1 *. a, Eran Halerin 1. b c, Jennifer Wessel 1 d, Daryl J. Thomas 1 e, Elana Silver 1, Heather Trumbower 1, Michele

More information

SOME ASSOCIATIONS BETWEEN BLOOD GROUPS AND DISEASE

SOME ASSOCIATIONS BETWEEN BLOOD GROUPS AND DISEASE SOME ASSOCIATIONS BETWEEN BLOOD GROUPS AND DISEASE J. A. FRASER ROBERTS MX). D.Sc. F.R.C.P. Medical Research Council Clinical Genetics Research Unit Institute of Child Health The Hosital for Sick Children

More information

Estimating shared copy number aberrations for array CGH data: the linear-median method

Estimating shared copy number aberrations for array CGH data: the linear-median method University of Wollongong Research Online Faculty of Informatics - Paers (Archive) Faculty of Engineering and Information Sciences 2010 Estimating shared coy number aberrations for array CGH data: the linear-median

More information

Effect of training frequency on the learning curve on the da Vinci Skills Simulator

Effect of training frequency on the learning curve on the da Vinci Skills Simulator ORIGINAL ARTICLE Effect of training frequency on the learning curve on the da Vinci Skills Simulator Ute Walliczek, MD, 1 Arne F ortsch, 1 Phili Dworschak, MD, 2 Afshin Teymoortash, MD, 1 Magis Mandaathil,

More information

Anchor Selection Strategies for DIF Analysis: Review, Assessment, and New Approaches

Anchor Selection Strategies for DIF Analysis: Review, Assessment, and New Approaches Anchor Selection Strategies for DIF Analysis: Review, Assessment, and New Aroaches Julia Kof LMU München Achim Zeileis Universität Innsbruck Carolin Strobl UZH Zürich Abstract Differential item functioning

More information

Origins of Hereditary Science

Origins of Hereditary Science Section 1 Origins of Hereditary Science Key Ideas V Why was Gregor Mendel imortant for modern genetics? V Why did Mendel conduct exeriments with garden eas? V What were the imortant stes in Mendel s first

More information

Dental X-rays and Risk of Meningioma: Anatomy of a Case-Control Study

Dental X-rays and Risk of Meningioma: Anatomy of a Case-Control Study research-article2013 JDRXXX10.1177/0022034513484338 PERSPECTIVE D. Dirksen*, C. Runte, L. Berghoff, P. Scheutzel, and L. Figgener Deartment of Prosthetic Dentistry and Biomaterials, University of Muenster,

More information

Theory of mind in the brain. Evidence from a PET scan study of Asperger syndrome

Theory of mind in the brain. Evidence from a PET scan study of Asperger syndrome Clinical Neuroscience and Neuroathology NeuroReort 8, 97 20 (996) THE ability to attribute mental states to others ( theory of mind ) ervades normal social interaction and is imaired in autistic individuals.

More information

Risk and Rationality: Uncovering Heterogeneity in Probability Distortion

Risk and Rationality: Uncovering Heterogeneity in Probability Distortion Risk and Rationality: Uncovering Heterogeneity in Probability Distortion Adrian Bruhin Helga Fehr-Duda Thomas Eer February 17, 2010 Abstract It has long been recognized that there is considerable heterogeneity

More information

Automatic System for Retinal Disease Screening

Automatic System for Retinal Disease Screening Automatic System for Retinal Disease Screening Arathy.T College Of Engineering Karunagaally Abstract This work investigates discrimination caabilities in the texture of fundus images to differentiate between

More information

Decision Analysis Rates, Proportions, and Odds Decision Table Statistics Receiver Operating Characteristic (ROC) Analysis

Decision Analysis Rates, Proportions, and Odds Decision Table Statistics Receiver Operating Characteristic (ROC) Analysis Decision Analysis Rates, Proortions, and Odds Decision Table Statistics Receiver Oerating Characteristic (ROC) Analysis Paul Paul Barrett Barrett email: email:.barrett@liv.ac.uk htt://www.liv.ac.uk/~barrett/aulhome.htm

More information

Extensions to a Unified Theory of the Cognitive Architecture. Nishant Trivedi

Extensions to a Unified Theory of the Cognitive Architecture. Nishant Trivedi Extensions to a Unified Theory of the Cognitive Architecture by Nishant Trivedi A Thesis Presented in Partial Fulfillment of the Requirements for the Degree Master of Science Approved April 2011 by the

More information

Transitive Relations Cause Indirect Association Formation between Concepts. Yoav Bar-Anan and Brian A. Nosek. University of Virginia

Transitive Relations Cause Indirect Association Formation between Concepts. Yoav Bar-Anan and Brian A. Nosek. University of Virginia 1 Transitive Association Formation Running head: TRANSITIVE ASSOCIATION FORMATION Transitive Relations Cause Indirect Association Formation between Concets Yoav Bar-Anan and Brian A. Nosek University of

More information

The duration of the attentional blink in natural scenes depends on stimulus category

The duration of the attentional blink in natural scenes depends on stimulus category Vision Research 47 (2007) 597 7 www.elsevier.com/locate/visres The duration of the attentional blink in natural scenes deends on stimulus category Wolfgang Einhäuser a, *, Christof Koch a,b, Scott Makeig

More information

A Note on False Positives and Power in G 3 E Modelling of Twin Data

A Note on False Positives and Power in G 3 E Modelling of Twin Data Behav Genet (01) 4:10 18 DOI 10.100/s10519-011-9480- ORIGINAL RESEARCH A Note on False Positives and Power in G E Modelling of Twin Data Sohie van der Sluis Danielle Posthuma Conor V. Dolan Received: 1

More information

The Mississippi Social Climate of Tobacco Control,

The Mississippi Social Climate of Tobacco Control, The Mississii Social Climate of Tobacco Control, 2000-2005 Robert Cameron McMillen Nell Valentine Kathleen Gresham Elena Sabbatini Wolfgang Frese Arthur G. Cosby SSRC Social Science Research Center www.ssrc.msstate.edu

More information

Sampling methods Simple random samples (used to avoid a bias in the sample)

Sampling methods Simple random samples (used to avoid a bias in the sample) Objectives Samling methods Simle random samles (used to avoid a bias in the samle) More reading (Section 1.3): htts://www.oenintro.org/stat/textbook.h?stat_book=os Chaters 1.3.2 and 1.3.3. Toics: Samling

More information

Getting to Goal: Managed Care Strategies for Children, Adolescents, and Adults With ADHD

Getting to Goal: Managed Care Strategies for Children, Adolescents, and Adults With ADHD n osttest n Getting to Goal: Managed Care Strategies for Children, Adolescents, and Adults With ADHD Instructions There are no fees for articiating in and receiving CME credit for this activity. During

More information

Artificial Intelligence Programming Probability

Artificial Intelligence Programming Probability Artificial Intelligence Programming Probability Chris Brooks Department of Computer Science University of San Francisco Department of Computer Science University of San Francisco p.1/25 17-0: Uncertainty

More information

Relating mean blood glucose and glucose variability to the risk of multiple episodes of hypoglycaemia in type 1 diabetes

Relating mean blood glucose and glucose variability to the risk of multiple episodes of hypoglycaemia in type 1 diabetes Diabetologia (2007) 50:2553 2561 DOI 10.1007/s00125-007-0820-z ARTICLE Relating mean blood glucose and glucose variability to the risk of multile eisodes of hyoglycaemia in tye 1 diabetes E. S. Kilatrick

More information

Annie Quick and Saamah Abdallah, New Economics Foundation

Annie Quick and Saamah Abdallah, New Economics Foundation Inequalities in wellbeing Annie Quick and Saamah Abdallah, New Economics Foundation Abstract: This aer exlores the nature and drivers of inequality in wellbeing across Euroe. We used the first six rounds

More information

Internet-based relapse prevention for anorexia nervosa: nine- month follow-up

Internet-based relapse prevention for anorexia nervosa: nine- month follow-up Fichter et al. Journal of Eating Disorders 2013, 1:23 RESEARCH ARTICLE Oen Access Internet-based relase revention for anorexia nervosa: nine- month follow-u Manfred Maximilian Fichter 1,2*, Norbert Quadflieg

More information

carinzz prophylactic regimens

carinzz prophylactic regimens Genitourin Med 1997;73:139-143 Continuing medical education HIV Eidemiology Unit, Chelsea and Westminster Hosital, 369 Fulham Road, London SW10 9TH, UK P J Easterbrook Acceted for ublication 8 October

More information

Brain regions supporting intentional and incidental memory: a PET study

Brain regions supporting intentional and incidental memory: a PET study Learning and Memory NeuroReort 8, 283 287 (997) REGIONAL brain activity associated with intentional and incidental memory retrieval was studied with PET. Previously studied and new words were resented

More information

Effects of involuntary auditory attention on visual task performance and brain activity

Effects of involuntary auditory attention on visual task performance and brain activity Cognitive Neurosciences and Neurosychology Website ublication 24 Setember 1997 NeuroReort 8, 3233 3237 (1997) INVOLUNTARY attention to auditory stimulus changes during a visual discrimination task was

More information

Risk factors for post-colectomy adhesive small bowel obstruction

Risk factors for post-colectomy adhesive small bowel obstruction Original article Acta Medica Academica 2016;45(2):121-127 DOI: 10.5644/ama2006-124.167 Risk factors for ost-colectomy adhesive small bowel obstruction Edin Husarić 1, Šefik Hasukić 1, Nešad Hotić 1, Amir

More information

Kinesiology Taping reduces lymphedema of the upper extremity in women after breast cancer treatment: a pilot study

Kinesiology Taping reduces lymphedema of the upper extremity in women after breast cancer treatment: a pilot study DOI: 10.5114/m.2014.44997 Prz Menoauzalny 2014; 13(4): 221-226 Original aer Kinesiology Taing reduces lymhedema of the uer extremity in women after breast cancer treatment: a ilot study Iwona Malicka,

More information

GRUNDFOS DATA BOOKLET. Hydro Grundfos Hydro 2000 booster sets with 2 to 6 CR(E) pumps 50 Hz

GRUNDFOS DATA BOOKLET. Hydro Grundfos Hydro 2000 booster sets with 2 to 6 CR(E) pumps 50 Hz GRUNDFOS DATA OOKET ydro Grundfos ydro booster sets with 2 to 6 CR(E) ums z Contents Product data Performance range 3 ydro 4 Control 4 Functions 4 Alication and need 5 Water suly 5 Industry 5 Irrigation

More information

FOR NPP PERSONAL GAMMA RADIATION DOSIMETER ДКГ-05Д. Operation manual ФВКМ РЭ

FOR NPP PERSONAL GAMMA RADIATION DOSIMETER ДКГ-05Д. Operation manual ФВКМ РЭ 436210 ОКП SIENTIFIC AND PRODUCTION COMPANY DOZA FOR NPP PERSONAL GAMMA RADIATION DOSIMETER ДКГ-05Д Oeration manual ФВКМ.412113.005РЭ Table of contents 1 Dosimeter descrition and oeration...3 1.1 Purose

More information

Abstract. KEY WORDS: advanced glycation end products (AGEs), carboxymethyl-lysine (CML), frailty, sarcopenia, skin autofluorescence (SAF)

Abstract. KEY WORDS: advanced glycation end products (AGEs), carboxymethyl-lysine (CML), frailty, sarcopenia, skin autofluorescence (SAF) Online edition : ISSN 2188-3610 Print edition : ISSN 2188-3602 Received : August 23, 2017 Acceted : Setember 30, 2017 Published online : December 31, 2017 Review article Association between glycative stress,

More information

Regret theory and risk attitudes

Regret theory and risk attitudes J Risk Uncertain (2017) 55:147 175 htts://doi.org/10.1007/s11166-017-9268-9 Regret theory and risk attitudes Jeeva Somasundaram 1 Enrico Diecidue 1 Published online: 5 January 2018 Sringer Science+Business

More information

President s Message. In This Issue. Quick Links: AAAR Website Career Opportunities. The E-Newsletter of the American Association for Aerosol Research

President s Message. In This Issue. Quick Links: AAAR Website Career Opportunities. The E-Newsletter of the American Association for Aerosol Research P A R T I C U L A R S The E-Newsletter of the American Association for Aerosol Research SPRING 2018 AAAR Website Career Oortunities President s Message Dear Colleagues, The year is running fast as we reare

More information

Identification and low-complexity regime-switching insulin control of type I diabetic patients

Identification and low-complexity regime-switching insulin control of type I diabetic patients J. Biomedical cience and Engineering,, 4, 97-34 doi:.436/jbise..444 Published Online Aril (htt://www.cirp.org/journal/jbise/). Identification and low-comlexity regime-switching insulin control of tye I

More information

Differences in the local and national prevalences of chronic kidney disease based on annual health check program data

Differences in the local and national prevalences of chronic kidney disease based on annual health check program data Clin Ex Nehrol (202) 6:749 754 DOI 0.007/s057-02-0628-0 ORIGINAL ARTICLE Differences in the local and national revalences of chronic kidney disease based on annual health check rogram data Minako Wakasugi

More information

TO help 25.8 million Americans [1] with diabetes, a growing

TO help 25.8 million Americans [1] with diabetes, a growing 3108 IEEE TRANSACTIONS ON PARALLEL AND DISTRIBUTED SYSTEMS, VOL. 26, NO. 11, NOVEMBER 2015 Patient Infusion Pattern based Access Control Schemes for Wireless Insulin Pum System Xiali Hei, Member, IEEE,

More information

Plan Recognition through Goal Graph Analysis

Plan Recognition through Goal Graph Analysis Plan Recognition through Goal Graph Analysis Jun Hong 1 Abstract. We present a novel approach to plan recognition based on a two-stage paradigm of graph construction and analysis. First, a graph structure

More information

Patterns of Inheritance

Patterns of Inheritance atterns of Inheritance Introduction Dogs are one of man s longest genetic exeriments. Over thousands of years, humans have chosen and mated dogs with secific traits. The results : an incredibly diversity

More information

Introducing Two-Way and Three-Way Interactions into the Cox Proportional Hazards Model Using SAS

Introducing Two-Way and Three-Way Interactions into the Cox Proportional Hazards Model Using SAS Paer SD-39 Introducing Two-Way and Three-Way Interactions into the Cox Proortional Hazards Model Using SAS Seungyoung Hwang, Johns Hokins University Bloomberg School of Public Health ABSTRACT The Cox roortional

More information

An Empirical Study of Agent Programs

An Empirical Study of Agent Programs An Empirical Study of Agent Programs A Dynamic Blocks World Case Study in GOAL M. Birna van Riemsdijk and Koen V. Hindriks EEMCS, Delft University of Technology, Delft, The Netherlands {m.b.vanriemsdijk,k.v.hindriks}@tudelft.nl

More information

Comparison of Water Seal and Suction After Pulmonary Lobectomy: A Prospective, Randomized Trial

Comparison of Water Seal and Suction After Pulmonary Lobectomy: A Prospective, Randomized Trial GENERAL THORACIC Comarison of Water Seal and Suction After Pulmonary Lobectomy: A Prosective, Randomized Trial Alessandro Brunelli, MD, Marco Monteverde, MD, Alessandro Borri, MD, Michele Salati, MD, Rita

More information

Comparative judgments of animal intelligence and pleasantness

Comparative judgments of animal intelligence and pleasantness Memory & Cognition 1980, Vol. 8 (1), 39-48 Comarative judgments of animal intelligence and leasantness ALLAN PAIVIO and MARC MARSCHARK University of Western Ontario, London, Ontario N6A 5C2, Canada Symbolic

More information

The Mississippi Social Climate of Tobacco Control,

The Mississippi Social Climate of Tobacco Control, The Mississii Social Climate of Tobacco Control, 2000-2003 Robert Cameron McMillen Nell Valentine Wolfgang Frese Arthur G. Cosby SSRC Social Science Research Center www.ssrc.msstate.edu ACKNOWLEDGMENT

More information

An Intuitive Approach to Understanding the Attributable Fraction of Disease Due to a Risk Factor: The Case of Smoking

An Intuitive Approach to Understanding the Attributable Fraction of Disease Due to a Risk Factor: The Case of Smoking Int. J. Environ. Res. Public Health 2013, 10, 2932-2943; doi:10.3390/ijerh10072932 Article International Journal of Environmental Research and Public Health I 1660-4601 www.mdi.com/journal/ijerh An Intuitive

More information

Plan Recognition through Goal Graph Analysis

Plan Recognition through Goal Graph Analysis Plan Recognition through Goal Graph Analysis Jun Hong 1 Abstract. We present a novel approach to plan recognition based on a two-stage paradigm of graph construction and analysis. First, a graph structure

More information

BMC Medical Research Methodology

BMC Medical Research Methodology BMC Medical Research Methodology BioMed Central Research article A coarsened multinomial regression model for erinatal mother to child transmission of HIV Charlotte C Gard* and Elizabeth R Brown Oen Access

More information

Cardiology & Vascular Research

Cardiology & Vascular Research Research Article Cardiology & Vascular Research ISSN 2639-8486 Correlation of Limb Bioimedance to Echocardiograhic Indicators of Congestion in Patients with NYHA Class II/III Heart Failure Accardi AJ *,

More information

Title: Correlates of quality of life of overweight and obese patients: a pharmacy-based cross-sectional survey

Title: Correlates of quality of life of overweight and obese patients: a pharmacy-based cross-sectional survey Author's resonse to reviews Title: Correlates of quality of life of overweight and obese atients: a harmacy-based cross-sectional survey Authors: Laurent Laforest (laurent.laforest@chu-lyon.fr) Eric Van

More information

University of Groningen. Variations in working memory capacity Gulbinaite, Rasa

University of Groningen. Variations in working memory capacity Gulbinaite, Rasa University of Groningen Variations in working memory caacity Gulbinaite, Rasa IMPORTANT NOTE: You are advised to consult the ublisher's version (ublisher's PDF) if you wish to cite from it. Please check

More information

R programs for splitting abridged fertility data into a fine grid of ages using the quadratic optimization method

R programs for splitting abridged fertility data into a fine grid of ages using the quadratic optimization method Max-Planck-Institut für demografische Forschung Max Planck Institute for Demograhic Research Konrad-Zuse-Strasse 1 D-18057 Rostock Germany Tel +49 (0) 3 81 20 81-0 Fax +49 (0) 3 81 20 81-202 www.demogr.mg.de

More information

Surgical resection is the primary curative treatment modality

Surgical resection is the primary curative treatment modality ORIGINAL ARTICLE Use of a Surgical Secimen-Collection Kit to Imrove Mediastinal Lymh-Node Examination of Resectable Lung Cancer Raymond U. Osarogiagbon, MBBS, FACP,* Laura E. Miller, MD, Robert A. Ramirez,

More information

Chapter 2. Horm Behav Jul;60(2):

Chapter 2. Horm Behav Jul;60(2): Chater The newborn rat s stress system readily habituates to reeated and rolonged maternal searation, while continuing to resond to stressors in context deendent fashion. Nikolaos P. Daskalakis 1, Sanne

More information

The Model and Analysis of Conformity in Opinion Formation

The Model and Analysis of Conformity in Opinion Formation roceedings of the 7th WSEAS International Conference on Simulation, Modelling and Otimization, Beijing, China, Setember 5-7, 2007 463 The Model and Analysis of Conformity in Oinion Formation ZHANG LI,

More information

Isoflurane and postoperative respiratory depression following laparoscopic surgery: A retrospective propensity-matched analysis

Isoflurane and postoperative respiratory depression following laparoscopic surgery: A retrospective propensity-matched analysis BOSNIAN JOURNAL OF BASIC MEDICAL SCIENCES RESEARCH ARTICLE WWW.BJBMS.ORG and ostoerative resiratory deression following laaroscoic surgery: A retrosective roensity-matched analysis Alexandre N. Cavalcante,

More information

The Usage of Emergency Contraceptive Methods of Female Students in Hawassa University: A Case Study on Natural and Computational Science

The Usage of Emergency Contraceptive Methods of Female Students in Hawassa University: A Case Study on Natural and Computational Science American Journal of Theoretical and Alied Statistics 207; 6(): 6-7 htt://www.scienceublishinggrou.com/j/ajtas doi: 0.648/j.ajtas.207060.8 ISSN: 2326-8999 (Print); ISSN: 2326-9006 (Online) The Usage of

More information

Salutogenesis as a framework for improving health resources of adolescent boys

Salutogenesis as a framework for improving health resources of adolescent boys Scandinavian Journal of Public Health, 2009; 37: 525 531 ORIGINAL ARTICLE Salutogenesis as a framework for imroving health resources of adolescent boys MICHAL BRONIKOWSKI & MALGORZATA BRONIKOWSKA Deartment

More information

INFERENCING STRATEGIES

INFERENCING STRATEGIES INFERENCING STRATEGIES Table of Content Introduction Categories of Reasoning Inference Techniques Control Strategies Comparative Summary of Backward and Forward Chaining Conflict Resolution Goal Agenda

More information

IN a recent article (Iwasa and Pomiankowski 1999),

IN a recent article (Iwasa and Pomiankowski 1999), Coyright 001 by the Genetics Society of America The Evolution of X-Linked Genomic Imrinting Yoh Iwasa* and Andrew Pomiankowski *Deartment of Biology, Kyushu University, Fukuoka 81-8581, Jaan and Deartment

More information

Regularized Joint Estimation of Related VAR Models via Group Lasso

Regularized Joint Estimation of Related VAR Models via Group Lasso Research Article Regularized Joint Estimation of Related VAR Models via Grou Lasso Sriniov A *, and Michailidis G Deartment of Mathematics, University of Houston, Houston, Texas, USA Deartment of Statistics,

More information

TOOTH AGENESIS - THE PROBLEM AND ITS SOLVING IN OUR PRACTICE, PREVALENCE AND RELATION WITH OTHER DEFORMITIES.

TOOTH AGENESIS - THE PROBLEM AND ITS SOLVING IN OUR PRACTICE, PREVALENCE AND RELATION WITH OTHER DEFORMITIES. Journal of IMAB ISSN: 1312-773X htt://www.journal-imab-bg.org htt://dx.doi.org/10.5272/jimab.2015213.859 Journal of IMAB - Annual Proceeding (Scientific Paers) 2015, vol. 21, issue 3 TOOTH AGENESIS - THE

More information

Prefrontal cortex fmri signal changes are correlated with working memory load

Prefrontal cortex fmri signal changes are correlated with working memory load Cognitive Neuroscience and Neurosychology NeuroReort 8, 545 549 (997) WE investigated whether a nonsatial working memory (WM) task would activate dorsolateral refrontal cortex (DLPFC) and whether activation

More information

Lecture 2: Foundations of Concept Learning

Lecture 2: Foundations of Concept Learning Lecture 2: Foundations of Concept Learning Cognitive Systems - Machine Learning Part I: Basic Approaches to Concept Learning Version Space, Candidate Elimination, Inductive Bias last change October 18,

More information

Research Article Effects of Pectus Excavatum on the Spine of Pectus Excavatum Patients with Scoliosis

Research Article Effects of Pectus Excavatum on the Spine of Pectus Excavatum Patients with Scoliosis Hindawi Healthcare Engineering Volume 2017, Article ID 5048625, 6 ages htts://doi.org/10.1155/2017/5048625 Research Article Effects of Pectus Excavatum on the Sine of Pectus Excavatum Patients with Scoliosis

More information

A Computational Model of Counterfactual Thinking: The Temporal Order Effect

A Computational Model of Counterfactual Thinking: The Temporal Order Effect A Computational Model of Counterfactual Thinking: The Temporal Order Effect Clare R. Walsh (cwalsh@tcd.ie) Psychology Department, University of Dublin, Trinity College, Dublin 2, Ireland Ruth M.J. Byrne

More information

Course: Animals Production. Unit Title: Genetics TEKS: 130.3(C)(6)(B) Instructor: Ms. Hutchinson. Objectives:

Course: Animals Production. Unit Title: Genetics TEKS: 130.3(C)(6)(B) Instructor: Ms. Hutchinson. Objectives: Course: Animals roduction Unit Title: Genetics TEKS: 130.3(C)(6)() Instructor: Ms. Hutchinson Ojectives: After comleting this unit of instruction, students will e ale to: A. Exlain Gregor Mendel s contriution

More information

State-Trace Analysis of the Face Inversion Effect

State-Trace Analysis of the Face Inversion Effect State-Trace Analysis of the Face Inversion Effect Melissa Prince (Melissa.Prince@newcastle.edu.au) School of Psychology, The University of Newcastle University Drive, Callaghan, 2308, NSW Australia Andrew

More information

Fear of crime among university students: A research in Namik Kemal University

Fear of crime among university students: A research in Namik Kemal University IJRES 5 (2018) 70-76 ISSN 2059-1977 Fear of crime among university students: A research in Namik Kemal University Okşan Tandoğan 1 * and Birol Toçu 2 1 Namık Kemal Üniversity, Faculty of Fine Arts, Design

More information

Assessment of Growth Using Mandibular Canine Calcification Stages and Its Correlation with Modified MP3 Stages

Assessment of Growth Using Mandibular Canine Calcification Stages and Its Correlation with Modified MP3 Stages 10.5005/j-journals-10005-1050 IJCPD Assessment of Growth Using Mandibular Canine Calcification Stages and Its Correlation with Modified MP3 Stages ORIGINAL ARTICLE Assessment of Growth Using Mandibular

More information

Introduction. Subjects and Methods. Study design and patient population We reviewed patient s angiographic findings and cli-

Introduction. Subjects and Methods. Study design and patient population We reviewed patient s angiographic findings and cli- Original ORIGINAL Article ARTICLE Korean Circulation J 2006;36:178-183 ISSN 1738-5520 c 2006, The Korean Society of Circulation Utilization Pattern of Drug-Eluting Stents and Prognosis of Patients Who

More information

PII S (01)

PII S (01) Hemodynamic Changes With Right Lateral Decubitus Body ing in the Tilted Porcine Heart Paul F. Gründeman, MD, PhD, Cornelius Borst, MD, PhD, Cees W. J. Verlaan, Stefan Damen, MD, and Sabine Mertens, MD

More information

Bayesian design using adult data to augment pediatric trials

Bayesian design using adult data to augment pediatric trials ARTICLE Clinical Trials 2009; 6: 297 304 Bayesian design using adult data to augment ediatric trials David A Schoenfeld, Hui Zheng and Dianne M Finkelstein Background It can be difficult to conduct ediatric

More information

Numerous internal fixation techniques have been

Numerous internal fixation techniques have been See the corresonding editorial in this issue, 24 26. J J Neurosurg Pediatrics 9:000 000, 9:27 34, 2012 A comuted tomograhy based feasibility study of translaminar screw lacement in the ediatric thoracic

More information