Game Programming. Bing-Yu Chen National Taiwan University

Size: px
Start display at page:

Download "Game Programming. Bing-Yu Chen National Taiwan University"

Transcription

1 Game Programmig Big-Yu Che Natioal Taiwa Uiversity

2 Search o Blid search Breadth-First Search Depth-First Search o Heuristic search A* o Adversary search MiMax 2

3 Itroductio to Search o o Usig tree diagram (usually) to describe a search problem Search starts o Goal o Node i Goal ode g Successors o c 1, c 2, c 3 Depth o d = 0, 1, 2, Search problem Iput o o Descriptio of the iitial ad goal odes A procedure that produces the successors of a arbitrary ode Output o A legal sequece of odes startig with the iitial ode ad edig with the goal ode. i c 1 c 2 c 3 d = 1 g d = 2 d = 3 d = 4 3

4 Search Examples i Traditioal AI o Game playig Chess Backgammo o Fidig a path to goal The towers of Haoi Slidig tile puzzles o 8 puzzles o Simply fidig a goal -quees 4

5 Search Algorithm 1. Set L to be a list of the iitial odes. At ay give poit i time, L is a list of odes that have ot yet bee examied. 2. If L is empty, failed. Otherwise, pick a ode from L. 3. If is the goal ode, stop ad retur it ad the path from the iitial ode to. 4. Otherwise, remove from L ad add to L all of s childre, labelig each with its path from the iitial ode. 5. Retur to Step 2. 5

6 Depth-First Search o Always explorig the child of the most recetly expaded ode o Termial odes beig examied from left to right o If the ode has o childre, the procedure backs up a miimum amout before choosig aother ode to examie g 11 d = 1 d = 2 d = 3 d = 4 6

7 Depth-First Search o We stop the search whe we select the goal ode g. o Depth-first search ca be implemeted by pushig the childre of a give ode oto the frot of the list L i Step 4. of Search Algorithm. o Ad always choosig the first ode o L as the oe to expad. 7

8 Depth-First Search Algorithm 1. Set L to be a list of the iitial odes. 2. If L is empty, failed. Otherwise, pick a ode from L. 3. If is the goal ode, stop ad retur it ad the path from the iitial ode to. 4. Otherwise, remove from L ad add to the frot of L all of s childre, labelig each with its path from the iitial ode. 5. Retur to Step 2. 8

9 Breadth-First Search o The tree examied from top to dow, so every ode at depth d is examied before ay ode at depth d + 1. o We ca implemet breadth-first search by addig the ew odes to the ed of the 5 list L d = 1 d = 2 d = g 12 d = 4 9

10 Breadth-First Search Algorithm 1. Set L to be a list of the iitial odes. 2. If L is empty, failed. Otherwise, pick a ode from L. 3. If is the goal ode, stop ad retur it ad the path from the iitial ode to. 4. Otherwise, remove from L ad add to the ed of L all of s childre, labelig each with its path from the iitial ode. 5. Retur to Step 2. 10

11 Heuristic Search o Neither depth-first or breadth-first search o Explorig the tree i aythig resemblig a optimal order. o Miimizig the cost to solve the problem d = 1 d = 2 d = 3 4 g d = 4 11

12 Heuristic Search o Whe we pickig a ode from the list L i Step 2. of Search Algorithm, what we will do is to remove steadily from the root ode toward the goal by always selectig a ode that is as close to the goal as possible. Estimated by distace ad miimizig the cost? o A*! 12

13 Adversary Search o Assumptios Two-perso games i which the players alterate moves. They are games of perfect iformatio, where the kowledge available to each player is the same. o Examples : Tic-tac-toe Checkers Chess Go Othello Backgammo o Imperfect iformatio Pokers Bridge 13

14 MiMax a max ply Nodes with the maximizer to move are square; odes with the miimizer to move are circles -1 e b c d f 1 g -1 h i -1 j k 1 l m o mi max mi max mi Maximizer to achieve the Outcome of 1; miimizer to Achieve the outcome of -1 p q r

15 MiMax a 1 max -1 b c 1 d -1 mi -1-1 e f g h i -1 j k 1 l m o max mi max mi The maximizer wis! p q r

16 MiMax Idea 1. Expad the etire tree below. 2. Evaluate the termial odes as wis for the miimizer or maximizer. 3. Select a ulabelled ode all of whose childre have bee assiged values. If there is o such ode, retur the value assiged to the ode. 4. If the selected ode is oe at which the miimizer moves, assig it a value that is the miimum of the values of its childre. If it is a maximizig ode, assig it a value that is the maximum of the childre s values. Retur to Step 3. 16

17 MiMax Algorithm 1. Set L = { }, the uexpaded odes i the tree. 2. Let x be the 1st ode o L. If x = ad there is a value assiged to it, retur this value. 3. If x has bee assiged a value v x, let p be the paret of x ad v p the value curretly assiged to p. If p is a miimizig ode, set v p = mi(v p, v x ). If p is a maximizig ode, set v p = max(v p, v x ). Remove x from L ad retur to Step If x has ot bee assiged a value ad is a termial ode, assig it the value 1 or -1 depedig o whether it is a wi for the maximizer or miimizer respectively. Assig x the value 0 if the positio is a draw. Leave x o L ad retur to Step Otherwise, set v x to be if x is a maximizig ode ad + if x is a miimizig ode. Add the childre of x to the frot of L ad retur to Step 2. 17

18 MiMax o Some issues Draw Estimated value e() o e() = 1 : the ode is a wi for maximizer o e() = -1 : the ode is a wi for miimizer o e() = 0 : that is a draw o e() = -1 ~ 1 : the others Whe to decide stop the tree expadig further? 18

19 MiMax Algorithm 1. Set L = { }, the uexpaded odes i the tree. 2. Let x be the 1st ode o L. If x = ad there is a value assiged to it, retur this value. 3. If x has bee assiged a value v x, let p be the paret of x ad v p the value curretly assiged to p. If p is a miimizig ode, set v p = mi(v p, v x ). If p is a maximizig ode, set v p = max(v p, v x ). Remove x from L ad retur to Step If x has ot bee assiged a value ad is a termial ode, assig it the value 1 or -1 depedig o whether it is a wi for the maximizer or miimizer respectively. Assig x the value 0 if the positio is a draw. Leave x o L ad retur to Step Otherwise, set v x to be if x is a maximizig ode ad + if x is a miimizig ode. Add the childre of x to the frot of L ad retur to Step 2. 19

