Cycle Therapy A Prescription for Fold and Unfold on Regular Trees

Size: px
Start display at page:

Download "Cycle Therapy A Prescription for Fold and Unfold on Regular Trees"

Transcription

1 Cycle Therapy A Prescriptio for Fold ad Ufold o Regular Trees Frakly Turbak Wellesley College J. B. Wells Heriot-Watt Uiversity Cycle Therapy, NEPLS, Oct. 5, 21 p.1/3

2 Cyclic Structures Are Ubiquitous b ev fact a 1 c code d f => 1 => * (fact ( 1)) x S y z R Cycle Therapy, NEPLS, Oct. 5, 21 p.2/3

3 Cycles Are Tricky To Maipulate Cosider Haskell s alts = :1:alts 1 Naïve geeratio ubouded structures: let if x y = x:(if y x) i if map (\ x -> x + 2) alts Naïve accumulatio divergece: foldr (+) alts foldr Set.isert Set.empty alts Depedecy o laguage features: laziess, side effects, ode equality, recursive bidig costructs, etc. Cycle Therapy, NEPLS, Oct. 5, 21 p.3/3

4 Road Map Viewig cyclic structures as ifiite regular trees. Adaptig the tree-geeratig ufold fuctio to geerate cyclic structures for ifiite regular trees. Adaptig the tree-accumulatig fold fuctio to retur o-trivial results for strict combiig fuctios ad ifiite regular trees. Cycamores: a abstractio for maipulatig regular trees that we have implemeted i ML ad Haskell. Cycle Therapy, NEPLS, Oct. 5, 21 p.4/3

5 Regular Trees A tree is regular if it has a fiite umber of distict subtrees. Ifiite Regular Trees Ifiite No-regular Trees Cycle Therapy, NEPLS, Oct. 5, 21 p.5/3

6 Cyclic Represetatives Fiite cyclic graphs deote ifiite regular trees. The same tree may be represeted by may fiite graphs. Ifiite Regular Tree Some Fiite Cyclic Represetatives Cycle Therapy, NEPLS, Oct. 5, 21 p.6/3

7 Goals Develop high-level abstractios for creatig ad maipulatig regular trees that: efficietly represet regular trees usig cyclic graphs; do ot expose the fiite represetative deotig a ifiite regular tree; are relatively isesitive to the features of the programmig laguage i which they are embedded. Cycle Therapy, NEPLS, Oct. 5, 21 p.7/3

8 Road Map Viewig cyclic structures as ifiite regular trees. Adaptig the tree-geeratig ufold fuctio to geerate cyclic structures for ifiite regular trees. Adaptig the tree-accumulatig fold fuctio to retur o-trivial results for strict combiig fuctios ad ifiite regular trees. Cycamores: a abstractio for maipulatig regular trees that we have implemeted i ML ad Haskell. Cycle Therapy, NEPLS, Oct. 5, 21 p.8/3

9 Tree Geeratio via Ufold The ufold operator geerates a tree from a geeratig fuctio ad a seed. Geeratig Fuctio L Label Seed S S 1... S k Seeds for Childre ufold : (S (L (S ω ))) }{{} geeratig fuctio ψ S }{{} seed Tree(L) }{{} trees over L } {{ } ψ-aamorphism Cycle Therapy, NEPLS, Oct. 5, 21 p.9/3

10 Ufold Example 1: Regular Tree Geeratig Fuctio ψ Tree 1 Cycle Therapy, NEPLS, Oct. 5, 21 p.1/3

11 Ufold Example 1: Regular Tree Geeratig Fuctio ψ Tree 1 1 Cycle Therapy, NEPLS, Oct. 5, 21 p.1/3

12 Ufold Example 1: Regular Tree Geeratig Fuctio ψ Tree Cycle Therapy, NEPLS, Oct. 5, 21 p.1/3

13 Ufold Example 1: Regular Tree Geeratig Fuctio ψ Tree Cycle Therapy, NEPLS, Oct. 5, 21 p.1/3

14 Ufold Example 1: Regular Tree Geeratig Fuctio ψ Tree deps(, ψ) = {, 1} Cycle Therapy, NEPLS, Oct. 5, 21 p.1/3

15 Ufold Example 2: No-regular Tree Geeratig Fuctio ψ Tree Cycle Therapy, NEPLS, Oct. 5, 21 p.11/3

16 Ufold Example 2: No-regular Tree Geeratig Fuctio ψ Tree Cycle Therapy, NEPLS, Oct. 5, 21 p.11/3

17 Ufold Example 2: No-regular Tree Geeratig Fuctio ψ Tree Cycle Therapy, NEPLS, Oct. 5, 21 p.11/3

18 Ufold Example 2: No-regular Tree Geeratig Fuctio ψ Tree Cycle Therapy, NEPLS, Oct. 5, 21 p.11/3

19 Ufold Example 2: No-regular Tree Geeratig Fuctio ψ Tree deps(, ψ) = {, 1, 2, 3, 4, 5, 6, 7,...} Cycle Therapy, NEPLS, Oct. 5, 21 p.11/3

20 Ufold Lemma If deps(x, ψ) is fiite, the ufold(ψ)(x) is a regular tree. Coverse of this lemma does ot hold. Basis for implemetatio of ufold that ties cyclic kots for (some) regular trees via memoizatio o seeds (a la Hughes s Lazy Memo Fuctios, FPCA 85). Cycle Therapy, NEPLS, Oct. 5, 21 p.12/3

21 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

22 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P NONE Memo Table Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

23 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P NONE CycNode(, [ ]) Memo Table ufold P 1 Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

24 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P NONE CycNode(, [ ]) 1 ufold P 1 NONE Memo Table Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

25 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P NONE CycNode(, [ ]) ufold P 1 1 NONE CycNode( 1, [ ]) Memo Table ufold P Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

26 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P NONE CycNode(, [ ]) ufold P 1 1 NONE CycNode( 1, [ ]) Memo Table Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

27 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P NONE CycNode(, [ ]) ufold P 1 1 SOME(CycNode( 1, [ ])) Memo Table Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

28 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P NONE CycNode(, [ ]) 1 SOME(CycNode( 1, [ ])) Memo Table Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

29 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : ufold P SOME(CycNode(, [ ])) 1 SOME(CycNode( 1, [ ])) Memo Table Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

30 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : SOME(CycNode(, [ ])) 1 SOME(CycNode( 1, [ ])) Memo Table Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

31 Ufold Implemetatio: Stadard ML geeratig fc.: fu P = (,[(+1) mod 2]) iitial seed : 231 UID Couter ( 231, SOME(CycNode(, [ ]))) 1 ( 23, SOME(CycNode( 1, [ ]))) Memo Table Cycle Therapy, NEPLS, Oct. 5, 21 p.13/3

32 Ufold Implemetatio: Discussio Ca use fewer referece cells i SML implemetatio. Cyclic hash-cosig yields miimal graphs (Mauborge, ESOP 2; Cosidie & Wells, upublished). Haskell implemetatio: Uses laziess to tie cyclic kots. Uses a Cycle moad to thread UID couter ad memoizatio tables through computatio. Tricky to tie cyclic kots i presece of moad; use techiques of Erkok ad Lauchbury (ICFP ). I practice, a memofix fuctio is more flexible tha ufold (see paper). Cycle Therapy, NEPLS, Oct. 5, 21 p.14/3

33 Road Map Viewig cyclic structures as ifiite regular trees. Adaptig the tree-geeratig ufold fuctio to geerate cyclic structures for ifiite regular trees. Adaptig the tree-accumulatig fold fuctio to retur o-trivial results for strict combiig fuctios ad ifiite regular trees. Cycamores: a abstractio for maipulatig regular trees that we have implemeted i ML ad Haskell. Cycle Therapy, NEPLS, Oct. 5, 21 p.15/3

34 Tree Accumulatio via Fold The fold operator accumulates a result from a tree usig a combiig fuctio. L Label Combiig Fuctio R... R 1 k Results for Childre R Result fold : ((L (C res ω )) cot C res ) }{{} accumulatig fuctio φ Tree(L) cot C res }{{} tree valuatio θ (φ-catamorphism) Cycle Therapy, NEPLS, Oct. 5, 21 p.16/3

35 Foldig over a Fiite Tree Accumulatig Fuctio φ Tree k k 4 Cycle Therapy, NEPLS, Oct. 5, 21 p.17/3

36 Foldig over a Fiite Tree Accumulatig Fuctio φ Tree k k 4 + Cycle Therapy, NEPLS, Oct. 5, 21 p.17/3

37 Foldig over a Fiite Tree Accumulatig Fuctio φ Tree k k Cycle Therapy, NEPLS, Oct. 5, 21 p.17/3

38 Foldig over a Fiite Tree Accumulatig Fuctio φ Tree k k Cycle Therapy, NEPLS, Oct. 5, 21 p.17/3

39 Foldig over a Fiite Tree Accumulatig Fuctio φ Tree k k Cycle Therapy, NEPLS, Oct. 5, 21 p.17/3

40 Foldig over a Ifiite Regular Tree Expect θ to be φ-cosistet: for each subtree t of a give tree, θ(t) = φ(label(t), map(θ)(childre(t))). Cycle Therapy, NEPLS, Oct. 5, 21 p.18/3

41 Foldig over a Ifiite Regular Tree Cycle Therapy, NEPLS, Oct. 5, 21 p.18/3

42 Foldig over a Ifiite Regular Tree U U 1 U U 1 U U 1 U Cycle Therapy, NEPLS, Oct. 5, 21 p.18/3

43 Foldig over a Ifiite Regular Tree {,1} U {,1} {,1} U 1 U {,1} {,1} {,1} {,1} U 1 U U 1 U This fold may be desirable, but it is ot the computed oe. Cycle Therapy, NEPLS, Oct. 5, 21 p.18/3

44 Foldig over a Ifiite Regular Tree {,1,2} U {,1,2} {,1,2} U 1 U {,1,2} {,1,2} {,1,2} {,1,2} U 1 U U 1 U This fold is ot computed either. Cycle Therapy, NEPLS, Oct. 5, 21 p.18/3

45 Fold: Formalism Let the result domai be C res (a poited cpo). fold : ((L (C res ω )) cot C res ) }{{} accumulatig fuctio φ Tree(L) cot C res }{{} tree valuatio θ (φ-catamorphism) fold(φ) is the least fixed poit of: recalc(φ) = λθ. λt. φ(label (t), map(θ)(childre (t))) For a strict φ ad ay ifiite tree t, (fix(recalc(φ)))(t) =. Cycle Therapy, NEPLS, Oct. 5, 21 p.19/3

46 Cycfold: Goals Give a strict combiig fuctio φ, wat cycfold(φ) that: Coicides with fold(φ) o fiite trees; Ca retur a o-trivial result for regular trees; Diverges o o-regular trees. Cycle Therapy, NEPLS, Oct. 5, 21 p.2/3

47 Cycfold: The Idea Use a result domai C res that is a lifted poited cpo (i.e., doubly poited) ad require the combiig fuctio φ to be strict ad mootoe. user udef } user cpo } ew bottom For a give tree t, calculate cycfold(φ)(t) as follows: If t ot regular, retur udef. Otherwise: Let tree valuatio θ map all subtrees of t to user. Iteratively calculate θ i+1 from θ i usig φ. If θ k+1 = θ k the retur θ k (t) else retur udef. Cycle Therapy, NEPLS, Oct. 5, 21 p.21/3

