CMU SCS CMU SCS CMU SCS CMU SCS

Size: px
Start display at page:

Download "CMU SCS CMU SCS CMU SCS CMU SCS"

Transcription

1 Carnegie Mellon Univ. Dept. of Computer Science /615 - DB Applications Lecture #16: Schema Refinement & Normalization - Functional Dependencies (R&G, ch. 19) motivation: good tables takes1 (ssn, c-id, grade, name, address) good or bad? Faloutsos & Pavlo SCS /615 2 takes1 (ssn, c-id, grade, name, address) Bad Q: why? Faloutsos & Pavlo SCS /615 3 Faloutsos & Pavlo SCS /

2 Bad Q: why? A: Redundancy space inconsistencies insertion/deletion anomalies Pitfalls insertion anomaly: jones registers, but takes no class - no place to store his address! Faloutsos & Pavlo SCS /615 5 Faloutsos & Pavlo /615 6 Pitfalls deletion anomaly: delete the last record of smith (we lose his address!) Bad Q: why? A: Redundancy space inconsistencies insertion/deletion anomalies (later ) Q: What caused the problem? Faloutsos & Pavlo /615 7 Faloutsos & Pavlo SCS /

3 A: name depends on the ssn define depends Overview why definition Armstrong s axioms closure and cover Faloutsos & Pavlo SCS /615 9 Faloutsos & Pavlo SCS / Definition: a functionally determines b Informally: if you know a, there is only one b to match Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

4 formally: X Y (t1[x] = t2 [x] t1[y] = t2 [y]) X, Y can be sets of attributes Q: other examples?? (no repeat courses) if two tuples agree on the X attribute, the *must* agree on the Y attribute, too (eg., if ssn is the same, so should address) Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS / ssn -> name, address Overview why definition Armstrong s axioms closure and cover Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

5 Overall goal for both lectures Given tables STUDENT(ssn,.) TAKES( ssn, cid, ) And FD (ssn ->, cid-> ) WRITE CODE To automatically generate good schemas Overall goal for both lectures we want tables where the attributes depend on the primary key, on the whole key, and nothing but the key Faloutsos & Pavlo SCS / Faloutsos & Pavlo / Closure of a set of FD: all implied FDs - eg.: ssn -> name, address imply, name, address ssn, c-id -> ssn Closure of a set of FD: all implied FDs - eg.: ssn -> name, address how to find all the implied ones, systematically? Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

6 Armstrong s axioms guarantee soundness and completeness: Reflexivity: eg., ssn, name -> ssn Augmentation eg., ssn->name then ssn,grade-> name,grade Transitivity ssn -> address address -> county-tax-rate THEN: ssn -> county-tax-rate Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS / Reflexivity: Augmentation: Transitivity: Additional rules: Union Decomposition Pseudo-transitivity sound and complete Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

7 Prove Union from three axioms: Prove Union from three axioms: Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS / Prove Pseudo-transitivity: Prove Decomposition Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

8 Overview why definition Armstrong s axioms closure and cover FDs - Closure F+ Given a set F of FD (on a schema) F+ is the set of all implied FD. Eg., ssn-> name, address }F Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS / FDs - Closure F+ FDs - Closure A+ ssn-> name, address ssn-> ssn ssn, c-id-> address c-id, address-> c-id... F+ Given a set F of FD (on a schema) A+ is the set of all attributes determined by A: ssn-> name, address {ssn}+ =?? }F Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

9 FDs - Closure A+ ssn-> name, address }F FDs - Closure A+ ssn-> name, address }F {ssn}+ ={ssn, {ssn}+ ={ssn, name, address } Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS / FDs - Closure A+ ssn-> name, address }F FDs - Closure A+ ssn-> name, address }F {c-id}+ =?? {c-id, ssn}+ =?? Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

10 FDs - Closure A+ FDs - A+ closure - not in book if A+ = {all attributes of table} then A is a superkey Diagrams A->BC (2) A C B Paint A red ; Faloutsos & Pavlo SCS / For each arrow, paint tip red, if base is red Faloutsos & Pavlo SCS / FDs - A+ closure - not in book Diagrams A->BC (2) Repeat, without fd (2): Paint A red ; For each arrow, paint tip red, if base is red A B Faloutsos & Pavlo SCS / C Given a set F of FD (on a schema) Fc is a minimal set of equivalent FD. Eg., ssn-> name, address ssn,name-> name, address ssn, c-id-> grade, name F Faloutsos & Pavlo SCS /