20 MiMax Algorithm (fial) 1. Set L = { }, the uexpaded odes i the tree. 2. Let x be the 1st ode o L. If x = ad there is a value assiged to it, retur this value. 3. If x has bee assiged a value v x, let p be the paret of x ad v p the value curretly assiged to p. If p is a miimizig ode, set v p = mi(v p, v x ). If p is a maximizig ode, set v p = max(v p, v x ). Remove x from L ad retur to Step If x has ot bee assiged a value ad either x is a termial ode or we have decided ot to expad the tree further, compute its value usig the evaluatio fuctio. Leave x o L ad retur to Step Otherwise, set v x to be if x is a maximizig ode ad + if x is a miimizig ode. Add the childre of x to the frot of L ad retur to Step 2. 20

21 Itroductio to Path Fidig o A commo situatio of game AI o Path plaig From start positio to the goal o Most popular techique A* (A Star) o 1968 o A search algorithm o Favorite teachig example : 15-pizzule o Algorithm that searches i a state space for the least costly path from start state to a goal state by examiig the eighborig states 21

22 Dijkstra vs. A* Without obstacle With obstacle Dijkstra A* 22

23 Dijkstra vs. A* o Dijkstra: compute the optimal solutio o Diskstra: search space much larger tha A* o A*: simple o A*: fast o A*: good result o A*: employ heuristic estimate to elimiate may paths with high costs -> speedup process to compute satisfactory shortest paths 23

24 A*: cost fuctios o Goal: compute a path from a start poit S to a goal poit G o Cost at poit : f() = g() + h() o g(): distace from the start poit S to the curret poit o h(): estimated distace from the curret poit to the goal poit G o f(): curret estimated cost for poit 24

25 A*: cost fuctios o o o o o o o The role of h() A major cost evaluatio fuctio of A* Guide the performace of A* d(): the actual distace betwee S ad G h() = 0 : A* is equivalet to Dijkstra algorithm h() <= d () : guaratee to compute the shortest path; the lower the value h(), the more ode A* expads h() = d () : follow the best path; ever expad aythig else; difficult to compute h() i this way! h() > d() : ot guaratee to compute a best path; but very fast h() >> g() : h() domiates -> A* becomes the Best First Search 25