48 Cycfold Example 1: Node Labels U { } {, 1, 2} 1 {, 1} {, 2} {1, 2} {} {1} {2} { } U {} udef Cycle Therapy, NEPLS, Oct. 5, 21 p.22/3

49 Cycfold Example 1: Node Labels U {} {, 1, 2} 1 {, 1} {, 2} {1, 2} {} {1} {2} {1} U {} udef Cycle Therapy, NEPLS, Oct. 5, 21 p.22/3

50 Cycfold Example 1: Node Labels U {,1} {, 1, 2} 1 {, 1} {, 2} {1, 2} {} {1} {2} {,1} U {} udef Cycle Therapy, NEPLS, Oct. 5, 21 p.22/3

51 Cycfold Example 1: Node Labels U {,1} {,1} U {, 1, 2} {, 1} {, 2} {1, 2} {} {1} {2} {} udef Cycle Therapy, NEPLS, Oct. 5, 21 p.22/3

52 Cycfold Example 2: DFA Strigs Node labels ca ecode other aspects of cyclic data. b a 1 c d (, False, [ a, b ]) (1, True, [ d, c ]) Cycle Therapy, NEPLS, Oct. 5, 21 p.23/3

53 Cycfold Example 2: DFA Strigs map ( a :) map ( b :) U {} (, False, [ a, b ]) (1, True, [ d, c ]) {""} {} U map ( d :) map ( c :) Cycle Therapy, NEPLS, Oct. 5, 21 p.24/3

54 Cycfold Example 2: DFA Strigs map ( a :) map ( b :) U {} (, False, [ a, b ]) (1, True, [ d, c ]) {""} {""} U map ( d :) map ( c :) Cycle Therapy, NEPLS, Oct. 5, 21 p.24/3

55 Cycfold Example 2: DFA Strigs map ( a :) map ( b :) U {b} (, False, [ a, b ]) (1, True, [ d, c ]) {""} {"", c} U map ( d :) map ( c :) Cycle Therapy, NEPLS, Oct. 5, 21 p.24/3

56 Cycfold Example 2: DFA Strigs map ( a :) map ( b :) U {ab, b, bc} (, False, [ a, b ]) (1, True, [ d, c ]) {""} {"", c, cc, db} map ( c :) U map ( d :) Cycle Therapy, NEPLS, Oct. 5, 21 p.24/3

57 Cycfold Example 2: DFA Strigs map ( a :) map ( b :) U {aab, ab, abc, b, bc, bcc, bdb} (, False, [ a, b ]) (1, True, [ d, c ]) {""} {"", c, cc, ccc, cdb, dab, db, dbc} map ( c :) U map ( d :) Cycle Therapy, NEPLS, Oct. 5, 21 p.24/3

58 Cycfold: Related Work Iterative fixed poits commo i compiler data flow. Graph folds (Gibbos, upublished): ifold = foldtree utie, aalagous to fold. efold aalagous to cycfold. Catamorphisms over datatypes with embedded fuctios (Fegaras & Sheard, POPL 96): Express cycles via embedded fuctios. E.g., val alts = Rec(f x => Cos(,(Cos 1 x))) Ca express catamorphisms over such cycles (e.g., map), but these ca expose the structure of the represetative. Cycle Therapy, NEPLS, Oct. 5, 21 p.25/3

59 Road Map Viewig cyclic structures as ifiite regular trees. Adaptig the tree-geeratig ufold fuctio to geerate cyclic structures for ifiite regular trees. Adaptig the tree-accumulatig fold fuctio to retur o-trivial results for strict combiig fuctios ad ifiite regular trees. Cycamores: a abstractio for maipulatig regular trees that we have implemeted i ML ad Haskell. Cycle Therapy, NEPLS, Oct. 5, 21 p.26/3