11 Fc ssn-> name, address ssn,name-> name, address ssn, c-id-> grade, name F why do we need it? define it properly compute it efficiently Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS / why do we need it? easier to compute candidate keys define it properly compute it efficiently define it properly - three properties 1) the RHS of every FD is a single attribute 2) the closure of Fc is identical to the closure of F (ie., Fc and F are equivalent) 3) Fc is minimal (ie., if we eliminate any attribute from the LHS or RHS of a FD, property #2 is violated Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

12 #3: we need to eliminate extraneous attributes. An attribute is extraneous if the closure is the same, before and after its elimination or if F-before implies F-after and vice-versa ssn-> name, address ssn,name-> name, address ssn, c-id-> grade, name F Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS / Algorithm: examine each FD; drop extraneous LHS or RHS attributes; or redundant FDs make sure that FDs have a single attribute in their RHS repeat until no change Trace algo for A->BC (2) Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

13 Trace algo for A->BC (2) split (2): A->B (2 ) A->C (2 ) A->B (2 ) A->C (2 ) A->C (2 ) Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS / B->C (1 ) A->C (2 ) (2 ): redundant (implied by (4), (3) and transitivity in (1), A is extraneous: (1),(3),(4) imply (1 ),(3),(4), and vice versa Faloutsos & Pavlo SCS / Faloutsos & Pavlo SCS /

14 B->C (1 ) BEFORE A->BC (2) AFTER nothing is extraneous all RHS are single attributes final and original set of FDs are equivalent (same closure) Faloutsos & Pavlo SCS / R(A,B,C) Faloutsos & Pavlo SCS / Overview - conclusions why definition Armstrong s axioms closure and cover Faloutsos & Pavlo SCS /

Carnegie Mellon Univ. Dept. of Computer Science Database Applications

Carnegie Mellon Univ. Dept. of Computer Science Database Applications Carnegie Mellon Univ. Dept. of Computer Science 15-415 - Database Applications Crash Recovery - part 1 (R&G, ch. 18) General Overview Preliminaries Write-Ahead Log - main ideas (Shadow paging) Write-Ahead

More information

Hoare Logic and Model Checking. LTL and CTL: a perspective. Learning outcomes. Model Checking Lecture 12: Loose ends

Hoare Logic and Model Checking. LTL and CTL: a perspective. Learning outcomes. Model Checking Lecture 12: Loose ends Learning outcomes Hoare Logic and Model Checking Model Checking Lecture 12: Loose ends Dominic Mulligan Based on previous slides by Alan Mycroft and Mike Gordon Programming, Logic, and Semantics Group

More information

KPU Registry ID Number: 1005 Date revised, 5 th December 2014 (This revised version was submitted prior to any data collection)

KPU Registry ID Number: 1005 Date revised, 5 th December 2014 (This revised version was submitted prior to any data collection) KPU Registry ID Number: 1005 Date revised, 5 th December 2014 (This revised version was submitted prior to any data collection) Study Registration For the Koestler Parapsychology Unit Study Registry 1.

More information

Study Registration for the KPU Study Registry Single-Trial Confirmatory Presentiment Experiment

Study Registration for the KPU Study Registry Single-Trial Confirmatory Presentiment Experiment KPU Registry ID Number: 1018 Date submitted: 16th December 2015 Study Registration for the KPU Study Registry Single-Trial Confirmatory Presentiment Experiment The registration information for the study

More information

MyDispense OTC exercise Guide

MyDispense OTC exercise Guide MyDispense OTC exercise Guide Version 5.0 Page 1 of 23 Page 2 of 23 Table of Contents What is MyDispense?... 4 Who is this guide for?... 4 How should I use this guide?... 4 OTC exercises explained... 4

More information

LUNG CANCER CLINICAL TRIALS

LUNG CANCER CLINICAL TRIALS UNDERSTANDING SERIES LUNG CANCER CLINICAL TRIALS 1-800-298-2436 LungCancerAlliance.org A GUIDE FOR THE PATIENT THE BASICS ABOUT CLINICAL TRIALS WITH MORE INFORMATION YOU CAN MAKE BETTER CHOICES. The decision

More information

Thinking Your Way to Success

Thinking Your Way to Success Thinking Your Way to Success SOUTH CAROLINA SCHOOL BOARDS ASSOCIATION PROFESSOR SARAH E. REDFIELD AUGUST 23, 2014 PART II TODAY s TOPICS DEBIASING IN MORE DETAIL WHY this topic: Manifestation Thinking

More information

CHAPTER 4 CONTENT LECTURE 1 November :28 AM

CHAPTER 4 CONTENT LECTURE 1 November :28 AM CHAPTER 4 By Radu Muresan University of Guelph Page 1 CHAPTER 4 CONTENT LECTURE 1 November 07 12 10:28 AM UNIPROCESSOR SCHEDULING Real Time Task Model Concepts Types of Real Time Tasks and Their Characteristics

More information

MEASURES OF ASSOCIATION AND REGRESSION

MEASURES OF ASSOCIATION AND REGRESSION DEPARTMENT OF POLITICAL SCIENCE AND INTERNATIONAL RELATIONS Posc/Uapp 816 MEASURES OF ASSOCIATION AND REGRESSION I. AGENDA: A. Measures of association B. Two variable regression C. Reading: 1. Start Agresti

More information

When Sample Size Matters: The Influence of Sample Size and Category Variability on Children s and Adults Inductive Reasoning

When Sample Size Matters: The Influence of Sample Size and Category Variability on Children s and Adults Inductive Reasoning When Sample Size Matters: The Influence of Sample Size and Category Variability on Children s and Adults Inductive Reasoning Chris A. Lawson (clawson@andrew.cmu.edu) Anna F. Fisher (fisher49@andrew.cmu.edu)

More information

Causal Loop Diagrams

Causal Loop Diagrams Causal Loop Diagrams A causal loop diagram (CLD) is a qualitative method for visualizing how different variables in a system are interrelated and how they influence each other to create system dynamics.

More information

PYSC 224 Introduction to Experimental Psychology

PYSC 224 Introduction to Experimental Psychology PYSC 224 Introduction to Experimental Psychology Session 3 Nature of scientific methodology Lecturer:, Dept. of Psychology Contact Information: mamankwah-poku@ug.edu.gh College of Education School of Continuing

More information

QUICK START GUIDE TYMPANOMETRY AND AUDIOMETRY FOR SENTIERO DESKTOP DEVICES

QUICK START GUIDE TYMPANOMETRY AND AUDIOMETRY FOR SENTIERO DESKTOP DEVICES DEVICE CONNECTORS On/off button Headphones or second transducer Power supply Air pump USB cable Label printer Patient response Probe button Make sure all your appropriate transducers are connected (Tymp

More information

Free DISC Style Report for James Craddock

Free DISC Style Report for James Craddock Free DISC Style Report for James Craddock Work Environment Version Your ID Number 267376 Assessment Completed Jul 18, 2016 at www.discpersonalitytesting.com This report is an estimate of your DISC style

More information

Horizon Research. Public Trust and Confidence in Charities

Horizon Research. Public Trust and Confidence in Charities Horizon Research Public Trust and Confidence in Charities Conducted for Charities Services New Zealand Department of Internal Affairs May 2014 Contents EXECUTIVE SUMMARY... 3 Terminology... 8 1. Overall

More information

#20 Separation of Alcohols Using Gas Chromatography

#20 Separation of Alcohols Using Gas Chromatography #20 Separation of Alcohols Using Gas Chromatography Purpose: The purpose of this experiment is to determine the composition of an unknown alcohol mixture by using gas chromatography. Introduction: A gas

More information

Co-host Erica Johnson interviewed several people in the episode, titled Cure or Con? Among them:

Co-host Erica Johnson interviewed several people in the episode, titled Cure or Con? Among them: OFFICE OF THE OMBUDSMAN English Services Review: Marketplace program about homeopathy May 11, 2011 REVIEW CBC Television s Marketplace program devoted its January 14, 2011, episode to an exploration on

More information

Critical Thinking and Reading Lecture 15

Critical Thinking and Reading Lecture 15 Critical Thinking and Reading Lecture 5 Critical thinking is the ability and willingness to assess claims and make objective judgments on the basis of well-supported reasons. (Wade and Tavris, pp.4-5)

More information

Patient information brochure

Patient information brochure Clinical Development and Medical Affairs Patient information brochure 1. European Medicines Agency. Nilotinib Summary of Product Characteristics. March 2013. Available from: www.ema.europa.eu/ema/index.

More information

NFT User Guide Release Date 01/09/2018

NFT User Guide Release Date 01/09/2018 NFT User Guide Release Date 01/09/2018 Center for Information Management, Inc. Table of Contents NFT List... 4 NFT Process Overview and Features... 10 NFT Process Steps... 12 Step 1: Agent clicks [Add]

More information

Bowel health and screening: carers guide. A booklet for carers of people who use easy read materials

Bowel health and screening: carers guide. A booklet for carers of people who use easy read materials Bowel health and screening: carers guide A booklet for carers of people who use easy read materials Contents About this booklet Page 3: Page 4: Page 5: Page 6: Page 6: Page 7: Page 8: Page 10: Page 10:

More information

Alternative splicing. Biosciences 741: Genomics Fall, 2013 Week 6

Alternative splicing. Biosciences 741: Genomics Fall, 2013 Week 6 Alternative splicing Biosciences 741: Genomics Fall, 2013 Week 6 Function(s) of RNA splicing Splicing of introns must be completed before nuclear RNAs can be exported to the cytoplasm. This led to early

More information

Clinical Research Applied to Daily Clinical Practice; Learn From Your Colleagues How to Get Answers to Questions you Always Wanted to Ask

Clinical Research Applied to Daily Clinical Practice; Learn From Your Colleagues How to Get Answers to Questions you Always Wanted to Ask Clinical Research Applied to Daily Clinical Practice; Learn From Your Colleagues How to Get Answers to Questions you Always Wanted to Ask Karen Beattie, Ph.D. Assistant Professor Dept. of Medicine McMaster

More information

Measurement of Constructs in Psychosocial Models of Health Behavior. March 26, 2012 Neil Steers, Ph.D.

Measurement of Constructs in Psychosocial Models of Health Behavior. March 26, 2012 Neil Steers, Ph.D. Measurement of Constructs in Psychosocial Models of Health Behavior March 26, 2012 Neil Steers, Ph.D. Importance of measurement in research testing psychosocial models Issues in measurement of psychosocial

More information

Plan Recognition through Goal Graph Analysis

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

More information

DENTRIX ENTERPRISE 8.0.5

DENTRIX ENTERPRISE 8.0.5 DENTRIX ENTERPRISE 8.0. GETTING STARTED WITH THE CURRENT CLINICAL NOTES www.dentrixenterprise.com -800-DSCHEIN Getting Started with the Current Clinical Notes Working with Clinical Notes Keeping accurate

More information

D296 To be eligible for admission to the curriculum for the degree of Master of Science in Implant Dentistry, a candidate shall:

D296 To be eligible for admission to the curriculum for the degree of Master of Science in Implant Dentistry, a candidate shall: D.47/817 REGULATIONS FOR THE DEGREE OF MASTER OF SCIENCE IN IMPLANT DENTISTRY [MSc(ImplantDent)] These regulations apply to candidates admitted in 2017-2018 and thereafter. (See also General Regulations

More information

Nord.cTracICA.Cr USER'S MANUAL A CAUTION QUESTIONS? .. Visit our website'at. new products, prizes, fitness tips, and much more!

Nord.cTracICA.Cr USER'S MANUAL A CAUTION QUESTIONS? .. Visit our website'at. new products, prizes, fitness tips, and much more! Nord.cTracICA.Cr Model No. NTCW90907.1 Serial No. Write the serial number in the space above for reference. _ USER'S MANUAL Serial Number Decal (under frame) QUESTIONS? As a manufacturer, we are committed

More information

CASY Counselling Services for Schools

CASY Counselling Services for Schools CASY Counselling Services for Schools Registered Charity Number 1092938 A Company Limited by Guarantee in England and Wales. Registered number 4310724 16 London Rd, Newark, Nottinghamshire NG24 1TW T:

More information

Measuring association in contingency tables

Measuring association in contingency tables Measuring association in contingency tables Patrick Breheny April 8 Patrick Breheny Introduction to Biostatistics (171:161) 1/25 Hypothesis tests and confidence intervals Fisher s exact test and the χ

More information

Student Minds Turl Street, Oxford, OX1 3DH

Student Minds Turl Street, Oxford, OX1 3DH Who are we? Student Minds is a national charity working to encourage peer support for student mental health. We encourage students to have the confidence to talk and to listen. We aim to bring people together

More information

Chapter 9: Cellular Respiration: Harvesting Chemical Energy

Chapter 9: Cellular Respiration: Harvesting Chemical Energy AP Biology Reading Guide Name: Date: Period Chapter 9: Cellular Respiration: Harvesting Chemical Energy Overview: Before getting involved with the details of cellular respiration and photosynthesis, take

More information

CH.2 LIGHT AS A WAVE

CH.2 LIGHT AS A WAVE CH.2 LIGHT AS A WAVE LW: 2.4.1 WARM-UP Students observe which types of light from the sun reach Earth s surface. (5 min) Light that Reaches Earth's Surface Earth s atmosphere can absorb some wavelengths

More information

Conflict of Interest. Motivational Interviewing (MI) What is Motivational Interviewing. Empathy & MI spirit Consistent use of MI

Conflict of Interest. Motivational Interviewing (MI) What is Motivational Interviewing. Empathy & MI spirit Consistent use of MI Conflict of Interest Motivational Interviewing (MI) The speaker has no conflict of interest t to disclose Edna Hamera PhD APRN Upon completion you will be able to: Identify philosophy and mechanisms of

More information

Complementary ICD-10 document for the

Complementary ICD-10 document for the Complementary ICD-10 document for the Platinum System Outsource Billing Service 1. Introduction The ICD-10 update is mandatory if you bill insurance claims electronically (837) or on paper (HCFA). We had

More information

Annual General Meeting 17 July 2018

Annual General Meeting 17 July 2018 Annual General Meeting 17 July 2018 Notice of Annual General Meeting Notice is hereby given that the 29th Annual General Meeting of Macmillan Cancer Support (the Charity ) will be held on Tuesday 17 July

More information

Plan Recognition through Goal Graph Analysis

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

More information

Guide Book. Guide Book

Guide Book. Guide Book The Fastest And Easiest Way To Remove Subconscious Obstacles To Weight Loss And Feel Great Fast Guide Book Guide Book With Rena Greenberg The Fastest and Easiest Way to Remove Subconscious Obstacles To

More information

By Hui Bian Office for Faculty Excellence

By Hui Bian Office for Faculty Excellence By Hui Bian Office for Faculty Excellence 1 Email: bianh@ecu.edu Phone: 328-5428 Location: 1001 Joyner Library, room 1006 Office hours: 8:00am-5:00pm, Monday-Friday 2 Educational tests and regular surveys

More information

Colorado State University. Incoming Athlete. Summer Program

Colorado State University. Incoming Athlete. Summer Program Incoming Athlete Summer Program Dear Incoming Freshmen, Welcome to Colorado State University! In this packet you will find your summer strength and conditioning program to help prepare you for the demands

More information

GPP 501 Microeconomic Analysis for Public Policy Fall 2017

GPP 501 Microeconomic Analysis for Public Policy Fall 2017 GPP 501 Microeconomic Analysis for Public Policy Fall 2017 Given by Kevin Milligan Vancouver School of Economics University of British Columbia Lecture Sept 6th: Consumer Choice GPP501: Lecture Sept 6

More information

INTERVIEWS II: THEORIES AND TECHNIQUES 5. CLINICAL APPROACH TO INTERVIEWING PART 1

INTERVIEWS II: THEORIES AND TECHNIQUES 5. CLINICAL APPROACH TO INTERVIEWING PART 1 INTERVIEWS II: THEORIES AND TECHNIQUES 5. CLINICAL APPROACH TO INTERVIEWING PART 1 5.1 Clinical Interviews: Background Information The clinical interview is a technique pioneered by Jean Piaget, in 1975,

More information

Flat Belly Fix Review

Flat Belly Fix Review Flat Belly Fix Review Should I begin by saying weight loss is an issue that concerns all of us? Well, it is of no doubt that at the age of 35 and beyond, most people try every single technique, diet plan

More information

STATE OF MINNESOTA BOARD OF ANIMAL HEALTH

STATE OF MINNESOTA BOARD OF ANIMAL HEALTH This document is made available electronically by the Minnesota Legislative Reference Library as part of an ongoing digital archiving project. http://www.leg.state.mn.us/lrl/sonar/sonar.asp STATE OF MINNESOTA

More information

By: Anne Stewart, M.A. Licensed Therapist

By: Anne Stewart, M.A. Licensed Therapist Danny Pettry s E-Book Series Anne Stewart s Tips for Helping 1 http:// By: Anne Stewart, M.A. Licensed Therapist Important: You have full permission to email, print, and distribute this e-book to anyone

More information

Sound Attenuation and Test Strategies for Generator Set Installations

Sound Attenuation and Test Strategies for Generator Set Installations Sound Attenuation and Test Strategies for Generator Set Installations PowerHour webinar series for consulting engineers Experts you trust. Excellence you count on. April 10, 2018 11:00 PDT / 13:00 CDT

More information

Items in the package:

Items in the package: Intended Use: The EasyLife Hb Monitoring System is designed for in vitro diagnostic use only (external use only), and is suitable for self-testing. The system is for healthcare professionals and persons

More information

Investigating the effect of concentration of blackcurrant squash on osmosis in chipped potatoes

Investigating the effect of concentration of blackcurrant squash on osmosis in chipped potatoes Investigating the effect of concentration of blackcurrant on osmosis in chipped potatoes The purpose of this investigation is:. to explore what happens to chipped potatoes in different concentrations of

More information

Module A assessment. After completing your assessment please return it to your tutor/assessor

Module A assessment. After completing your assessment please return it to your tutor/assessor CERTIFICATE IN THE PRINCIPLES OF DEMENTIA CARE Module A assessment After completing your assessment please return it to your tutor/assessor ADVICE TO ALL CANDIDATES Please complete your personal details

More information

GCSE. Psychology. Mark Scheme for June General Certificate of Secondary Education Unit B543: Research in Psychology

GCSE. Psychology. Mark Scheme for June General Certificate of Secondary Education Unit B543: Research in Psychology GCSE Psychology General Certificate of Secondary Education Unit B543: Research in Psychology Mark Scheme for June 2011 Oxford Cambridge and RSA Examinations OCR (Oxford Cambridge and RSA) is a leading

More information

LAB 7: THE SCIENTIFIC METHOD

LAB 7: THE SCIENTIFIC METHOD LAB 7: THE SCIENTIFIC METHOD Making an observation and asking an interesting question The first steps in the scientific method include making an observation, doing some background research on the topic,

More information

EXERCISE STATION SIGNS. ThePEspecialist.com

EXERCISE STATION SIGNS. ThePEspecialist.com 25 EXERCISE STATION SIGNS ThePEspecialist.com Copyright 2016 by Ben Landers All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any form or by any means,

More information

Title:Prediction of poor outcomes six months following total knee arthroplasty in patients awaiting surgery

Title:Prediction of poor outcomes six months following total knee arthroplasty in patients awaiting surgery Author's response to reviews Title:Prediction of poor outcomes six months following total knee arthroplasty in patients awaiting surgery Authors: Eugen Lungu (eugen.lungu@umontreal.ca) François Desmeules

More information

7 Action. 7.1 Choice. Todd Davies, Decision Behavior: Theory and Evidence (Spring 2010) Version: June 4, 2010, 2:40 pm

7 Action. 7.1 Choice. Todd Davies, Decision Behavior: Theory and Evidence (Spring 2010) Version: June 4, 2010, 2:40 pm 7 Action Todd Davies, Decision Behavior: Theory and Evidence (Spring 2010) We can now apply beliefs, preferences, and confidence to choices between different possible actions or options. 7.1 Choice DEFINITION

More information

VENTRIGUARD Technology Quadruple antimicrobial effect

VENTRIGUARD Technology Quadruple antimicrobial effect Ventriguard ventriguard antimicrobial catheter for temporary ventricular drainage Long-term antimicrobial effect proved under practice-equivalent test conditions Prevents bacterial and mycotic infections

More information

COURSE. Based on the works of L. Ron Hubbard. Published by ABLE International 7065 Hollywood Blvd Los Angeles, CA USA

COURSE. Based on the works of L. Ron Hubbard. Published by ABLE International 7065 Hollywood Blvd Los Angeles, CA USA HANDLING SUPPRESSION COURSE Based on the works of L. Ron Hubbard Published by ABLE International 7065 Hollywood Blvd Los Angeles, CA 90028 USA Copyright 2003 L. Ron Hubbard Library. All Rights Reserved.

More information

Hard Edges Scotland: Lived Experience Reference Group

Hard Edges Scotland: Lived Experience Reference Group Hard Edges Scotland: Lived Experience Reference Group May 2017 1. Lived Experience Reference Group: Role and Membership 1.1 The Lived Experience Reference Group was established as a core part of the Hard

More information

What s New in itero Scanner 4.0

What s New in itero Scanner 4.0 What s New in itero Scanner 4.0 New User Interface itero has a new user interface with a completely new look and feel. The new user interface is designed to: - Maximizes the use of available screen space

More information

Designing Experiments. Scientific Method Review Parts of a Controlled Experiment Writing Hypotheses

Designing Experiments. Scientific Method Review Parts of a Controlled Experiment Writing Hypotheses Designing Experiments Scientific Method Review Parts of a Controlled Experiment Writing Hypotheses The Scientific Method The Arab scientist Alhazen stressed the importance of experimentation in his Book

More information

Paediatric Certificates Information Booklet June 2017

Paediatric Certificates Information Booklet June 2017 Paediatric Certificates Information Booklet June 2017 Page 1 of 26 1 NZAS Paediatric Certificates Version 8 Updated 08/07/2017 Contents 1. Overview... 4 2. Obtaining a Paediatric Certificate... 6 2.1 Applying

More information

Point of Care Testing. Bedside Glucose Meter

Point of Care Testing. Bedside Glucose Meter Point of Care Testing Bedside Glucose Meter 11/2017 Regulatory Overview Bedside glucose is a point of care lab test and YOU are performing this lab test under the Lab s CLIA license. All lab tests are

More information

BLY1AP. General Certificate of Secondary Education March Unit Biology B1a (Human Biology) BIOLOGY Unit Biology B1a (Human Biology)

BLY1AP. General Certificate of Secondary Education March Unit Biology B1a (Human Biology) BIOLOGY Unit Biology B1a (Human Biology) Surname Centre Number Other Names Candidate Number Candidate Signature General Certificate of Secondary Education March 2008 SCIENCE A Unit Biology B1a (Human Biology) BIOLOGY Unit Biology B1a (Human Biology)

More information

NEED A SAMPLE SIZE? How to work with your friendly biostatistician!!!

NEED A SAMPLE SIZE? How to work with your friendly biostatistician!!! NEED A SAMPLE SIZE? How to work with your friendly biostatistician!!! BERD Pizza & Pilots November 18, 2013 Emily Van Meter, PhD Assistant Professor Division of Cancer Biostatistics Overview Why do we

More information

Application steps for Chlorhexidine gel to the newborn umbilical cord in the immediate post delivery period

Application steps for Chlorhexidine gel to the newborn umbilical cord in the immediate post delivery period Application steps for Chlorhexidine gel to the newborn umbilical cord in the immediate post delivery period Daily use of 7.% Chlorhexidine digluconate which delivers % Chlorhexidine to prevent infection

More information

National Diploma in Acupuncture (Level 7) with strands in Traditional Chinese Medicine, and Western Medical Science

National Diploma in Acupuncture (Level 7) with strands in Traditional Chinese Medicine, and Western Medical Science NQF Ref 0513 Version 2 Page 1 of 6 National Diploma in Acupuncture (Level 7) with strands in Traditional Chinese Medicine, and Western Medical Science Level 7 Credits 178-260 This qualification is expiring.

More information

Formalizing and Enforcing Purpose Restrictions in Privacy Policies

Formalizing and Enforcing Purpose Restrictions in Privacy Policies Formalizing and Enforcing Purpose Restrictions in Privacy Policies Michael Carl Tschantz Carnegie Mellon University Email: mtschant@cs.cmu.edu Anupam Datta Carnegie Mellon University Email: danupam@cmu.edu

More information

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

Objectives. Quantifying the quality of hypothesis tests. Type I and II errors. Power of a test. Cautions about significance tests Objectives Quantifying the quality of hypothesis tests Type I and II errors Power of a test Cautions about significance tests Designing Experiments based on power Evaluating a testing procedure The testing

More information

Simple Caption Editor User Guide. May, 2017

Simple Caption Editor User Guide. May, 2017 Simple Caption Editor User Guide May, 2017 Table of Contents Overview Type Mode Time Mode Submitting your work Keyboard Commands Video controls Typing controls Timing controls Adjusting timing in the timeline

More information

A Virtual Glucose Homeostasis Model for Verification, Simulation and Clinical Trials

A Virtual Glucose Homeostasis Model for Verification, Simulation and Clinical Trials A Virtual Glucose Homeostasis Model for Verification, Simulation and Clinical Trials Neeraj Kumar Singh INPT-ENSEEIHT/IRIT University of Toulouse, France September 14, 2016 Neeraj Kumar Singh A Perspective

More information

ENGAGING PRIMARY CARE IN BOWEL SCREENING

ENGAGING PRIMARY CARE IN BOWEL SCREENING ENGAGING PRIMARY CARE IN BOWEL SCREENING GP GOOD PRACTICE GUIDE SCOTLAND VERSION ENGAGING PRIMARY CARE IN BOWEL SCREENING GP GOOD PRACTICE GUIDE SCOTLAND VERSION CONTENT 2 Background & information on the

More information

The Great Snail Race

The Great Snail Race Activity Background Photosynthesis is the process by which plants and other organisms convert light energy from the Sun or other light source into useable, chemical energy stored in a molecule called ATP.

More information

Chapter 3 Software Packages to Install How to Set Up Python Eclipse How to Set Up Eclipse... 42

Chapter 3 Software Packages to Install How to Set Up Python Eclipse How to Set Up Eclipse... 42 Table of Contents Preface..... 21 About the Authors... 23 Acknowledgments... 24 How This Book is Organized... 24 Who Should Buy This Book?... 24 Where to Find Answers to Review Questions and Exercises...

More information

Bio-logic AuDX PRO FLEX Screening tympanometry and audiometry Quick start guide

Bio-logic AuDX PRO FLEX Screening tympanometry and audiometry Quick start guide AuDX PRO FLEX Screening tympanometry and audiometry Quick start guide Doc. No.7-26-1374-EN/00 Part No.7-26-13704-EN Natus Medical Denmark ApS. +45 45 75 55 55. otoinfo@natus.com Natus Medical Incorporated.

More information

7 PRINCIPLES TO QUIT SMOKING FOREVER

7 PRINCIPLES TO QUIT SMOKING FOREVER 1 7 Principles To Quit Smoking ForEVER DRANTONIOHOWELL.COM 7 PRINCIPLES TO QUIT SMOKING FOREVER WHAT YOU NEED TO KNOW? Antonio Howell, M.D. 5/1/2012 2 7 Principles To Quit Smoking ForEVER 7 PRINCIPLES

More information

Real Statistics: Your Antidote to Stat 101

Real Statistics: Your Antidote to Stat 101 Real Statistics: Your Antidote to Stat 101 Norm Matloff Department of Computer Science University of California at Davis http://heather.cs.ucdavis.edu/matloff.html Walnut Creek Library April 26, 2011 These

More information

Toolkit for Hosting a Community Event

Toolkit for Hosting a Community Event Mt. Washington Pediatric Hospital Toolkit for Hosting a Community Event 1708 West Rogers Avenue Baltimore, MD 21209 mwph.org Thank You for your interest in raising funds for Mt. Washington Pediatric Hospital

More information

Tobacco Use & Multiple Risk Factors:

Tobacco Use & Multiple Risk Factors: Overview Tobacco Use & Multiple Risk Factors: Opportunities & for Concurrent Behavior Change Relation between mental health, physical health, and health behaviors Relation between tobacco and other health

More information

Buy The Complete Version of This Book at Booklocker.com:

Buy The Complete Version of This Book at Booklocker.com: Safe and effective fitness training for the Baby Boomer The Baby Boomer's Guide To Fitness Buy The Complete Version of This Book at Booklocker.com: http://www.booklocker.com/p/books/2655.html?s=pdf THE

More information

Medication Assisted Treatment Specialist - MATS

Medication Assisted Treatment Specialist - MATS Medication Assisted Treatment Specialist - MATS Candidate Guide December 2008 TABLE OF CONTENTS Purpose of the Candidate Guide 3 Examination Content 3 Domains 3-4 Sample Questions 5-6 Sample Examination

More information

Reference Dependence In the Brain

Reference Dependence In the Brain Reference Dependence In the Brain Mark Dean Behavioral Economics G6943 Fall 2015 Introduction So far we have presented some evidence that sensory coding may be reference dependent In this lecture we will

More information

PEER REVIEW HISTORY ARTICLE DETAILS VERSION 1 - REVIEW

PEER REVIEW HISTORY ARTICLE DETAILS VERSION 1 - REVIEW PEER REVIEW HISTORY BMJ Open publishes all reviews undertaken for accepted manuscripts. Reviewers are asked to complete a checklist review form (http://bmjopen.bmj.com/site/about/resources/checklist.pdf)

More information

DAT Next Generation. FAQs

DAT Next Generation. FAQs DAT Next Generation FAQs DAT TM Next Generation Frequently Asked Questions What does DAT Next Generation measure? The Differential Aptitude Tests, or DAT for short, are a battery of tests designed to assess

More information

Book 3: Lab Procedures Book 3: Ch. 1: The Hypothesis and Overview

Book 3: Lab Procedures Book 3: Ch. 1: The Hypothesis and Overview Book 3: Lab Procedures Book 3: Ch. 1: The Hypothesis and Overview 13 Introduction This experiment will investigate how cocaine acts on dopamine neurons in the brain. Cocaine is a drug of abuse that increases

More information

Chronic Pain Management Workflow Getting Started: Wrenching In Assessments into Favorites (do once!)

Chronic Pain Management Workflow Getting Started: Wrenching In Assessments into Favorites (do once!) Chronic Pain Management Workflow Getting Started: Wrenching In Assessments into Favorites (do once!) 1. Click More Activities to star flowsheets into your chunky button screen. 3. Use the search function

More information

Readings: Required book: Batinovich, Sara Laufer. Sound Sense: Living and learning with hearing loss Gallaudet University Press, Washington D.C.

Readings: Required book: Batinovich, Sara Laufer. Sound Sense: Living and learning with hearing loss Gallaudet University Press, Washington D.C. Office: SLHS 523 Tel: 626-0111 Email: jdean1@email.arizona.edu Office hours: TBA SLHS 255: Hearing, Health and Society James Dean, AuD, MED Dept. Speech, Language & Hearing Sciences School of Mind, Brain

More information

Glossary. Ó 2010 John Wiley & Sons, Ltd

Glossary. Ó 2010 John Wiley & Sons, Ltd Glossary The majority of the definitions within this glossary are based on, but are only a selection from, the comprehensive list provided by Day (2007) in the Dictionary of Clinical Trials. We have added

More information

Address : S. 27th Street, Suite 201 Franklin, Wisconsin, WebSite : https://www.patienttrak.net/review-site-monitoring

Address : S. 27th Street, Suite 201 Franklin, Wisconsin, WebSite : https://www.patienttrak.net/review-site-monitoring Address : - 7441 S. 27th Street, Suite 201 Franklin, Wisconsin,53132 Email ID : info@patienttra.net Phone No : 888-766-2862 WebSite : https://www.patienttrak.net/review-site-monitoring There are so many

More information

Splitting of the characteristic K-alpha doublet radiation of molybdenum (Item No.: P )

Splitting of the characteristic K-alpha doublet radiation of molybdenum (Item No.: P ) Splitting of the characteristic K-alpha doublet radiation of molybdenum (Item No.: P2540701) Curricular Relevance Area of Expertise: ILIAS Education Level: Physik Topic: Hochschule Subtopic: Moderne Physik

More information

Section One: Becoming a Recognized Student Organization

Section One: Becoming a Recognized Student Organization Section One: Becoming a Recognized Student Organization 1. Register through Involved@Webster Login to Involved@Webster through your Connections account Under Organizations, click on Register a New Organization

More information

Attention and Concentration Problems Following Traumatic Brain Injury. Patient Information Booklet. Talis Consulting Limited

Attention and Concentration Problems Following Traumatic Brain Injury. Patient Information Booklet. Talis Consulting Limited Attention and Concentration Problems Following Traumatic Brain Injury Patient Information Booklet Talis Consulting Limited What are Attention and Concentration? Attention and concentration are two skills

More information

The Leeds Reliable Change Indicator

The Leeds Reliable Change Indicator The Leeds Reliable Change Indicator Simple Excel (tm) applications for the analysis of individual patient and group data Stephen Morley and Clare Dowzer University of Leeds Cite as: Morley, S., Dowzer,

More information

Rational Choice Theory I: The Foundations of the Theory

Rational Choice Theory I: The Foundations of the Theory Rational Choice Theory I: The Foundations of the Theory Benjamin Ferguson Administrative Keep in mind that your second papers are due this coming Friday at midnight. They should be emailed to me, roughly

More information

VINAYAKA MISSIONS SIKKIM UNIVERSITY

VINAYAKA MISSIONS SIKKIM UNIVERSITY Programme: BA(English) Session: 2015-16 Full Marks: 10 Assignment No. 1 Last Date of Submission: 31 st March 2016 NOTE : All Sections in the Assignments are compulsory to be attempted as per Instructions.

More information

Nafisa Cassimjee University of Pretoria, South Africa. Raegan Murphy University College Cork, Ireland

Nafisa Cassimjee University of Pretoria, South Africa. Raegan Murphy University College Cork, Ireland Impulsive and rigid temperament subtypes and executive functioning an exploratory study of temperament configurations and neuropsychological performance Raegan Murphy University College Cork, Ireland Nafisa

More information

HEES for Spanish- Speaking Customers

HEES for Spanish- Speaking Customers Southern California Edison HEES for Spanish- Speaking Customers Study ID: SCE0291.01 Addendum to Study ID SCE 0275.01 September 2010 Prepared for: Caroline Chen, Southern California Edison Prepared by:

More information

TOWSON UNIVERSITY CHAPTER ASSESSMENT PROGRAM. Fall 2017

TOWSON UNIVERSITY CHAPTER ASSESSMENT PROGRAM. Fall 2017 TOWSON UNIVERSITY CHAPTER ASSESSMENT PROGRAM Fall 2017 The Towson Chapter Assessment Program (CAP) was modeled after the Univ. of Delaware's CAP with permission in 2008 Chapter Name: Spring 2017 Staff

More information

Behavioral Economics - Syllabus

Behavioral Economics - Syllabus Behavioral Economics - Syllabus 1 st Term - Academic Year 2016/2017 Professor Luigi Mittone luigi.mittone@unitn.it Teaching Assistant Viola Saredi violaluisa.saredi@unitn.it Course Overview The course

More information

Driving and Epilepsy. When can you not drive? 1. Within 6 months of your last epileptic seizure.

Driving and Epilepsy. When can you not drive? 1. Within 6 months of your last epileptic seizure. Driving and Epilepsy Does epilepsy disqualify you from driving? It is important to note that having epilepsy does not automatically disqualify you from being legally permitted to drive in Ontario. In fact,

More information

TOWSON UNIVERSITY CHAPTER ASSESSMENT PROGRAM. Spring 2017

TOWSON UNIVERSITY CHAPTER ASSESSMENT PROGRAM. Spring 2017 TOWSON UNIVERSITY CHAPTER ASSESSMENT PROGRAM Spring 2017 The Towson Chapter Assessment Program (CAP) was modeled after the Univ. of Delaware's CAP with permission in 2008 Chapter Name: Spring 2017 Staff

More information

GCE PHYSICAL EDUCATION PE2 UNIT GUIDE

GCE PHYSICAL EDUCATION PE2 UNIT GUIDE GCE PHYSICAL EDUCATION PE2 UNIT GUIDE Content Title: Application of Principles of Training Key points Application of the principles of training Specific examples of how to apply the principles of specificity,

More information