26 A* Algorithm o Add START to OPEN list o while OPEN ot empty o get ode from OPEN that has the lowest f() o if is GOAL the retur path o move to CLOSED o for each ' = CaMove(, directio) o g(') = g() + 1 o calculate h(') o if ' i OPEN list ad ew ' is ot better, cotiue o if ' i CLOSED list ad ew ' is ot better, cotiue o remove ay ' from OPEN ad CLOSED o add as 's paret o add ' to OPEN o ed for o ed while o if we get to here, the there is No Solutio 26

27 Example Straight-lie distace to Bucharest Arad 366 Oradea Bucharest 0 71 Neamt Craiova 160 Dobreta 242 Zerid 87 Eforie Fagaras 178 Iasi Arad Giurgiu 77 Hirsova Sibiu 92 Fagaras Iasi Vaslui Lugoj 244 Rimicu Vilcea Mehadia 241 Neamt 234 Timisoara Lugoj Pitesti Oradea Hirsova Pitesti Mehadia 85 Rimicu Vilcea Urzicei Sibiu Bucharest Timisoara 329 Dobreta 90 Urzicei Craiova Eforie Vaslui 199 Giurgiu Zerid

28 A* Example Straight-lie distace to Bucharest Oradea 71 Neamt Zerid Iasi Arad Sibiu 92 Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

29 A* Example Straight-lie distace to Bucharest Oradea 71 Neamt +374 Zerid Iasi Arad Sibiu 92 Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

30 A* Example Straight-lie distace to Bucharest Oradea 71 Neamt +374 Zerid Iasi Arad Sibiu 92 Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

31 A* Example Straight-lie distace to Bucharest Oradea Neamt +374 Zerid Iasi Arad Sibiu Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

32 A* Example Straight-lie distace to Bucharest Oradea Neamt +374 Zerid Iasi Arad Sibiu Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

33 A* Example Straight-lie distace to Bucharest Oradea Neamt +374 Zerid Iasi Arad Sibiu Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

34 A* Example Straight-lie distace to Bucharest Oradea Neamt +374 Zerid Iasi Arad Sibiu Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

35 A* Example Straight-lie distace to Bucharest Oradea Neamt +374 Zerid Iasi Arad Sibiu Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

36 A* Example Straight-lie distace to Bucharest Oradea Neamt +374 Zerid Iasi Arad Sibiu Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

37 A* Example Straight-lie distace to Bucharest Oradea Neamt +374 Zerid Iasi Arad Sibiu Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

38 A* Example Straight-lie distace to Bucharest Oradea Neamt +374 Zerid Iasi Arad Sibiu Fagaras Vaslui Rimicu Vilcea Timisoara Lugoj Pitesti 70 Hirsova Mehadia Urzicei Bucharest Dobreta Craiova Eforie Giurgiu Arad 366 Bucharest 0 Craiova 160 Dobreta 242 Eforie 161 Fagaras 178 Giurgiu 77 Hirsova 151 Iasi 226 Lugoj 244 Mehadia 241 Neamt 234 Oradea 380 Pitesti 98 Rimicu Vilcea 193 Sibiu 253 Timisoara 329 Urzicei 80 Vaslui 199 Zerid

39 A* Algorithm o State Locatio Neighborig states o Search space Related to terrai format Grids Triagles or Covex Polygos Poits of Visibility o Cost estimate o Path Typical A* path Straight path Smooth path o Hierarchical path fidig 42

40 Search Space & Neighborig States o Rectagular Grid Use grid ceter o Quadtree Use grid ceter o Triagles or Covex Polygos Use edge midpoit Use triagle ceter Triagles Rectagular Grid Quadtree 43

41 Search Space & Neighborig States o Poits of Visibility (POV) o Geeralized cyliders Use itersectios Poits of Visibility Geeralized Cyliders 44

42 Cost Estimate o Cost fuctio CostFromStart CostToGoal o Miimum cost Distace traveled Time of traveled Movemet poits expeded Fuel cosumed Pealties for passig through udesired area Bouses for passig through desired area o Estimate To goal distace 45

43 Result Path Typical A* Path Straight Path Smooth Path (Catmull-Rom Splie) 46

44 Hierarchical Path Fidig o Break the terrai for path fidig to several oes hierarchically Room-to-Room 3D layered terrai Terrai LOD o Pros Speedup the search Solve the problem of layered path fidig 48

45 Path Fidig Challeges o Movig Goal Do you eed to fid path each frame? o Movig Obstacles Predictio Scheme o Complexity of the Terrai Hierarchical path fidig o Good Path 49

Heuristic search, A* CS171, Winter 2018 Introduction to Artificial Intelligence Prof. Richard Lathrop. Reading: R&N

Heuristic search, A* CS171, Winter 2018 Introduction to Artificial Intelligence Prof. Richard Lathrop. Reading: R&N Heuristic search, A* CS171, Winter 2018 Introduction to Artificial Intelligence Prof. Richard Lathrop Reading: R&N 3.5-3.7 Outline Review limitations of uninformed search methods Informed (or heuristic)

More information

Informed search algorithms

Informed search algorithms Revised by Hankui Zhuo, March 12, 2018 Informed search algorithms Chapter 4 Chapter 4 1 Outline Best-first search A search Heuristics Hill-climbing Simulated annealing Genetic algorithms (briefly) Local

More information

Heuris'c search, A* CS171, Fall 2016 Introduc'on to Ar'ficial Intelligence Prof. Alexander Ihler. Reading: R&N

Heuris'c search, A* CS171, Fall 2016 Introduc'on to Ar'ficial Intelligence Prof. Alexander Ihler. Reading: R&N Heuris'c search, A* CS171, Fall 2016 Introduc'on to Ar'ficial Intelligence Prof. Alexander Ihler Reading: R&N 3.5-3.7 Outline Review limita'ons of uninformed search methods Informed (or heuris/c) search

More information

Selectively Breeding Sheep

Selectively Breeding Sheep Selectively Breedig Sheep ame Part 1: atural Selectio ad Selective Breedig What is atural selectio? What is selective breedig? What are the advatages of selective breedig? Give a example of selective breedig

More information

Kuroda s Identities. We find that Kuroda s Identities can be very useful in making the implementation of Richard s transformations more practicable.

Kuroda s Identities. We find that Kuroda s Identities can be very useful in making the implementation of Richard s transformations more practicable. 4//7 Kurodas Idetities 1/7 Kuroda s Idetities We fid that Kuroda s Idetities ca be very useful i makig the implemetatio of Richard s trasformatios more practicable. Kuroda s Idetities essetially provide

More information

Introduction. Experimental Approach

Introduction. Experimental Approach Primig Effect of Melegestrol Acetate (MGA) ad Moesi o Puberty ad Subsequet Reproductive Performace i Crossbred Beef Heifers J. L. Roberts, R. P. Del Vecchio, G. T. Getry, Jr., D. Saders, P. E. Humes ad

More information

Cat owners survey Prepared for: Prepared by: Date of issue: Pam Whetnall Project Officer Dog and Cat Management Board

Cat owners survey Prepared for: Prepared by: Date of issue: Pam Whetnall Project Officer Dog and Cat Management Board Cat owers survey 2014 Prepared for: Pam Whetall Project Officer Dog ad Cat Maagemet Board Prepared by: Natasha Kapulski Research Associate for Marketig Sciece T. (08) 8302 0137 Date of issue: 7 April 2014

More information

Breeding, paternal behavior, and their interruptionin Betta splendens

Breeding, paternal behavior, and their interruptionin Betta splendens Aimal Learig & Behavior 1982,10 (2),145-151 Breedig, pateral behavior, ad their iterruptioi Betta spledes PAUL M. BRONSTEIN Uiversity ofmichiga, Flit, Michiga Seve experimets examied the reproductive activities

More information

Animal. nimals have always provided humans with food, clothing, and transportation, but today they're also

Animal. nimals have always provided humans with food, clothing, and transportation, but today they're also a Aimal Helpers a a! a aa a a a a aa a a a a a a o a a o a aa a t a a a a a a a a a a a a a a a a imals have always provided humas with food, clothig, ad trasportatio, but today they're also traied to

More information

City Unveils New Website

City Unveils New Website bulleti I f o r m a t i v e SUMMER 2013 City Uveils New Website Startig July 1, 2013, you will be able to look up your water usage history, your bill, ad pay olie. - Assistat City Maager Moica Irela cotets

More information

Niche Overlap and Diffuse Competition

Niche Overlap and Diffuse Competition Proc. Nat. Acad. Sci. USA Vol. 71, No. 5, pp. 21412145, May 1974 Niche Overlap ad Diffuse Competitio (desert lizards/resource partitioig/commuity structure/species diversity) ERIC R. PIANKA Departmet of

More information

April, 2018 vs. April, 2017

April, 2018 vs. April, 2017 Parterig with: The Isider s Isight Bechmark Report is a publicatio provided by the Veteriary Hospital Maagers Associatio (VHMA). The report tracks key ecoomic idicators to determie how VHMA member practices

More information

Approximating the position of a hidden agent in a graph

Approximating the position of a hidden agent in a graph Approximating the position of a hidden agent in a graph Hannah Guggiari, Alexander Roberts, Alex Scott May 13, 018 Abstract A cat and mouse play a pursuit and evasion game on a connected graph G with n

More information

Accelerate Your Antibody Discovery with High throughput Array SPR

Accelerate Your Antibody Discovery with High throughput Array SPR ccelerate Your tibod Discover with High throughput rra SPR December 10, 2018 Daiel ediger, PhD Seior Field pplicatios Scietist, Carterra Carterra Fouded i 2005, Salt Lake Cit, UT, as Wasatch Microfluidics

More information

Machine Learning.! A completely different way to have an. agent acquire the appropriate abilities to solve a particular goal is via machine learning.

Machine Learning.! A completely different way to have an. agent acquire the appropriate abilities to solve a particular goal is via machine learning. Machine Learning! A completely different way to have an agent acquire the appropriate abilities to solve a particular goal is via machine learning. Machine Learning! What is Machine Learning? " Programs

More information

ROMÂNIA VETERINARY CHECKS AT THIRD COUNTRY ENTRY POINTS (EP) OF ROMANIA I II III IV V VI VII VIII IX. Veterinary 1774/2002) Authority (CA) * Jimbolia

ROMÂNIA VETERINARY CHECKS AT THIRD COUNTRY ENTRY POINTS (EP) OF ROMANIA I II III IV V VI VII VIII IX. Veterinary 1774/2002) Authority (CA) * Jimbolia ROMÂNIA NATIONAL SANITARY VETERINARY AND FOOD SAFETY AUTHORITY IMPORT, EXPORT, TRANSIT AND INSPECTION BORDER DEPARTAMENT Bucuharest, Negustori no. 1B St., sect. 2, postal code 023951; phone: 004.021.315.78.75,

More information

Propuneri de proiect primite la termenul limită 4 martie Proiecte de mobilitate pentru învățământ superior

Propuneri de proiect primite la termenul limită 4 martie Proiecte de mobilitate pentru învățământ superior 1 2015-1-RO01-KA103-014140 UNIVERSITATEA 1 DECEMBRIE 1918 ALBA IULIA 1223208 2 2015-1-RO01-KA103-014118 UNIVERSITATEA AUREL VLAICU DIN ARAD Arad 1220421 3 2015-1-RO01-KA103-014359 Universitatea de Vest

More information

Bobcat Unit Study. Created by: Super Mommy To The Rescue