60 Cycamores Cycamore(L) is the type of potetially cyclic graphs, with a hidde UID for each ode, parameterized over label type. Examples: Key operatios: make, view, ufold, fold, cycfold. Other operatios: cycfix, memofix (see paper). Implemetatios i Stadard ML ad Haskell. Cycle Therapy, NEPLS, Oct. 5, 21 p.27/3

61 Cycamore Sigatures 1 Stadard ML Haskell val make : make :: ( a * a Cycamore list) label/kids pair (a, [Cycamore a]) -> a Cycamore result cycamore -> Cycle s (Cycamore a) val view : view :: a Cycamore give cycamore Cycamore a -> ( a * a Cycamore list) label/kids pair -> (a, [Cycamore a]) val ufold : ufold :: order class Ord a => a MemKey memo key fc. -> ( a -> ( b * a list)) geeratig fc. (a -> (b, [a])) -> a seed -> a -> b Cycamore result cycamore -> Cycle s (Cycamore b) Cycle Therapy, NEPLS, Oct. 5, 21 p.28/3

62 Cycamore Sigatures 2 Stadard ML Haskell val fold : fold :: ( b -> ( a list) -> a) combiig fc. (b -> [a] -> a) -> ( b Cycamore) cycamore -> (Cycamore b) -> a result a val cycfold : cycfold :: partial order class (POrd a) => a user bottom a -> (( a * a) -> bool) geq -> ( b -> ( a list) -> a) combiig fc. -> (b -> [a] -> a) -> ( b Cycamore) cycamore -> (Cycamore b) -> a result -> a Cycle Therapy, NEPLS, Oct. 5, 21 p.29/3

63 Future Work Theory: No-strict combiig fuctios with cycfold. Ca cycfold retur a cycamore? Versio of fold based o greatest fixed poits. Practice: Avoidig sigle-threaded UID geeratio. Memoizatio strategies. cycfold implemetatio heuristics. Cyclic hash-cosig experimetatio. Extedig ML/Haskell with geeral cyclic data types. Cycle Therapy, NEPLS, Oct. 5, 21 p.3/3

How is the President Doing? Sampling Distribution for the Mean. Now we move toward inference. Bush Approval Ratings, Week of July 7, 2003

How is the President Doing? Sampling Distribution for the Mean. Now we move toward inference. Bush Approval Ratings, Week of July 7, 2003 Samplig Distributio for the Mea Dr Tom Ilveto FREC 408 90 80 70 60 50 How is the Presidet Doig? 2/1/2001 4/1/2001 Presidet Bush Approval Ratigs February 1, 2001 through October 6, 2003 6/1/2001 8/1/2001

More information

Statistics Lecture 13 Sampling Distributions (Chapter 18) fe1. Definitions again

Statistics Lecture 13 Sampling Distributions (Chapter 18) fe1. Definitions again fe1. Defiitios agai Review the defiitios of POPULATIO, SAMPLE, PARAMETER ad STATISTIC. STATISTICAL IFERECE: a situatio where the populatio parameters are ukow, ad we draw coclusios from sample outcomes

More information

EDEXCEL NATIONAL CERTIFICATE UNIT 28 FURTHER MATHEMATICS FOR TECHNICIANS OUTCOME 1- ALGEBRAIC TECHNIQUES TUTORIAL 3 - STATISTICAL TECHNIQUES

EDEXCEL NATIONAL CERTIFICATE UNIT 28 FURTHER MATHEMATICS FOR TECHNICIANS OUTCOME 1- ALGEBRAIC TECHNIQUES TUTORIAL 3 - STATISTICAL TECHNIQUES EDEXCEL NATIONAL CERTIFICATE UNIT 8 FURTHER MATHEMATICS FOR TECHNICIANS OUTCOME 1- ALGEBRAIC TECHNIQUES TUTORIAL 3 - STATISTICAL TECHNIQUES CONTENTS Be able to apply algebraic techiques Arithmetic progressio

More information

Statistics 11 Lecture 18 Sampling Distributions (Chapter 6-2, 6-3) 1. Definitions again

Statistics 11 Lecture 18 Sampling Distributions (Chapter 6-2, 6-3) 1. Definitions again Statistics Lecture 8 Samplig Distributios (Chapter 6-, 6-3). Defiitios agai Review the defiitios of POPULATION, SAMPLE, PARAMETER ad STATISTIC. STATISTICAL INFERENCE: a situatio where the populatio parameters

More information

Introductions to ExtendedGCD

Introductions to ExtendedGCD Itroductios to ExtededGCD Itroductio to the GCD ad LCM (greatest coo divisor ad least coo ultiple) Geeral The legedary Greek atheaticia Euclid (ca. 325 270 BC) suggested a algorith for fidig the greatest

More information

Measures of Spread: Standard Deviation

Measures of Spread: Standard Deviation Measures of Spread: Stadard Deviatio So far i our study of umerical measures used to describe data sets, we have focused o the mea ad the media. These measures of ceter tell us the most typical value of

More information

Caribbean Examinations Council Secondary Education Certificate School Based Assessment Additional Math Project

Caribbean Examinations Council Secondary Education Certificate School Based Assessment Additional Math Project Caribbea Examiatios Coucil Secodary Educatio Certificate School Based Assessmet Additioal Math Project Does good physical health ad fitess, as idicated by Body Mass Idex, affect the academic performace

More information

Sec 7.6 Inferences & Conclusions From Data Central Limit Theorem

Sec 7.6 Inferences & Conclusions From Data Central Limit Theorem Sec 7. Ifereces & Coclusios From Data Cetral Limit Theorem Name: The Cetral Limit Theorem offers us the opportuity to make substatial statistical predictios about the populatio based o the sample. To better

More information

Outline. Neutron Interactions and Dosimetry. Introduction. Tissue composition. Neutron kinetic energy. Neutron kinetic energy.

Outline. Neutron Interactions and Dosimetry. Introduction. Tissue composition. Neutron kinetic energy. Neutron kinetic energy. Outlie Neutro Iteractios ad Dosimetry Chapter 16 F.A. Attix, Itroductio to Radiological Physics ad Radiatio Dosimetry Neutro dosimetry Thermal eutros Itermediate-eergy eutros Fast eutros Sources of eutros

More information

ECE 608: Computational Models and Methods, Fall 2005 Test #1 Monday, October 3, Prob. Max. Score I 15 II 10 III 10 IV 15 V 30 VI 20 Total 100

ECE 608: Computational Models and Methods, Fall 2005 Test #1 Monday, October 3, Prob. Max. Score I 15 II 10 III 10 IV 15 V 30 VI 20 Total 100 Nme: ECE 608: Computtiol Models d Methods, Fll 005 Test # Mody, Octoer 3, 005! Your em should hve 0 (te pges.! Pge 9 is itetiolly left l.! Pge 0 cotis list of potetilly useful idetities tht you my use.!

More information

CHAPTER 8 ANSWERS. Copyright 2012 Pearson Education, Inc. Publishing as Addison-Wesley

CHAPTER 8 ANSWERS. Copyright 2012 Pearson Education, Inc. Publishing as Addison-Wesley CHAPTER 8 ANSWERS Sectio 8.1 Statistical Literacy ad Critical Thikig 1 The distributio of radomly selected digits from to 9 is uiform. The distributio of sample meas of 5 such digits is approximately ormal.

More information

What is a file system Link? Hard & Symbolic Links. What is a file system Link? What is a file system Link? Murray Saul Seneca College