Bobcat Unit Study. Created by: Super Mommy To The Rescue Bobcat Unit Study Created by: Super Mommy To The Rescue Terms of Use: This unit was inspired from my kids. We took a trip to the zoo yesterday. I wanted to create a unit on their three favorite animals.

More information

David J. Lewkowicz. Robert Lickliter. New "fork State Institute for Basic Research in Developmental Disabilities

David J. Lewkowicz. Robert Lickliter. New fork State Institute for Basic Research in Developmental Disabilities Developmetal Psychology 9, Vol. 31. No. 4, 9-18 Copyright 9 by the America Psychological Associatio, Ic. OI2-149/9/S3.OO Itersesory Experiece ad Early Perceptual Developmet: Atteuated Preatal Sesory Stimulatio

More information

KRUUSE I. Rehabilitation Equipment KRUUSE. Rehabilitation Equipment. 3 rd Edition.

KRUUSE I. Rehabilitation Equipment KRUUSE. Rehabilitation Equipment. 3 rd Edition. KRUUSE I Rehabilitatio Equipmet KRUUSE Rehabilitatio Equipmet 3 rd Editio KRUUSE Rehabilitatio Equipmet We are pleased to lauch the 3rd KRUUSE Rehabilitatio Equipmet catalogue cotaiig our complete rage

More information

Pet Friendly Shelter Marion County, Florida. Jill Lancon, Animal Center Director

Pet Friendly Shelter Marion County, Florida. Jill Lancon, Animal Center Director Pet Friedly Shelter Mario Couty, Florida Jill Laco, Aimal Ceter Director jill.laco@mariocoutyfl.org 352-671-8709 Whe Disaster Strikes We ll Be Ready PURPOSE Provide a safe have for pet owers ad their domestic

More information

FALL Cat Corner...2 Dog Enrichment...3 We Have Rabbits!...4 How You Can Help...5

FALL Cat Corner...2 Dog Enrichment...3 We Have Rabbits!...4 How You Can Help...5 PAW TALK FALL 2017 Toga adopted October 2017 Cat Corer...2 Dog Erichmet...3 We Have Rabbits!...4 How You Ca Help...5 PROGRAM SPOTLIGHT PAW TALK FALL 2017 2 What is a Commuity Cat? By Patty Rusak, Commuity

More information

2010 Canadian Computing Competition Day 1, Question 1 Barking Dogs!

2010 Canadian Computing Competition Day 1, Question 1 Barking Dogs! Source file: dogs.c Day, Question Barking Dogs! You live in a neighbourhood of dogs. Dogs like dogs. Dogs like barking even better. But best of all, dogs like barking when other dogs bark. Each dog has

More information

South Carolina. VETERINARIAN UPDATE SOUTH CAROLINA ASSOCIATION OF VETERINARIANS NEWSLETTER Advancing the Science and Art of Veterinary Medicine

South Carolina. VETERINARIAN UPDATE SOUTH CAROLINA ASSOCIATION OF VETERINARIANS NEWSLETTER Advancing the Science and Art of Veterinary Medicine South Carolia VETERINARIAN UPDATE SOUTH CAROLINA ASSOCIATION OF VETERINARIANS NEWSLETTER Advacig the Sciece ad Art of Veteriary Medicie Volume 13, Issue 3 Autum 2015 I This Issue... SCAV Holds Aual Coferece

More information

Teach your dog to down

Teach your dog to down 4H SMAN 114 Oklahoma 4-H Teach your dog to down THE DOWN Down is one of the most basic behaviors that you should teach your dog. It is necessary for the obedience ring, canine good citizen testing and

More information

Contents. Introduction...3. Concept Webs: Topic/Main Idea and Details. Charts: Classifying. Sequence Webs: Sequence

Contents. Introduction...3. Concept Webs: Topic/Main Idea and Details. Charts: Classifying. Sequence Webs: Sequence Contents Introduction....3 Concept Webs: Topic/Main Idea and Details Fancy Fireworks....6 Things to Do in Maine...7 Picture a Pigeon....8 The Inside Story...9 State Stuff... 10 A Fast Laugh... 11 What

More information

KRUUSE I. Rehabilitation Equipment KRUUSE. Rehabilitation Equipment. 4 th Edition.

KRUUSE I. Rehabilitation Equipment KRUUSE. Rehabilitation Equipment. 4 th Edition. KRUUSE I Rehabilitatio Equipmet KRUUSE Rehabilitatio Equipmet 4 th Editio KRUUSE I Rehabilitatio Equipmet Cotet Page KRUUSE Rehab Dog Blakets... 4 KRUUSE Rehab Joit Protectors... 6 KRUUSE Rehab Weight

More information

CAT SWARM OPTIMIZATION FOR SINGLE STAGE SUPPLY CHAIN DISTRIBUTION SYSTEM WITH FIXED CHARGES

CAT SWARM OPTIMIZATION FOR SINGLE STAGE SUPPLY CHAIN DISTRIBUTION SYSTEM WITH FIXED CHARGES CAT SWARM OPTIMIZATION FOR SINGLE STAGE SUPPLY CHAIN DISTRIBUTION SYSTEM WITH FIXED CHARGES P. Maiara 1 ad V. Selladurai 2 1 Departet of Mechaical Egieerig, Kaaraj College of Egieerig ad Techology, Idia

More information

RESTORING VETERANS THROUGH COMPANIONSHIP THE STUDY BETWEEN RURAL AND URBAN CONTEXT ARCHITECTURE THESIS JACOB HAACK

RESTORING VETERANS THROUGH COMPANIONSHIP THE STUDY BETWEEN RURAL AND URBAN CONTEXT ARCHITECTURE THESIS JACOB HAACK RESTORIG VETERAS THROUGH COMPAIOSHIP THE STUDY BETWEE RURAL AD URBA COTEXT ARCHITECTURE THESIS JACOB HAACK THESIS ABSTRACT What are the benefits of a rehabilitation center located in a rural context compared

More information

Effect of the genealogic line on milk production and prolificacy of the ewes from Synthetic Population Bulgarian Milk

Effect of the genealogic line on milk production and prolificacy of the ewes from Synthetic Population Bulgarian Milk 158 Bulgaria Joural of Agricultural Sciece, 19 (No 1) 2013, 158-162 Agricultural Academy Effect of the geealogic lie o milk productio ad prolificacy of the ewes from Sythetic Populatio Bulgaria Milk T.

More information

by Jennifer Oxley and Billy Aronson

by Jennifer Oxley and Billy Aronson CANDLEWICK PRESS TEACHERS GUIDE About the Series by Jennifer Oxley and Billy Aronson Peg and Cat, stars of their own PBS Emmy Award winning animated TV series, zoom into picture books with adventures that

More information

CHARTING THE LATE CRETACEOUS SEAS: MOSASAUR RICHNESS AND MORPHOLOGICAL DIVERSIFICATION

CHARTING THE LATE CRETACEOUS SEAS: MOSASAUR RICHNESS AND MORPHOLOGICAL DIVERSIFICATION Joural of Vertebrate Paleotology 29(2):409 416, Jue 2009 # 2009 by the Society of Vertebrate Paleotology ARTICLE CHARTING THE LATE CRETACEOUS SEAS: MOSASAUR RICHNESS AND MORPHOLOGICAL DIVERSIFICATION MARCUS

More information

Solutions with Sika Systems. No more vibration

Solutions with Sika Systems. No more vibration Solutios with Sika Systems No more vibratio ost effective techology Faster placig with reduced labour ad equipmet No vibratio ad less fiishig Reduced oise i the eviromet Improved health ad safety coditio

More information

Winterfest is Back! CONTENTS. Inserted into this bulletin is the City s Popular Annual Financial Report for CONTENTS

Winterfest is Back! CONTENTS. Inserted into this bulletin is the City s Popular Annual Financial Report for CONTENTS I F O R M A T I V E WITER 2015 Witerfest is Back! A ew traditio i Grosse Poite Farms is the aual Witerfest o the Hill. This year s istallmet will take place o Saturday, Jauary 31, 2015, from 11 a.m. to

More information

Wild About Bears: A Game

Wild About Bears: A Game Bear Species Game Board Sun bear Giant panda Asiatic bear Sloth bear N. American black bear Spectacled bear Polar bear Brown bear Polar bear Wild About Bears: A Game Educator Instructions Let s face it,

More information

Python 3 Turtle graphics. Lecture 24 COMPSCI111/111G SS 2017

Python 3 Turtle graphics. Lecture 24 COMPSCI111/111G SS 2017 Python 3 Turtle graphics Lecture 24 COMPSCI111/111G SS 2017 Today s lecture The Turtle graphics package Brief history Basic commands Drawing shapes on screen Logo and Turtle graphics In 1967, Seymour Papert

More information

Scratch Lesson Plan. Part One: Structure. Part Two: Movement

Scratch Lesson Plan. Part One: Structure. Part Two: Movement Scratch Lesson Plan Scratch is a powerful tool that lets you learn the basics of coding by using easy, snap-together sections of code. It s completely free to use, and all the games made with scratch are

More information

//////////////////////////////////////////////////////////////////101

//////////////////////////////////////////////////////////////////101 //////////////////////////////////////////////////////////////////101 Aimal CSI: Gatherig the Evidece By Julie Miller Dowlig This article is writte for ew cruelty ivestigators ad ca also be used as a referece

More information

Cheetah Math Superstars

Cheetah Math Superstars Cheetah Math Superstars PARENTS: You may read the problem to your child and demonstrate a similar problem, but he/she should work the problems. Please encourage independent thinking and problem solving

More information

Social Change 101. April 14, ASPCA. All Rights Reserved.

Social Change 101. April 14, ASPCA. All Rights Reserved. Social Change 101 April 14, 2016 Presented by Amy Mills, CEO, Emancipet Find me on Twitter: @AMstation Email me: amy.mills@emancipet.org ASPCA Social Change has happened when there is a significant and

More information

2016 UAH Antibiograms

2016 UAH Antibiograms 2016 UAH Atibiograms Uiversity of Alberta Hospital Cross Cacer Istitute Stollery Childre s Hospital Departmet of Laboratory Medicie ad Pathology Itroductio The atibiograms preseted herei represet cumulative

More information

~~~***~~~ A Book For Young Programmers On Scratch. ~~~***~~~

~~~***~~~ A Book For Young Programmers On Scratch. ~~~***~~~ ~~~***~~~ A Book For Young Programmers On Scratch. Golikov Denis & Golikov Artem ~~~***~~~ Copyright Golikov Denis & Golikov Artem 2013 All rights reserved. translator Elizaveta Hesketh License Notes.

More information

Table of Contents BIG CATS 3 SPORTS 15 AFRICA 51 INSECTS 27 HUMAN BODY 63 TOP FIVE 39 THE OCEAN 75 WEATHER 87

Table of Contents BIG CATS 3 SPORTS 15 AFRICA 51 INSECTS 27 HUMAN BODY 63 TOP FIVE 39 THE OCEAN 75 WEATHER 87 Table of Contents BIG CATS 3 Hunting for Endings Language Arts Activity 7 Count the Cats! Mathematics Activity 8 African Wonderland Geography Activity 9 Big Cat Continents Geography Activity 10 Big Cat

More information

Course: Principles of AFNR. Unit Title: Sheep Selection TEKS: (C)(12)(D) Instructor: Ms. Hutchinson. Objectives:

Course: Principles of AFNR. Unit Title: Sheep Selection TEKS: (C)(12)(D) Instructor: Ms. Hutchinson. Objectives: Course: Principles of AFNR Unit Title: Sheep Selection TEKS: 130.2 (C)(12)(D) Instructor: Ms. Hutchinson Objectives: After completing this unit of instruction, students will be able to: A. List important

More information

A-FAVP.1 Foundations of Advanced Veterinary Practice

A-FAVP.1 Foundations of Advanced Veterinary Practice A-FAVP.1 Foundations of Advanced Veterinary Practice Credits: Provider: 10 (100 hours) Veterinary Postgraduate Unit School of Veterinary Science RCVS Content Covered Conceptual Outline The scope of the

More information

Vietnam - WSP Global Scaling up Handwashing Behavior Impact Evaluation, Baseline and Endline Surveys

Vietnam - WSP Global Scaling up Handwashing Behavior Impact Evaluation, Baseline and Endline Surveys Microdata Library Vietnam - WSP Global Scaling up Handwashing Behavior Impact Evaluation, Baseline and Endline Surveys 2009-2011 Water and Sanitation Program - World Bank Report generated on: July 19,

More information

S Fault Indicators. S.T.A.R. Type CR Faulted Circuit Indicator Installation Instructions. Contents PRODUCT INFORMATION

S Fault Indicators. S.T.A.R. Type CR Faulted Circuit Indicator Installation Instructions. Contents PRODUCT INFORMATION Fault Indicators S.T.A.R. Type CR Faulted Circuit Indicator Installation Instructions Service Information S320-75-1 Contents Product Information..........................1 Safety Information............................2

More information

PIGEONETICS LAB PART 1

PIGEONETICS LAB PART 1 PIGEONETICS LAB PART 1 Name: Period: Date: This activity will challenge you to use what you ve learned about Mendelian Traits, Punnett Squares, and Sex-Linkage, as well as some new types of complex inheritance,

More information

Games! June Seven Mathematical Games. HtRaMTC Paul Zeitz,

Games! June Seven Mathematical Games. HtRaMTC Paul Zeitz, Games! June 0 Seven Mathematical Games HtRaMTC Paul Zeitz, zeitz@usfca.edu For all but #7 below, two players alternate turns. The winner is the last player who makes a legal move. See if you can find a