What is a file system Link? Hard & Symbolic Links. What is a file system Link? What is a file system Link? Murray Saul Seneca College What is a file system Lik? Hard & Symbolic Liks Murray Saul Seeca College Adapted by Dr. Adrew Vardy Memorial Uiversity A lik is a poiter to a file. This poiter associates a file ame with a umber called

More information

Estimation and Confidence Intervals

Estimation and Confidence Intervals Estimatio ad Cofidece Itervals Chapter 9 McGraw-Hill/Irwi Copyright 2010 by The McGraw-Hill Compaies, Ic. All rights reserved. GOALS 1. Defie a poit estimate. 2. Defie level of cofidece. 3. Costruct a

More information

Automatic reasoning evaluation in diet management based on an Italian cookbook

Automatic reasoning evaluation in diet management based on an Italian cookbook Automatic reasoig evaluatio i diet maagemet based o a Italia cookbook Luca Aselma, aselma@di.uito.it Alessadro Mazzei, mazzei@di.uito.it Adrea Piroe, adrea.piroe@di.uito.it Departmet of Computer Sciece,

More information

Appendix C: Concepts in Statistics

Appendix C: Concepts in Statistics Appedi C. Measures of Cetral Tedecy ad Dispersio A8 Appedi C: Cocepts i Statistics C. Measures of Cetral Tedecy ad Dispersio Mea, Media, ad Mode I may real-life situatios, it is helpful to describe data

More information

Statistical Analysis and Graphing

Statistical Analysis and Graphing BIOL 202 LAB 4 Statistical Aalysis ad Graphig Aalyzig data objectively to determie if sets of data differ ad the to preset data to a audiece succictly ad clearly is a major focus of sciece. We eed a way

More information

Concepts Module 7: Comparing Datasets and Comparing a Dataset with a Standard

Concepts Module 7: Comparing Datasets and Comparing a Dataset with a Standard Cocepts Module 7: Comparig Datasets ad Comparig a Dataset with a Stadard Idepedece of each data poit Test statistics Cetral Limit Theorem Stadard error of the mea Cofidece iterval for a mea Sigificace

More information

Chapter 8 Descriptive Statistics

Chapter 8 Descriptive Statistics 8.1 Uivariate aalysis ivolves a sigle variable, for examples, the weight of all the studets i your class. Comparig two thigs, like height ad weight, is bivariate aalysis. (Which we will look at later)

More information

Chem 135: First Midterm

Chem 135: First Midterm Chem 135: First Midterm September 30 th, 2013 Please provide all aswers i the spaces provided. You are ot allowed to use a calculator for this exam, but you may use (previously disassembled) molecular

More information

Objectives. Sampling Distributions. Overview. Learning Objectives. Statistical Inference. Distribution of Sample Mean. Central Limit Theorem

Objectives. Sampling Distributions. Overview. Learning Objectives. Statistical Inference. Distribution of Sample Mean. Central Limit Theorem Objectives Samplig Distributios Cetral Limit Theorem Ivestigate the variability i sample statistics from sample to sample Fid measures of cetral tedecy for distributio of sample statistics Fid measures

More information

Lecture 19: Analyzing transcriptome datasets. Spring 2018 May 3, 2018

Lecture 19: Analyzing transcriptome datasets. Spring 2018 May 3, 2018 Lecture 19: Aalyzig trascriptome datasets Sprig 2018 May 3, 2018 Measurig the Trascriptome trascriptome: the mrnas expressed by a geome at ay give time (Abbott, 1999) Icludes protei codig trascripts ad

More information

Real-Time Noise Cancelling Approach on Innovations-Based Whitening Application to Adaptive FIR RLS in Beamforming Structure

Real-Time Noise Cancelling Approach on Innovations-Based Whitening Application to Adaptive FIR RLS in Beamforming Structure Real-Time Noise Cacellig Approach o Iovatios-Based Whiteig Applicatio to Adaptive FIR RLS i Beamformig Structure 7 Jisoo Jeog Faculty of Biomedical Egieerig ad Health Sciece, Uiversiti Tekologi Malaysia,

More information

A PATIENT S GUIDE TO PLASMA EXCHANGE

A PATIENT S GUIDE TO PLASMA EXCHANGE Some drugs may be affected by plasma exchage; ask your doctor about ay impact to drugs you are takig. It is importat to drik water ad cosume foods high i calcium, such as cheese or milk. This ca help your

More information

! A data structure representing a list. ! A series of dynamically allocated nodes. ! A separate pointer (the head) points to the first

! A data structure representing a list. ! A series of dynamically allocated nodes. ! A separate pointer (the head) points to the first Liked Lists Week 8 Gaddis: Chater 17 CS 5301 Fall 2015 Itroductio to Liked Lists! A data structure reresetig a list! A series of dyamically allocated odes chaied together i sequece - Each ode oits to oe

More information

Estimating Bias Error Distributions

Estimating Bias Error Distributions Estimatig Bias Error Distributios Tiashu Liu Wester Michiga Uiversity, Kalamazoo, MI Tom D. Filey NASA Lagley Research Ceter, Hampto, VA Backgroud Bias errors are ofte summarily dismissed i books ad articles

More information

Performance Improvement in the Bivariate Models by using Modified Marginal Variance of Noisy Observations for Image-Denoising Applications

Performance Improvement in the Bivariate Models by using Modified Marginal Variance of Noisy Observations for Image-Denoising Applications PROCEEDING OF WORLD ACADEM OF CIENCE, ENGINEERING AND ECHNOLOG VOLUME 5 APRIL 005 IN 307-6884 Performace Improvemet i the Bivariate Models by usig Modified Margial Variace of Noisy Observatios for Image-Deoisig

More information

23.3 Sampling Distributions

23.3 Sampling Distributions COMMON CORE Locker LESSON Commo Core Math Stadards The studet is expected to: COMMON CORE S-IC.B.4 Use data from a sample survey to estimate a populatio mea or proportio; develop a margi of error through

More information

Supplementary Information for: Use of Fibonacci numbers in lipidomics. Enumerating various classes of fatty acids

Supplementary Information for: Use of Fibonacci numbers in lipidomics. Enumerating various classes of fatty acids Supplemetary Iformatio for: Use of Fiboacci umbers i lipidomics Eumeratig various classes of fatty acids Stefa Schuster *,1, Maximilia Fichter 1, Severi Sasso 1 Dept. of Bioiformatics, Friedrich Schiller

More information

PDSS: The decision support system of diabetic patient for Public Health

PDSS: The decision support system of diabetic patient for Public Health Proceedigs of the 3rd Iteratioal Coferece o Idustrial Applicatio Egieerig 5 PDSS: The decisio support system of diabetic patiet for Public Health Bejapuk Jogmuewai, Kailas Bumrugchat, Papo kaewhi Iformatics

More information

COMBINATORIAL ON/OFF MODEL FOR OLFACTORY CODING. A.Koulakov 1, A.Gelperin 2, and D.Rinberg 2

COMBINATORIAL ON/OFF MODEL FOR OLFACTORY CODING. A.Koulakov 1, A.Gelperin 2, and D.Rinberg 2 COMBINATORIAL ON/OFF MODEL FOR OLFACTORY CODING A.Koulakov, A.Gelperi 2, ad D.Riberg 2. Cold Sprig Harbor Laboratory, Cold Sprig Harbor, NY, 724 USA 2. Moell Chemical Seses Ctr., Philadelphia, PA, 904

More information

Practical Basics of Statistical Analysis