More information

Writing Simple Procedures Drawing a Pentagon Copying a Procedure Commanding PenUp and PenDown Drawing a Broken Line...

Writing Simple Procedures Drawing a Pentagon Copying a Procedure Commanding PenUp and PenDown Drawing a Broken Line... Turtle Guide Contents Introduction... 1 What is Turtle Used For?... 1 The Turtle Toolbar... 2 Do I Have Turtle?... 3 Reviewing Your Licence Agreement... 3 Starting Turtle... 3 Key Features... 4 Placing

More information

Module 2: Beef Cattle. Judging Breeding Heifers

Module 2: Beef Cattle. Judging Breeding Heifers Module 2: Beef Cattle Judging Breeding Heifers Judging Beef Cattle Will Evaluate: Breeding Heifers Market Steers Do Not Judge Bulls at Regional 4-H Contest Learn Terms To Use: When judging breeding cattle

More information

IN THE GENERAL COURT OF JUSTICE SUPERIOR COURT DIVISION FILE NOS. 08 CRS 55147, Defendant.

IN THE GENERAL COURT OF JUSTICE SUPERIOR COURT DIVISION FILE NOS. 08 CRS 55147, Defendant. NORTH CAROLINA WILKES COUNTY IN THE GENERAL COURT OF JUSTICE SUPERIOR COURT DIVISION FILE NOS. 08 CRS 55147, 09 CRS 375-377 STATE OF NORTH CAROLINA, vs. EDWARD ANTHONY FARON, Defendant. CERTIFICATE OF

More information

General Judging Standards & Course Design for UKI

General Judging Standards & Course Design for UKI General Judging Standards & Course Design for UKI Submitting courses for approval Please submit your courses at least 2 weeks before the show directly to Laura laura@ukagility.com Send courses using Clean

More information

Grosse Pointe Farms Foundation Continues to Enhance Community

Grosse Pointe Farms Foundation Continues to Enhance Community MIC HIG AN MIC H IG A N THE CITY OF GROSSE POINTE FARMS I N F O R M A T I V E I N F O R M A T I V E WINTER 2018 Witerfest Returs to Pier Park A traditio i Grosse Poite Farms, Witerfest returs o Saturday,

More information

Mark Your Calendars for Winterfest!

Mark Your Calendars for Winterfest! MIC H IG A N THE CITY OF GROSSE POINTE FARMS WINTER 2019 I N F O R M A T I V E Mark Your Caledars for Witerfest! A traditio i Poite, Witerfest returs o Saturday, Jauary 12, 2019 from 12 p.m. to 4 p.m.

More information

Sikafloor Solutions for Industrial, Commercial and Public Building Areas

Sikafloor Solutions for Industrial, Commercial and Public Building Areas Sikafloor Solutios for Idustrial, Commercial ad Public Buildig Areas Iovatio & sice Cosistecy 1 9 1 0 Sikafloor Solutios for Idustrial ad Commercial Areas Highly Floorig Solutios for the Highest Aesthetic

More information

Chapter VII Non-linear SSI analysis of Structure-Isolated footings -soil system

Chapter VII Non-linear SSI analysis of Structure-Isolated footings -soil system Chapter VII 192 7.1. Introduction Chapter VII Non-linear SSI analysis of Structure-Isolated footings -soil system A program NLSSI-F has been developed, using FORTRAN, to conduct non-linear soilstructure

More information

Design of Low Power and High Speed Carry Select Adder Using Brent Kung Adder

Design of Low Power and High Speed Carry Select Adder Using Brent Kung Adder Design of Low Power and High Speed Carry Select Adder Using Brent Kung Adder Dr.K.Srinivasulu Professor, Dept of ECE, Malla Reddy Collage of Engineering. Abstract: The binary addition is the basic arithmetic

More information

Lecture 1: Turtle Graphics. the turtle and the crane and the swallow observe the time of their coming; Jeremiah 8:7

Lecture 1: Turtle Graphics. the turtle and the crane and the swallow observe the time of their coming; Jeremiah 8:7 Lecture 1: Turtle Graphics the turtle and the crane and the sallo observe the time of their coming; Jeremiah 8:7 1. Turtle Graphics The turtle is a handy paradigm for the study of geometry. Imagine a turtle

More information

A rapid survey of the herpetological fauna from Vaslui County (Romania) with the first record of the slow-worm (Anguis fragilis) in the region