Practical Basics of Statistical Analysis Practical Basics of Statistical Aalysis David Keffer Dept. of Materials Sciece & Egieerig The Uiversity of Teessee Koxville, TN 37996-2100 dkeffer@utk.edu http://clausius.egr.utk.edu/ Goveror s School

More information

l A data structure representing a list l A series of dynamically allocated nodes l A separate pointer (the head) points to the first

l A data structure representing a list l A series of dynamically allocated nodes l A separate pointer (the head) points to the first Liked Lists Week 8 Gaddis: Chater 17 CS 5301 Srig 2018 Itroductio to Liked Lists l A data structure reresetig a list l A series of dyamically allocated odes chaied together i sequece - Each ode oits to

More information

An Approach for Type Synthesis of Overconstrained 1T2R Parallel Mechanisms

An Approach for Type Synthesis of Overconstrained 1T2R Parallel Mechanisms A Approach for Type Sythesis of Overcostraied 1T2R Parallel Mechaisms C. Dog 1, H. Liu 1, Q. Liu 1, T. Su 1, T. Huag 1, 2 ad D. G. Chetwyd 2 1 Key Laboratory of Mechaism Theory ad Equipmet Desig of State

More information

Guidance on the use of the Title Consultant Psychologist

Guidance on the use of the Title Consultant Psychologist Guidace o the use of the Title Cosultat Psychologist If you have problems readig this documet ad would like it i a differet format, please cotact us with your specific requiremets. Tel: 0116 2254 9568;

More information

Mapping out Deaf spaces in Montreal - GIS applications to Deaf geography

Mapping out Deaf spaces in Montreal - GIS applications to Deaf geography Mappig out Deaf spaces i Motreal - GIS applicatios to Deaf geography Cythia Beoît, Philippe Apparicio ad Ae- Marie Ségui Uiversity of Québec (INRS-UCS) Presetatio at the AAG Aual meetig Seattle 2011 BACKGROUND

More information

Review for Chapter 9

Review for Chapter 9 Review for Chapter 9 1. For which of the followig ca you use a ormal approximatio? a) = 100, p =.02 b) = 60, p =.4 c) = 20, p =.6 d) = 15, p = 2/3 e) = 10, p =.7 2. What is the probability of a sample

More information

Quantitative Evaluation of Stress Corrosion Cracking Based on Features of Eddy Current Testing Signals

Quantitative Evaluation of Stress Corrosion Cracking Based on Features of Eddy Current Testing Signals E-Joural of Advaced Maiteace Vol.9-2 (2017) 78-83 Japa Society of Maiteology Quatitative Evaluatio of Stress Corrosio Crackig Based o Features of Eddy Curret Testig Sigals Li WANG 1,* ad Zhemao CHEN 2

More information

Modified Early Warning Score Effect in the ICU Patient Population

Modified Early Warning Score Effect in the ICU Patient Population Lehigh Valley Health Network LVHN Scholarly Works Patiet Care Services / Nursig Modified Early Warig Score Effect i the ICU Patiet Populatio Ae Rabert RN, DHA, CCRN, NE-BC Lehigh Valley Health Network,

More information

International Journal of Mathematical Archive-4(3), 2013, Available online through ISSN

International Journal of Mathematical Archive-4(3), 2013, Available online through  ISSN Iteratioal Joural of Mathematical Archive-4(), 201, 72-76 Available olie through www.ijma.ifo ISSN 2229 5046 QUALITY CONTOL OF SEA, BY USING DIFFEENT CHTS V. Vasu 1*, B. Kumara Swamy Achari 2 ad L. Sriivasulu

More information

Development Report of Powerful Acoustic Computing Environment

Development Report of Powerful Acoustic Computing Environment Developmet Report of Powerful Acoustic Computig Eviromet Takayuki asumoto echaical CAE Divisio VPD Group Cyberet Systems Co. td. 006 ANSYS Ic. ANSYS Ic. Proprietary Ageda Part: The Curret Status of Numerical

More information

Stress Distribution within the Osteochondral Lesions of the Talus with Nonshoulder-type and Shoulder-type

Stress Distribution within the Osteochondral Lesions of the Talus with Nonshoulder-type and Shoulder-type Stress Distributio withi the Osteochodral Lesios of the Talus with Noshoulder-type ad Shoulder-type Departmet of Orthopaedic Surgery, Fukuoka Uiversity Faculty of Medicie, JAPAN Tomoobu Hagio, MD, PhD,

More information

Minimum skills required by children to complete healthrelated quality of life instruments for asthma: comparison of measurement properties

Minimum skills required by children to complete healthrelated quality of life instruments for asthma: comparison of measurement properties Eur Respir J 1997; 10: 225 24 DOI: 10.113/09031936.97.1010225 Prited i UK - all rights reserved Copyright ERS Jourals Ltd 1997 Europea Respiratory Joural ISSN 0903-1936 Miimum skills required by childre

More information

Objectives. Types of Statistical Inference. Statistical Inference. Chapter 19 Confidence intervals: Estimating with confidence

Objectives. Types of Statistical Inference. Statistical Inference. Chapter 19 Confidence intervals: Estimating with confidence Types of Statistical Iferece Chapter 19 Cofidece itervals: The basics Cofidece itervals for estiatig the value of a populatio paraeter Tests of sigificace assesses the evidece for a clai about a populatio.

More information

STATISTICAL ANALYSIS & ASTHMATIC PATIENTS IN SULAIMANIYAH GOVERNORATE IN THE TUBER-CLOSES CENTER

STATISTICAL ANALYSIS & ASTHMATIC PATIENTS IN SULAIMANIYAH GOVERNORATE IN THE TUBER-CLOSES CENTER March 3. Vol., No. ISSN 37-3 IJRSS & K.A.J. All rights reserved STATISTICAL ANALYSIS & ASTHMATIC PATIENTS IN SULAIMANIYAH GOVERNORATE IN THE TUBER-CLOSES CENTER Dr. Mohammad M. Faqe Hussai (), Asst. Lecturer

More information

Lecture Outline. BIOST 514/517 Biostatistics I / Applied Biostatistics I. Paradigm of Statistics. Inferential Statistic.

Lecture Outline. BIOST 514/517 Biostatistics I / Applied Biostatistics I. Paradigm of Statistics. Inferential Statistic. BIOST 514/517 Biostatistics I / Applied Biostatistics I Kathlee Kerr, Ph.D. Associate Professor of Biostatistics iversity of Washigto Lecture 11: Properties of Estimates; Cofidece Itervals; Stadard Errors;

More information

My experiences with Haskell as a person with Asperger s Syndrome

My experiences with Haskell as a person with Asperger s Syndrome My experiences with Haskell as a person with Asperger s Syndrome p. 1/2 My experiences with Haskell as a person with Asperger s Syndrome Ow much askell would an aspie acker ack, if an aspie acker could

More information

Sampling Distributions and Confidence Intervals

Sampling Distributions and Confidence Intervals 1 6 Samplig Distributios ad Cofidece Itervals Iferetial statistics to make coclusios about a large set of data called the populatio, based o a subset of the data, called the sample. 6.1 Samplig Distributios

More information

Technical Assistance Document Algebra I Standard of Learning A.9

Technical Assistance Document Algebra I Standard of Learning A.9 Techical Assistace Documet 2009 Algebra I Stadard of Learig A.9 Ackowledgemets The Virgiia Departmet of Educatio wishes to express sicere thaks to J. Patrick Liter, Doa Meeks, Dr. Marcia Perry, Amy Siepka,

More information

A Novel Ontology Analysis Tool