A rapid survey of the herpetological fauna from Vaslui County (Romania) with the first record of the slow-worm (Anguis fragilis) in the region Herpetologica Romanica Vol. 3, 2009, pp. 25-30 ISSN: 1842-9203 Article No. 031104 A rapid survey of the herpetological fauna from Vaslui County (Romania) with the first record of the slow-worm (Anguis

More information

Winterfest on the Hill

Winterfest on the Hill MIC HIG AN MIC HIG AN I N F O R M A T I V E I N F O R M A T I V E FARMS POINTE GROSSE THE CITY OF MIC H IG A N Iserted ito this bulleti is the City s Popular Aual CONTENTS Fiacial Report for CONTENTS the

More information

PROBLEM SOLVING JUNIOR CIRCLE 01/09/2011

PROBLEM SOLVING JUNIOR CIRCLE 01/09/2011 PROBLEM SOLVING JUNIOR CIRCLE 01/09/2011 (1) Given two equal squares, cut each of them into two parts so that you can make a bigger square out of four parts that you got by cutting the two smaller squares.

More information

Think Rabbit. Virtual Manual 2014

Think Rabbit. Virtual Manual 2014 Thik Rabbit Virtual Maual 2014 Cotets Itroductio Thik Rabbit i the waitig room Thik Rabbit i the cosultig room Thik Rabbit i the operatig room Thik Rabbit durig hospitalisatio The Commercial View The Owers

More information

Design of High Speed Vedic Multiplier Using Carry Select Adder with Brent Kung Adder

Design of High Speed Vedic Multiplier Using Carry Select Adder with Brent Kung Adder Design of High Speed Vedic Multiplier Using Carry Select Adder with Brent Kung Adder Kathi Anoosha M.Tech(VLSI&ES), AVN Institute of Engineering and Technology. Sasi Kiran, M.Tech Assistant Professor,

More information

Genetics: Punnett Squares Practice Packet Bio Honors

Genetics: Punnett Squares Practice Packet Bio Honors 100 Points Name: Date: Period: Genetics: Punnett Squares Practice Packet Bio Honors Most genetic traits have a stronger, dominant allele and a weaker, recessive allele. In an individual with a heterozygous

More information

PYTHON FOR KIDS A Pl ayfu l I ntrodu ctio n to Prog r am m i ng J a s o n R. B r i g g s

PYTHON FOR KIDS A Pl ayfu l I ntrodu ctio n to Prog r am m i ng J a s o n R. B r i g g s PYTHON FO R K I D S A P l ay f u l I n t r o d u c t i o n to P r o g r a m m i n g Jason R. Briggs 4 Drawing with Turtles A turtle in Python is sort of like a turtle in the real world. We know a turtle

More information

SELECTED ASPECTS OF BURROWING OWL ECOLOGY AND BEHAVIOR

SELECTED ASPECTS OF BURROWING OWL ECOLOGY AND BEHAVIOR SLCTD ASPCTS OF BRROWING OWL COLOGY AND BHAVIOR DNNIS J. MARTIN1 Departmet of Biology iversity of New Meico Albqerqe, New Meico 87106 INTRODCTION field. All owls were weighed, ispected for ectopara- Pblicatios

More information

The Agility Coach Notebooks

The Agility Coach Notebooks s Volume Issues through 0 By Kathy Keats Action is the foundational key to all success. Pablo Piccaso This first volume of The Agility Coach s, available each week with a subscription from, have been compiled

More information

FOUR PAWS. ROMANIA: OVERVIEW CONDITIONS OF PUBLIC DOG SHELTERS March-May 2014

FOUR PAWS. ROMANIA: OVERVIEW CONDITIONS OF PUBLIC DOG SHELTERS March-May 2014 FOUR PAWS ROMANIA: OVERVIEW CONDITIONS OF PUBLIC DOG SHELTERS March-May 2014 ROMANIA: OVERVIEW - CONDITIONS OF PUBLIC DOG SHELTERS 2014 REPORT Contents: EXECUTIVE SUMMARY... 1 KEY FINDINGS... 3 LIST OF

More information

Alien Life Form (ALF Lab)

Alien Life Form (ALF Lab) Alien Life Form (ALF Lab) Criteria: Creating your ALF Points Earned Value Alien Characteristics Chart /6 Alien Gender Determination /1 Constructing Your ALF (diagram) /6 Alien Life Form II Questions /5

More information

Action Plan for North America. Sustainable Trade in Parrots

Action Plan for North America. Sustainable Trade in Parrots Actio Pla for North America Sustaiable Trade i Parrots Sustaiablefor Trade i Parrots:Cooperatio Actio Pla for North America Commissio Evirometal a Please cite as: CEC. 2017. Sustaiable Trade i Parrots:

More information

These small issues are easily addressed by small changes in wording, and should in no way delay publication of this first- rate paper.

These small issues are easily addressed by small changes in wording, and should in no way delay publication of this first- rate paper. Reviewers' comments: Reviewer #1 (Remarks to the Author): This paper reports on a highly significant discovery and associated analysis that are likely to be of broad interest to the scientific community.

More information

4-H Explorer Cavy Project Record Book

4-H Explorer Cavy Project Record Book 4-H Explorer Cavy Project Record Book Kent County 4-H Program Place a photo of you and your cavy here Name: 4-H Age (age on Jan 1 of current year): Number of years in project: 4-H Club: 4-H Mentor: MSU

More information

INTRODUCTION TO ANIMAL AND VETERINARY SCIENCE CURRICULUM. Unit 1: Animals in Society/Global Perspective

INTRODUCTION TO ANIMAL AND VETERINARY SCIENCE CURRICULUM. Unit 1: Animals in Society/Global Perspective Chariho Regional School District - Science Curriculum September, 2016 INTRODUCTION TO ANIMAL AND VETERINARY SCIENCE CURRICULUM Unit 1: Animals in Society/Global Perspective Students will gain an understanding

More information

CONNECTION TO LITERATURE

CONNECTION TO LITERATURE CONNECTION TO LITERATURE part of the CONNECTION series The Tale of Tom Kitten V/xi/MMIX KAMICO Instructional Media, Inc.'s study guides provide support for integrated learning, academic performance, and

More information

CS108L Computer Science for All Module 7: Algorithms

CS108L Computer Science for All Module 7: Algorithms CS108L Computer Science for All Module 7: Algorithms Part 1: Patch Destroyer Part 2: ColorSort Part 1 Patch Destroyer Model Overview: Your mission for Part 1 is to get your turtle to destroy the green

More information

Differentiated Activities for Teaching Key

Differentiated Activities for Teaching Key Grades 4--6 Differentiated Activities for Teaching Key Comprehension Skills 40+ Ready-to-Go Reproducibles That Help Students at Different Skill Levels All Meet the Same Standards Martin Lee and Marcia

More information

Bacteraemia in Maiduguri Metropolis, Nigeria: A 2005 to 2009 study of some causative pathogens and fluoroquinolones activities against them

Bacteraemia in Maiduguri Metropolis, Nigeria: A 2005 to 2009 study of some causative pathogens and fluoroquinolones activities against them ISSN: 2231-3354 Received o: 14-09-2011 Revised o: 18-09-2011 Accepted o: 21-09-2011 Bacteraemia i Maiduguri Metropolis, Nigeria: A 2005 to 2009 study of some causative pathoges ad fluoroquioloes activities

More information

B Handoko Daeng*, Analis Wisnu Wardhana**, Aris Widodo***, Hidayat Sujuti***, Karyono Mintaroem***, Edi Widjajanto***

B Handoko Daeng*, Analis Wisnu Wardhana**, Aris Widodo***, Hidayat Sujuti***, Karyono Mintaroem***, Edi Widjajanto*** Plasma CRH Level Differece Betwee Wistar Rats Exosed To Acute Stress Due To Predator ORIGINAL ARTICLE PLASMA CORTICOTROPINE RELEASING HORMONE (CRH) LEVEL DIFFERENCE BETWEEN WISTAR RATS EXPOSED TO ACUTE

More information

Genetics and Probability

Genetics and Probability Genetics and Probability Genetics and Probability The likelihood that a particular event will occur is called probability. The principles of probability can be used to predict the outcomes of genetic crosses.

More information

Another major risk is in cutting their hair at an early age because then your Pom pup will never grow their full adult coat.

Another major risk is in cutting their hair at an early age because then your Pom pup will never grow their full adult coat. SPINNING POM TOP 10 HAIRCUTS FOR POMERANIANS INTRODUCTION If you re anything like me, your little Pom is one of the most beloved things to you in the world. They re sweet to look at, with an incredibly

More information

Different versions of a single gene are called allleles, and one can be dominant over the other(s).

Different versions of a single gene are called allleles, and one can be dominant over the other(s). Answer KEY 1 Different versions of a single gene are called allleles, and one can be dominant over the other(s). 2 Describe genotype and phenotype in your own words. A genotype is the genetic makeup of

More information

Fast Tracking to Save Lives: Simple to Systematic ASPCA. All Rights Reserved.

Fast Tracking to Save Lives: Simple to Systematic ASPCA. All Rights Reserved. Fast Tracking to Save Lives: Simple to Systematic 4 2012 ASPCA. All Rights Reserved. Sandra Newbury, DVM Koret Shelter Medicine Program Center for Companion Animal Health University of California, Davis

More information

Mosquitoes: Infect all of the humans by sucking all of their available blood.

Mosquitoes: Infect all of the humans by sucking all of their available blood. DENGUE! Catch the fever (Field version) a.k.a. Humans vs. Mosquitoes FIELD VERSION Game Goal Mosquitoes: Infect all of the humans by sucking all of their available blood. Humans: Clean up the mosquito

More information

Graphics libraries, PCS Symbols, Animations and Clicker 5

Graphics libraries, PCS Symbols, Animations and Clicker 5 Clicker 5 HELP SHEET Graphics libraries, PCS Symbols, Animations and Clicker 5 In response to many queries about how to use PCS symbols and/or animated graphics in Clicker 5 grids, here is a handy help

More information

Intestinal Apicomplexans

Intestinal Apicomplexans Itestial Apicomplexas Cystoisospora (= Isospora) Protozoa Groups Historically, protozoa have bee grouped by mode of motility. Flagellates Hemoflagellates Trypaosoma cruzi Leishmaia ifatum Mucoflagellates

More information

Inverter Multi Split System

Inverter Multi Split System Inverter Multi Split System Complete climate control when space is at a premium a company The perfect multi room solution Economical Solutions When your home requires heating or cooling in more than one

More information

Pedigrees: Understanding Retriever Pedigrees Part I

Pedigrees: Understanding Retriever Pedigrees Part I Pedigrees: Understanding Retriever Pedigrees Part I Written by Butch Goodwin of Northern Flight Retrievers Editor's Note -Reading and understanding pedigrees is vital to picking out a sound, healthy puppy.

More information

9-2 Probability and Punnett. Squares Probability and Punnett Squares. Slide 1 of 21. Copyright Pearson Prentice Hall

9-2 Probability and Punnett. Squares Probability and Punnett Squares. Slide 1 of 21. Copyright Pearson Prentice Hall 9-2 Probability and Punnett 11-2 Probability and Punnett Squares Squares 1 of 21 11-2 Probability and Punnett Squares Genetics and Probability How do geneticists use the principles of probability? 2 of

More information

Event Kit. When Storytime is Playtime! New from #1 New York Times Bestseller Matthew Van Fleet

Event Kit. When Storytime is Playtime! New from #1 New York Times Bestseller Matthew Van Fleet New from #1 New York Times Bestseller Matthew Van Fleet Event Kit When Storytime is Playtime! Dear bookseller, teacher, librarian or parent: Welcome to the HEADS Event Kit! Event Kit Eye-Popping Fun for

More information

UKI Judging Review . Judging experience (Please include UKI, AKC, USDAA, CPE or other)

UKI Judging Review  . Judging experience (Please include UKI, AKC, USDAA, CPE or other) UKI Judging Review NAME Town & STATE (of residence) EMAIL Judging experience (Please include UKI, AKC, USDAA, CPE or other) TO PASS THE REVIEW - YOU MUST GET 52 OUT OF 54 ANSWERS CORRECT, & ALL REFUSAL

More information

INTRODUCTORY ANIMAL SCIENCE

INTRODUCTORY ANIMAL SCIENCE INTRODUCTORY ANIMAL SCIENCE AGRI 1319 Course Syllabus Chad Henry-Instructor e-mail: chenry@ntcc.edu FALL, 2016 Course Description: Scientific animal agriculture that examines the biological, industrial,

More information

T a. Ruddy. Fawn. Abyssinian

T a. Ruddy. Fawn. Abyssinian T a Fawn Ruddy Abyssinian Blue Red A colorful cat with a distinctly ticked coat, medium in size and regal in appearance Lithe, hard and muscular, showing eager activity and a lively interest in all surroundings

More information

Jumpers Judges Guide

Jumpers Judges Guide Jumpers events will officially become standard classes as of 1 January 2009. For judges, this will require some new skills in course designing and judging. This guide has been designed to give judges information

More information

Text Features: 24 Task Cards

Text Features: 24 Task Cards Text Features: 24 Task Cards Yellowstone National Park is one of the most popular National Parks in the United States. People will travel thousands of miles to Wyoming to see its natural wonders. Because

More information

of Entomology, University of California, Riverside, Riverside, CA 92521, USA of Hertfordshire, Hertfortshire AL109AB, United Kingdom

of Entomology, University of California, Riverside, Riverside, CA 92521, USA of Hertfordshire, Hertfortshire AL109AB, United Kingdom Parasitol Res () (Suppl ):S S DOI./s--- Ectopar asites Susceptibility of Adult Cat Fleas (Siphoaptera: Pulicidae) to Isecticides ad Status of Isecticide Resistace Mutatios at the Rdl ad Kockdow Resistace

More information

The Agility Coach Notebooks

The Agility Coach Notebooks s Small Spaces Volume Issues through By Kathy Keats An ounce of action is worth a ton of theory. Friedrich Engels This is the second volume of The Agility Coach s. Each set has four interesting sequences

More information

MANAGING AVIARY SYSTEMS TO ACHIEVE OPTIMAL RESULTS. TOPICS:

MANAGING AVIARY SYSTEMS TO ACHIEVE OPTIMAL RESULTS. TOPICS: MANAGING AVIARY SYSTEMS TO ACHIEVE OPTIMAL RESULTS. TOPICS: Housing system System design Minimiza2on of stress Ligh2ng Ven2la2on Feed run 2mes Feed placement Watering Water placement Perch Scratch material

More information

LIFE HISTORY OF PLESIONIKA EDWARDSI (CRUSTACEA, DECAPODA, PANDALIDAE) AROUND THE CANARY ISLANDS, EASTERN CENTRAL ATLANTIC

LIFE HISTORY OF PLESIONIKA EDWARDSI (CRUSTACEA, DECAPODA, PANDALIDAE) AROUND THE CANARY ISLANDS, EASTERN CENTRAL ATLANTIC S. Afr. J. mar. Sci. 18: 39 48 1997 39 LIFE HISTORY OF PLESIONIKA EDWARDSI (CRUSTACEA, DECAPODA, PANDALIDAE) AROUND THE CANARY ISLANDS, EASTERN CENTRAL ATLANTIC J. I. SANTANA*, J. A. GONZÁLEZ*, I. J. LOZANO

More information

Phylogeny Reconstruction

Phylogeny Reconstruction Phylogeny Reconstruction Trees, Methods and Characters Reading: Gregory, 2008. Understanding Evolutionary Trees (Polly, 2006) Lab tomorrow Meet in Geology GY522 Bring computers if you have them (they will

More information