A Novel Ontology Analysis Tool Appl. Math. If. Sci. 8, No. 1, 255-261 (2014) 255 Applied Mathematics & Iformatio Scieces A Iteratioal Joural http://dx.doi.org/10.12785/amis/080131 A Novel Otology Aalysis Tool Zhixiao Wag, Shixiog Xia

More information

Maximum Likelihood Estimation of Dietary Intake Distributions

Maximum Likelihood Estimation of Dietary Intake Distributions CARD Workig Papers CARD Reports ad Workig Papers 8-1992 Maximum Likelihood Estimatio of Dietary Itake Distributios Jeffrey D. Helterbrad Iowa State Uiversity Follow this ad additioal works at: http://lib.dr.iastate.edu/card_workigpapers

More information

Reporting Checklist for Nature Neuroscience

Reporting Checklist for Nature Neuroscience Correspodig Author: Mauscript Number: Mauscript Type: Galea NNA48318C Article Reportig Checklist for Nature Neurosciece # Figures: 4 # Supplemetary Figures: 2 # Supplemetary Tables: 1 # Supplemetary Videos:

More information

Methodology National Sports Survey SUMMARY

Methodology National Sports Survey SUMMARY Methodology 017 Natioal Sports Survey Prepared by Priceto Survey Research Associates Iteratioal for the Washigto Post ad the Uiversity of Massachusetts Lowell August 017 SUMMARY The 017 Natioal Sports

More information

The Effect of Question Order on Reporting Physical Activity and Walking Behavior

The Effect of Question Order on Reporting Physical Activity and Walking Behavior Uiversity of South Carolia Scholar Commos Faculty Publicatios Physical Activity ad Public Health 1-1-2008 The Effect of Questio Order o Reportig Physical Activity ad Walkig Behavior Bret E. Hutto Patricia

More information

Finite Element Simulation of a Doubled Process of Tube Extrusion and Wall Thickness Reduction

Finite Element Simulation of a Doubled Process of Tube Extrusion and Wall Thickness Reduction World Joural of Mechaics, 13, 3, 5- http://dx.doi.org/1.3/wjm.13.35 Published lie August 13 (http://www.scirp.org/joural/wjm) Fiite Elemet Simulatio of a Doubled Process of Tube Extrusio ad Wall Thickess

More information

Laxmi Shaw Department of Applied Electronics and Instrumentation Silicon Institute of Technology, Bhubaneswar, Orissa, India

Laxmi Shaw Department of Applied Electronics and Instrumentation Silicon Institute of Technology, Bhubaneswar, Orissa, India HMM BASED PARKINSON S DETECTION BY ANALYSING SYMBOLIC POSTURAL GAIT IMAGE SEQUENCES Laxmi Shaw Departmet of Applied Electroics ad Istrumetatio Silico Istitute of Techology, Bhubaeswar, Orissa, Idia laxmishaw1983@gmail.com

More information

The Efficiency of the Denver Developmental Screening Test with Rural Disadvantaged Preschool Children 1

The Efficiency of the Denver Developmental Screening Test with Rural Disadvantaged Preschool Children 1 Joural of Pediatric Psychology, Vol. 8, No. 3, 1983 The Efficiecy of the Dever Developmetal Screeig Test with Rural Disadvataged Preschool Childre 1 Deis C. Harper 2 ad David P. Wacker Departmet of Pediatrics,

More information

Customized modeling and simulations for control of motor neuroprostheses for walking Dosen, Strahinja

Customized modeling and simulations for control of motor neuroprostheses for walking Dosen, Strahinja Aalborg Uiversitet Customized modelig ad simulatios for cotrol of motor europrostheses for walkig Dose, trahija Publicatio date: 008 Documet Versio Publisher's PD, also kow as Versio of record Lik to publicatio

More information

An Automatic Denoising Method with Estimation of Noise Level and Detection of Noise Variability in Continuous Glucose Monitoring

An Automatic Denoising Method with Estimation of Noise Level and Detection of Noise Variability in Continuous Glucose Monitoring Preprit, 11th IFAC Symposium o Dyamics ad Cotrol of Process Systems, icludig Biosystems Jue 6-8, 16. NTNU, Trodheim, Norway A Automatic Deoisig Method with Estimatio of Noise Level ad Detectio of Noise

More information

Chapter 8 Student Lecture Notes 8-1

Chapter 8 Student Lecture Notes 8-1 Chapter 8 tudet Lecture Notes 8-1 Basic Busiess tatistics (9 th Editio) Chapter 8 Cofidece Iterval Estimatio 004 Pretice-Hall, Ic. Chap 8-1 Chapter Topics Estimatio Process Poit Estimates Iterval Estimates

More information

LIPIDS. Biomolecules soluble in organic solvents but not water (hydrophobic). Important in: n Cell membranes. n Storage for energy.

LIPIDS. Biomolecules soluble in organic solvents but not water (hydrophobic). Important in: n Cell membranes. n Storage for energy. LIPIDS Biomolecules soluble i orgaic solvets but ot water (hydrophobic). Importat i: Cell membraes Storage for eergy Vitamis (Steroid) hormoes Classified ito: i. Simple lipids (oils/fats, wax) ii. Complex

More information

Copy of: Proc. IEEE 1998 Int. Conference on Microelectronic Test Structures, Vol.11, March 1998

Copy of: Proc. IEEE 1998 Int. Conference on Microelectronic Test Structures, Vol.11, March 1998 Copy of: Proc. IEEE 998 It. Coferece o Microelectroic Test Structures, Vol., March 998 Wafer Level efect esity istributio Usig Checkerboard Test Structures Christopher Hess, Larg H. Weilad Istitute of

More information

Measuring the Ability to Identify One s Own Emotions: The Development and Initial Psychometric Evaluation of a Maximum-Performance Test

Measuring the Ability to Identify One s Own Emotions: The Development and Initial Psychometric Evaluation of a Maximum-Performance Test Sesatios Test 1 Measurig the Ability to Idetify Oe s Ow Emotios: The Developmet ad Iitial Psychometric Evaluatio of a Maximum-Performace Test Kimberly A. Barchard ad Jeifer Skeem Uiversity of Nevada, Las

More information

5/7/2014. Standard Error. The Sampling Distribution of the Sample Mean. Example: How Much Do Mean Sales Vary From Week to Week?

5/7/2014. Standard Error. The Sampling Distribution of the Sample Mean. Example: How Much Do Mean Sales Vary From Week to Week? Samplig Distributio Meas Lear. To aalyze how likely it is that sample results will be close to populatio values How probability provides the basis for makig statistical ifereces The Samplig Distributio

More information

Should We Care How Long to Publish? Investigating the Correlation between Publishing Delay and Journal Impact Factor 1

Should We Care How Long to Publish? Investigating the Correlation between Publishing Delay and Journal Impact Factor 1 Should We Care How Log to Publish? Ivestigatig the Correlatio betwee Publishig Delay ad Joural Impact Factor 1 Jie Xu 1, Jiayu Wag 1, Yuaxiag Zeg 2 1 School of Iformatio Maagemet, Wuha Uiversity, Hubei,

More information

INSULIN AND CARB COUNTING HEDYEH SANEIFARD PEDIATRIC ENDOCRINOLOGIST SHAHID BEHESHTI UNIVERSITY OF MEDICAL SCIENCE

INSULIN AND CARB COUNTING HEDYEH SANEIFARD PEDIATRIC ENDOCRINOLOGIST SHAHID BEHESHTI UNIVERSITY OF MEDICAL SCIENCE ISULI AD CARB COUTIG HEDYEH SAEIFARD PEDIATRIC EDOCRIOLOGIST SHAHID BEHESHTI UIVERSITY OF MEDICAL SCIECE WHAT IS ISULI? ISULI IS A HORMOE THAT IS ECESSARY: MOVES GLUCOSE FROM BLOOD ITO CELLS FOR EERGY

More information

The game of football has been played competitively at

The game of football has been played competitively at Joural of Athletic Traiig 2007;42(2):221 233 by the Natioal Athletic Traiers Associatio, Ic www.jouralofathletictraiig.org Descriptive Epidemiology of Collegiate Me s Football Ijuries: Natioal Collegiate

More information

Impact of a chirp and curvature in the electron energy distribution on the seeded Harmonic Generation FEL. Alberto Lutman,

Impact of a chirp and curvature in the electron energy distribution on the seeded Harmonic Generation FEL. Alberto Lutman, Ipact of a cirp ad curvature i te eectro eergy distributio o te seeded Haroic Geeratio FEL Aberto Luta, G. Peco,, P. Craievic,,. u, R. Vescovo Suary Mode descriptio Mateatica derivatio Seeded FEL Gree

More information

Routing-Oriented Update SchEme (ROSE) for Link State Updating

Routing-Oriented Update SchEme (ROSE) for Link State Updating 948 IEEE TRANSACTIONS ON COMMUNICATIONS, VOL. 56, NO. 6, JUNE 28 Routig-Orieted Update SchEme () for Lik State Updatig Nirwa Asari, Gag Cheg, ad Na Wag Abstract Few works have bee reported to address the

More information

The Strengths and Difficulties Questionnaire: A Research Note

The Strengths and Difficulties Questionnaire: A Research Note J. Child Psychol. Psychiat. Vol, 38. No, 5, pp. 581-586, 1997 Cambridge Uiversity Press 1997 Associatio for Child Psychology ad Psychiatry Prited i Great Britai, All rights reserved 0021-9630/97 $15.00

More information

Accuracy of Sequence Alignment and Fold Assessment Using Reduced Amino Acid Alphabets

Accuracy of Sequence Alignment and Fold Assessment Using Reduced Amino Acid Alphabets 63:986 995 (2006) Accuracy of Sequece Aligmet ad Fold Assessmet Usig Reduced Amio Acid Alphabets Fracisco Melo 1 * ad Marc A. Marti-Reom 2 1 Departameto de Geética Molecular y Microbiología, Facultad de

More information

Mechanism of Action: The Importance of Liver THR-β in NASH

Mechanism of Action: The Importance of Liver THR-β in NASH MGL-3196, a selective thyroid hormoe receptor-beta agoist, sigificatly decreases hepatic fat i NASH patiets at 12 weeks, the primary edpoit i a 36 week serial liver biopsy study Stephe Harriso 1, Sam Moussa

More information

A Comparison of Genetic Algorithm & Neural Network (MLP) In Patient Specific Classification of Epilepsy Risk Levels from EEG Signals

A Comparison of Genetic Algorithm & Neural Network (MLP) In Patient Specific Classification of Epilepsy Risk Levels from EEG Signals Egieerig Letters, 14:1, EL_14_1_18 (Advace olie publicatio: 1 February 007) A Compariso of Geetic Algorithm & Neural Network (MLP) I Patiet Specific Classificatio of Epilepsy Risk Levels from EEG Sigals

More information

Automated Conflict Detection Between Medical Care Pathways

Automated Conflict Detection Between Medical Care Pathways Automated Conflict Detection Between Medical Care Pathways Philip Weber, Bosco Filho, Mark Lee, Ian Litchfield, Ruth Backman University of Birmingham, UK School of Computer Science Institute of Applied

More information

Bayesian Sequential Estimation of Proportion of Orthopedic Surgery of Type 2 Diabetic Patients Among Different Age Groups A Case Study of Government

Bayesian Sequential Estimation of Proportion of Orthopedic Surgery of Type 2 Diabetic Patients Among Different Age Groups A Case Study of Government Bayesia Sequetial Estimatio of Proportio of Orthopedic Surgery of Type Diabetic Patiets Amog Differet Age Groups A Case Study of Govermet Medical College, Jammu-Idia Roohi Gupta, Priyaka Aad ad *Rahul

More information

Estimation Of Population Total Using Model-Based Approach: A Case Of HIV/AIDS In Nakuru Central District, Kenya

Estimation Of Population Total Using Model-Based Approach: A Case Of HIV/AIDS In Nakuru Central District, Kenya Estimatio Of Populatio otal Usig Model-Based Approach: A Case Of HIV/AIDS I akuru Cetral District, Keya Lagat Reube Cheruiyot, oui Beard Cheruiyot, Lagat Jaet Jepchumba Abstract: I this study we have explored

More information

Plantar Pressure Difference: Decision Criteria of Motor Relearning Feedback Insole for Hemiplegic Patients

Plantar Pressure Difference: Decision Criteria of Motor Relearning Feedback Insole for Hemiplegic Patients 22 4th Iteratioal Coferece o Bioiformatics ad Biomedical Techology IPCBEE vol.29 (22) (22) IACSIT Press, Sigapore Platar Pressure Differece: Decisio Criteria of Motor Relearig Feedback Isole for Hemiplegic

More information

Combining parametric low-dimensional ensemble postprocessing with reordering methods

Combining parametric low-dimensional ensemble postprocessing with reordering methods Quarterly Jouralof the RoyalMeteorologicalSociety Q. J. R. Meteorol. Soc. 142: 2463 2477, July 2016 B DOI:10.1002/qj.2839 Combiig parametric low-dimesioal esemble postprocessig with reorderig methods Roma

More information

04/11/2014 YES* YES YES. Attitudes = Evaluation. Attitudes = Unique Cognitive Construct. Attitudes Predict Behaviour

04/11/2014 YES* YES YES. Attitudes = Evaluation. Attitudes = Unique Cognitive Construct. Attitudes Predict Behaviour CLICK HERE : EXAMINING IMPLICIT AND EXPLICIT ATTITUDES TOWARD RAPE AND SEXUALLY AGGRESSIVE BEHAVIOUR IN MEN RECRUITED ONLINE Chatal A. Herma, Kevi L. Nues, & Natasha Loricz October 31 st, 2014 Carleto

More information

Standard deviation The formula for the best estimate of the population standard deviation from a sample is:

Standard deviation The formula for the best estimate of the population standard deviation from a sample is: Geder differeces Are there sigificat differeces betwee body measuremets take from male ad female childre? Do differeces emerge at particular ages? I this activity you will use athropometric data to carry

More information

The Nutritional Density Ratio Dilemma: Developing a Scale for Nutritional Value Paul D. Q. Campbell

The Nutritional Density Ratio Dilemma: Developing a Scale for Nutritional Value Paul D. Q. Campbell The Nutritioal Desity Ratio Dilemma: Developig a Scale for Nutritioal Value Paul D. Q. Campbell Shared by Paul D. Q. Campbell The author(s) would appreciate your feedback o this article. Click the yellow

More information

Interference Cancellation Algorithm for 2 2 MIMO System without Pilot in LTE

Interference Cancellation Algorithm for 2 2 MIMO System without Pilot in LTE Commuicatios ad Networ, 13, 5, 31-35 http://dx.doi.org/1.436/c.13.53b7 Published Olie September 13 (http://www.scirp.org/oural/c) Iterferece Cacellatio Algorithm for MIMO System without Pilot i LE Otgobayar

More information

ESTIMATING QUANTITIES AND TYPES OF FOOD WASTE AT THE CITY LEVEL: TECHNICAL APPENDICES

ESTIMATING QUANTITIES AND TYPES OF FOOD WASTE AT THE CITY LEVEL: TECHNICAL APPENDICES OCTOBER 2017 R-17-09-B ESTIMATING QUANTITIES AND TYPES OF FOOD WASTE AT THE CITY LEVEL: TECHNICAL APPENDICES AUTHOR Darby Hoover, Natural Resources Defese Coucil LEAD RESEARCHER Laura Moreo Table of Cotets

More information

EXPLORATION OF REACTANT-PRODUCT LIPID PAIRS IN MUTANT-WILD TYPE LIPIDOMICS EXPERIMENTS

EXPLORATION OF REACTANT-PRODUCT LIPID PAIRS IN MUTANT-WILD TYPE LIPIDOMICS EXPERIMENTS Kasas State Uiversity Libraries Aual Coferece o Applied Statistics i Agriculture - 4th Aual Coferece Proceedigs EXPLORATION OF REACTANT-PRODUCT LIPID PAIRS IN MUTANT-WILD TYPE LIPIDOMICS EXPERIMENTS Liaqig

More information

Measuring Dispersion

Measuring Dispersion 05-Sirki-4731.qxd 6/9/005 6:40 PM Page 17 CHAPTER 5 Measurig Dispersio PROLOGUE Comparig two groups by a measure of cetral tedecy may ru the risk for each group of failig to reveal valuable iformatio.

More information

Modelling Spatially Correlated Survival Data for Individuals with Multiple Cancers

Modelling Spatially Correlated Survival Data for Individuals with Multiple Cancers Modelling Spatially Correlated Survival Data for Individuals with Multiple Cancers Dipak K. Dey, Ulysses Diva and Sudipto Banerjee Department of Statistics University of Connecticut, Storrs. March 16,

More information

Chronic / Sublethal Bioassays

Chronic / Sublethal Bioassays Chroic / Sublethal Bioassays Tab N Dr. Todd S. Bridges KEY WORDS: Chroic Sublethal Toxicity, Neathes, Leptocheirus, Hyalella, Chiroomus Why Chroic Sublethal Toxicity Tests? Required by Federal regulatios

More information

A Supplement to Improved Likelihood Inferences for Weibull Regression Model by Yan Shen and Zhenlin Yang

A Supplement to Improved Likelihood Inferences for Weibull Regression Model by Yan Shen and Zhenlin Yang A Supplemet to Improved Likelihood Ifereces for Weibull Regressio Model by Ya She ad Zheli Yag More simulatio experimets were carried out to ivestigate the effect of differet cesorig percetages o the performace

More information

Computation Tree Logic vs. Linear Temporal Logic. Slides from Robert Bellarmine Krug University of Texas at Austin

Computation Tree Logic vs. Linear Temporal Logic. Slides from Robert Bellarmine Krug University of Texas at Austin Computation Tree Logic vs. Linear Temporal Logic Slides from Robert Bellarmine Krug University of Texas at Austin CTL vs. LTL (2 / 40) Outline 1. Some Definitions And Notation 2. LTL 3. CTL 4. CTL vs.

More information

RADIESSE Dermal Filler for the Correction of Moderate to Severe Facial Wrinkles and Folds, Such As Nasolabial Folds

RADIESSE Dermal Filler for the Correction of Moderate to Severe Facial Wrinkles and Folds, Such As Nasolabial Folds A PATIENT S GUIDE RADIESSE Dermal Filler for the Correctio of Moderate to Severe Facial Wrikles ad Folds, Such As Nasolabial Folds Read all the iformatio before you are treated with Radiesse dermal filler.

More information

PDF hosted at the Radboud Repository of the Radboud University Nijmegen

PDF hosted at the Radboud Repository of the Radboud University Nijmegen PDF hosted at the Radboud Repository of the Radboud Uiversity Nijmege The followig full text is a publisher's versio. For additioal iformatio about this publicatio click this lik. http://hdl.hadle.et/066/5655

More information

Autism Awareness Education. April 2018

Autism Awareness Education. April 2018 Autism Awareess Educatio April 2018 What is Autism Autism is a wide-spectrum metal disorder that is talked about every day i health circles, but few really kow all the facts about it. Research cotiues

More information

Estimating ground-level PM2.5 by fusing satellite and station observations: A geo-intelligent deep learning approach

Estimating ground-level PM2.5 by fusing satellite and station observations: A geo-intelligent deep learning approach Estimatig groud-level PM2.5 by fusig satellite ad statio observatios: A geo-itelliget deep learig approach Togwe Li, Huafeg She,2,, Qiagqiag Yua 2,4, Xueche Zhag, Liagpei Zhag 2,5 School of Resource ad

More information

Usage of Pythagorean Triple Sequence in OSPF

Usage of Pythagorean Triple Sequence in OSPF Commuicatios ad Network,,, 7-8 http://dx.doi.org/.6/c.. Published Olie February (http://www.scirp.org/joural/c) Usage of Pythagorea Triple Sequece i OSPF Simo Tembo, Ke-ichi Yukimatsu, Shohei Kamamura,

More information

CEREC Omnicam: scanning simplicity.

CEREC Omnicam: scanning simplicity. C A D / C A M S Y S T EM S I N S T RU M EN T S H YG I EN E S Y S T EM S T R E AT M EN T CEN T ER S I M AG I N G S Y S T EM S C A D / C A M came r as. M ade t o i s p i r e cerec Omicam ad cerec Bluecam.

More information

Children and adults with Attention-Deficit/Hyperactivity Disorder cannot move to the beat

Children and adults with Attention-Deficit/Hyperactivity Disorder cannot move to the beat 1 SUPPLEMENTARY INFORMATION Childre ad adults with Attetio-Deficit/Hyperactivity Disorder caot move to the beat Frédéric Puyjariet 1, Valeti Bégel 1,2, Régis Lopez 3,4, Delphie Dellacherie 5,6, & Simoe

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Itroductio 1 The olefi metathesis reactio is a powerful sythetic tool that scrambles the carbo atoms of carbo carbo double bods ad creates ew carbo carbo double bods. The mechaism of the reactio

More information

Biopharmaceutics Classification System (BCS) Biowaiver Assessment Report

Biopharmaceutics Classification System (BCS) Biowaiver Assessment Report Biopharmaceutics Classificatio System (BCS) Biowaiver Assessmet Report Bioequivalece Workig Group Versio 1- Feb 10, 2017 Versio Descriptio of Chage Author Effective Date v 1 Origial publicatio BE WG Feb

More information

On the number of palindromically rich words

On the number of palindromically rich words On the number of palindromically rich words Amy Glen School of Engineering & IT Murdoch University, Perth, Australia amyglen@gmailcom http://amyglenwordpresscom 59th AustMS Annual Meeting @ Flinders University

More information

n Need for surgery recently challenged n increasing adult literature n emerging pediatric evidence n Parents may want to avoid operation

n Need for surgery recently challenged n increasing adult literature n emerging pediatric evidence n Parents may want to avoid operation ANTIBIOTICS VS APPENDECTOMY FOR NON- PERFORATED APPENDICITIS Shaw D. St. Peter, M.D. The APPY trial Multiceter radomized cotrolled trial comparig appedectomy versus o-operative treatmet for acute o-perforated

More information

EFSA Guidance for BMD analysis Fitting Models & Goodness of Fit

EFSA Guidance for BMD analysis Fitting Models & Goodness of Fit EFSA Guidace for BMD aalysis Fittig Models & Goodess of Fit 1 st March 2017 OUTLINE Geeral priciples of model fittig & goodess of fit Cotiuous dose-respose data Cell proliferatio (CP) data Cadidate models

More information