#7 Still more DP, Scoring Matrices 9/5/07

Size: px
Start display at page:

Download "#7 Still more DP, Scoring Matrices 9/5/07"

Transcription

1 #7 Still more DP, Scoring Matrices 9/5/7 BB 444/544 Lecture 7 Still more: Dynamic Programming Global vs Local lignment Scoring Matrices & lignment Statistics BLS nope #7_Sept5 Required Reading (before lecture) Last week: - for Lectures 4-7 Pairwise Sequence lignment, Dynamic Programming, Global vs Local lignment, Scoring Matrices, Statistics Xiong: hp 3 Eddy: What is Dynamic Programming? 4 Nature Biotechnol :99 Wed Sept 5 - for Lecture 7 & Lab 3 Database Similarity Searching: BLS hp 4 - pp 5-6 Fri Sept - for Lecture 8 BLS variations; BLS vs FS hp 4 - pp 5-6 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 ssignments & nnouncements hp 3- Sequence lignment ues Sept 4 - Lab # Exercise Writeup due by 5 PM Send via to Pete Zaback petez@iastate.edu (For now, no late penalty - just send SP) Wed Sept 5 - Notes for Lecture 5 posted online - HW# posted online & sent via & handed out in class Fri Sept 4 - HW# Due by 5 PM Fri Sept - Exam # BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 3 SEION II SEQUENE LIGNMEN Xiong: hp 3 Pairwise Sequence lignment Evolutionary Basis Sequence Homology versus Sequence Similarity Sequence Similarity versus Sequence Identity Methods - cont Scoring Matrices Statistical Significance of Sequence lignment dapted from Brown and aragea, 7, with some slides from: ltman, Fernandez-Baca, Batzoglou, raven, Hunter, Page. BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 4 Methods Global and Local lignment lignment lgorithms Dot Matrix Method Dynamic Programming Method - cont Gap penalities DP for Global lignment DP for Local lignment Scoring Matrices mino acid scoring matrices PM BLOSUM omparisons between PM & BLOSUM Statistical Significance of Sequence lignment Global vs Local lignment Global alignment Finds best possible alignment across entire length of sequences ligned sequences assumed to be generally similar over entire length Local alignment Finds local regions with highest similarity between sequences ligns these without regard for rest of sequence Sequences are not assumed to be similar over entire length BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 5 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 6 BB 444/544 Fall 7 Dobbs

2 #7 Still more DP, Scoring Matrices 9/5/7 Global vs Local lignment - example Global alignment GGGG -G---G--G GGGG -GG-----G = GGGG = GGG Local alignment GGGG -GG-G---- Which is better? Global vs Local lignment Which should be used when? It is critical to choose correct method! Global lignment vs Local lignment? Shout out the answers!! Which should we use for?. Searching for conserved motifs in DN or protein sequences?. ligning two closely related sequences with similar lengths? 3. ligning highly divergent sequences? 4. Generating an extended alignment of closely related sequences? 5. Generating an extended alignment of closely related sequences with very different lengths? Hmmm - well work on that Excellent! BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 7 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 8 Global vs Local lignment Which should be used when? It is critical to choose correct method! Global lignment vs Local lignment? Shout out the answers!! Which should we use for?. Searching for conserved motifs in DN or protein sequences? Local. ligning two closely related sequences with similar lengths? Global 3. ligning highly divergent sequences? Local (at least initially) 4. Generating an extended alignment of closely related sequences? Global 5. Generating an extended alignment of closely related sequences with very different lengths? Hmmm - well work on that lignment lgorithms 3 major methods for pairwise sequence alignment:. Dot matrix analysis - practice in HW. Dynamic programming - more today & in HW 3. Word or k-tuple methods (later, in hp 4) BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 9 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 Dynamic Programming For Pairwise sequence alignment Idea: Display one sequence above another with spaces inserted in both to reveal similarity G G Global lignment: Scoring GG-GG -G-G-G---- Reward for matches: α Mismatch penalty: β Space/gap penalty: γ Score = αw βx y w = #matches x = #mismatches y = #spaces Note: I changed symbols & colors on this slide! BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 BB 444/544 Fall 7 Dobbs

3 #7 Still more DP, Scoring Matrices 9/5/7 Global lignment: Scoring lignment lgorithms Reward for matches: Mismatch penalty: - Space/gap penalty: -5 G G G - G G G Global: Needleman-Wunsch Local: Smith-Waterman Both NW and SW use dynamic programming Variations: Gap penalty functions Scoring matrices Note: I changed symbols & colors on this slide! otal = We could have done better!! BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 3 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 4 Dynamic Programming - Key Idea: he score of the best possible alignment that ends at a given pair of positions (i, j) is equal to: the score of best alignment ending just previous to those two positions (i.e., ending at i-, j-) PLUS the score for aligning x i and y j Global lignment: DP Problem Formulation & Notations Given two sequences (strings) X = x x x N of length N x = G N = 3 Y = y y y M of length M y = M = 4 onstruct a matrix with (N+) x (M+) elements, where S(i,j) = Score of best alignment of x[..i]=x x x i with y[..j]=y y y j x x x 3 Which means: S(i,j) = Score of best alignment of a prefix of X and a prefix of Y y y y 3 S(,3) = score of best alignment of G (x x ) to (y y y 3 ) y 4 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 5 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 6 Dynamic Programming - 4 Steps:. Define score of optimal alignment, using recursion. Initialize and fill in a DP matrix for storing optimal scores of subproblems, by solving smallest subproblems first (bottom-up approach) 3. alculate score of optimal alignment(s) 4. race back through matrix to recover optimal alignment(s) that generated optimal score BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 7 Define: - Define Score of Optimal lignment using Recursion S(i, j) = Score of optimal alignment of x..i and y..j Initial conditions: x..i = Prefix of length i of x y.. j = Prefix of length j of y S(i,) = "i #$ S(, j) = " j #$ Recursive definition: For i N, j M: % S(i ", j ") +# (x i,y j ) S(i, j) = max& S(i ", j) "$ ( S(i, j ") "$ α = Match Reward β = Mismatch Penalty γ = Gap penalty σ(x i,y j ) = α or β γ = Gap penalty BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 8 BB 444/544 Fall 7 Dobbs 3

4 #7 Still more DP, Scoring Matrices 9/5/7 - Initialize & Fill in DP Matrix for Storing Optimal Scores ofsubproblems onstruct sequence vs sequence matrix Fill in from [,] to [N,M] (row by row), calculating best possible score for each alignment ending at residues at [i,j] N S(,)= S(i,j) How do we calculate S(i,j)? i.e., Score for alignment of x[..i] to y[..j]? of 3 cases optimal score for this subproblem: x i aligns to y j x i aligns to a gap y j aligns to a gap x x... x i- x i y y... y j- y j S(i-,j-) + σ(x i,y j ) x x... x i- x i y y... y j S(i-,j) x x... x i y y... y j- y j S(i,j-) M S(N,M) BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 9 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 Specific Example: ase : Line up x i with y Scoring onsequence? j i - i x: - - G y: Mismatch Penalty j - j ase : Line up x i with space i - i x: - y: - G - j ase 3: Line up y j with space i x: - y: - - G j - j Note: I changed sequences on this slide (to match the rest of DP example) Space Penalty Space Penalty BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 α = Match Reward β = Mismatch Penalty γ = Gap penalty Ready? Fill in DP Matrix Keep track of dependencies of scores (in a pointer matrix) N S(,)= + σ(x i,y j ) = α or β M Initialization S(i,) = "i #$ S(, j) = " j #$ S(i-,j-) S(i,j-) S(i-,j) S(i,j) S(N,M) Recursion % S(i ", j ") +# (x i, y j ) S(i, j) = max& S(i ", j) "$ ( S(i, j ") "$ BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 Fill in the DP matrix!! G G alculate Score S(N,M) of Optimal lignment - for Global lignment G G + for match, - for mismatch, -5 for space + for match, - for mismatch, -5 for space BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 3 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 4 BB 444/544 Fall 7 Dobbs 4

5 #7 Still more DP, Scoring Matrices 9/5/7 4- race back through matrix to recover optimal alignment(s) that generated the optimal score How? "Repeat" alignment calculations in reverse order, starting at from position with highest score and following path, position by position, back through matrix Result? Optimal alignment(s) of sequences raceback - for Global lignment Start in lower right corner & trace back to upper left Each arrow introduces one character at end of alignment: horizontal move puts a gap in left sequence vertical move puts a gap in top sequence diagonal move uses one character from each sequence BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 5 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 6 raceback to Recover lignment G G d v d h d d d h d h d an have > optimal alignment; this example has : : What are the Global lignments with Optimal Score = 33? G G G G G G BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 7 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 8 Local lignment: Motivation o "ignore" stretches of non-coding DN: Non-coding regions (if "non-functional") are more likely to contain mutations than coding regions Local alignment between two protein-encoding sequences is likely to be between two exons o locate protein domains or motifs: Proteins with similar structures and/or similar functions but from different species (for example), often exhibit local sequence similarities Local sequence similarities may indicate functional modules Non-coding - "not encoding protein" Exons - "protein-encoding" parts of genes vs Introns = "intervening sequences" - segments of eukaryotic genes that "interrupt" exons Introns are transcribed into RN, but are later removed by RN processing & are not translated into protein BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 9 Local lignment: Example G G G G G Match: + Mismatch or space: - Best local alignment: G G G G G - Score = 5 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 3 BB 444/544 Fall 7 Dobbs 5

6 #7 Still more DP, Scoring Matrices 9/5/7 Local lignment: lgorithm S [i, j] = Score for optimally aligning a suffix of X with a suffix of Y Initialize top row & leftmost column of matrix with "" Recall: for Global lignment, S [i, j] = Score for optimally aligning a prefix of X with a prefix of Y Initialize top row & leftmost column of with gap penalty raceback - for Local lignment G G + for a match, - for a mismatch, -5 for a space BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 3 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 3 : : 3: 4: What are the 4 Local lignments with Optimal Score =? G G G G G G G G G G Some Results re: lignment lgorithms (for oms, pre & Math types!) Most pairwise sequence alignment problems can be solved in O(mn) time Space requirement can be reduced to O(m+n), while keeping run-time fixed [Myers88] Highly similar sequences can be aligned in O (dn) time, where d measures the distance between the sequences [Landau86] BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 33 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 34 ffine Gap Penalty Functions Methods ffine Gap Penalties = Differential Gap Penalties used to reflect cost differences between opening a gap and extending an existing gap otal Gap Penalty is linear function of gap length: W = γ + δ X (k - ) where γ = gap opening penalty δ = gap extension penalty k = length of gap an also be solved in O(nm) time using DP Sometimes, a onstant Gap Penalty is used, but it is usually least realistic than the ffine Gap Penalty Global and Local lignment lignment lgorithms Dot Matrix Method Dynamic Programming Method - cont Gap penalities DP for Global lignment DP for Local lignment Scoring Matrices mino acid scoring matrices PM BLOSUM omparisons between PM & BLOSUM Statistical Significance of Sequence lignment BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 35 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 36 BB 444/544 Fall 7 Dobbs 6

7 #7 Still more DP, Scoring Matrices 9/5/7 "Scoring" or "Substitution" Matrices Major types for mino cids: PM & BLOSUM PM = Point ccepted Mutation relies on "evolutionary model" based on observed differences in alignments of closely related proteins BLOSUM = BLOck SUbstitution Matrix based on % aa substitutions observed in blocks of conserved sequences within evolutionarily divergent proteins PM Matrix PM = Point ccepted Mutation relies on "evolutionary model" based on observed differences in closely related proteins Model includes defined rate for each type of sequence change Suffix number (n) reflects amount of "time" passed: rate of expected mutation if n% of amino acids had changed PM - for less divergent sequences (shorter time) PM5 - for more divergent sequences (longer time) BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 37 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 38 BLOSUM Matrix BLOSUM6 Substitution Matrix BLOSUM = BLOck SUbstitution Matrix based on % aa substitutions observed in blocks of conserved sequences within evolutionarily divergent proteins Doesnt rely on a specific evolutionary model Suffix number (n) reflects expected similarity: average % aa identity in the MS from which the matrix was generated s(a,b) corresponds to score of aligning character a with character b Match scores are often calculated based on frequency of mutations in very similar sequences (more details later) BLOSUM45 - for more divergent sequences BLOSUM6 - for less divergent sequences BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 39 BB 444/544 F7 ISU Dobbs #7 - Still more DP, Scoring Matrices 9/5/7 4 BB 444/544 Fall 7 Dobbs 7

BCB 444/544 Fall 07 Dobbs 1

BCB 444/544 Fall 07 Dobbs 1 lignment 8/3/7 BB 444/544 Lecture 6 ry to Finish Dynamic Programming Global & Local lignment Next lecture: Scoring Matrices lignment Statistics #6_ug3 Required Reading (before lecture) Mon ug 27 - for

More information

#11 - Multiple Sequence Alignment 9/14/07

#11 - Multiple Sequence Alignment 9/14/07 BCB 444/544 Required Reading (before lecture) First Lecture 11 BLAST vs FASTA Plus some Gene Jargon Multiple Sequence Alignment (MSA) #11_Sept14 BCB 444/544 F07 ISU Dobbs #11 - Multiple Sequence Alignment

More information

Dynamic Programming: The Matrix Chain Algorithm

Dynamic Programming: The Matrix Chain Algorithm Dynamic Programming: The Matrix Chain Algorithm Andreas Klappenecker [partially based on slides by Prof. Welch] Matrix Chain Problem Suppose that we want to multiply a sequence of rectangular matrices.

More information

DESIGN AND ANALYSIS OF ALGORITHMS (DAA 2017)

DESIGN AND ANALYSIS OF ALGORITHMS (DAA 2017) DESIGN AND ANALYSIS OF ALGORITHMS (DAA 2017) Veli Mäkinen 12/05/2017 1 COURSE STRUCTURE 7 weeks: video lecture -> demo lecture -> study group -> exercise Video lecture: Overview, main concepts, algorithm

More information

THE BALLISTIC PENDULUM

THE BALLISTIC PENDULUM 1. Object THE BALLISTIC PENDULUM To apply the ideas of conservation of momentum and conservation of energy, when appropriate, to the ballistic pendulum experiment. To experimentally measure the velocity

More information

Week 7 One-way ANOVA

Week 7 One-way ANOVA Week 7 One-way ANOVA Objectives By the end of this lecture, you should be able to: Understand the shortcomings of comparing multiple means as pairs of hypotheses. Understand the steps of the ANOVA method

More information

4.7 Arithmetic Sequences. Arithmetic sequences

4.7 Arithmetic Sequences. Arithmetic sequences 4.7 Arithmetic Sequences (Recursive & Explicit Formulas) Arithmetic sequences are linear functions that have a domain of positive consecutive integers in which the difference between any two consecutive

More information

Organizing Quantitative Data

Organizing Quantitative Data Organizing Quantitative Data MATH 130, Elements of Statistics I J. Robert Buchanan Department of Mathematics Fall 2018 Objectives At the end of this lesson we will be able to: organize discrete data in

More information

CT4510: Computer Graphics. Transformation BOCHANG MOON

CT4510: Computer Graphics. Transformation BOCHANG MOON CT4510: Computer Graphics Transformation BOCHANG MOON 2D Translation Transformations such as rotation and scale can be represented using a matrix M ee. gg., MM = SSSS xx = mm 11 xx + mm 12 yy yy = mm 21

More information

The Coach then sorts the 25 players into separate teams and positions

The Coach then sorts the 25 players into separate teams and positions Section 4 A: Contingency Tables Introduction A local school has a Varsity and Junior Varsity basketball team. No player plays on both teams and no player plays at more than one position. The coach writes

More information

Planning and Acting in Partially Observable Stochastic Domains

Planning and Acting in Partially Observable Stochastic Domains Planning and Acting in Partially Observable Stochastic Domains Leslie Pack Kaelbling and Michael L. Littman and Anthony R. Cassandra (1998). Planning and Acting in Partially Observable Stochastic Domains,

More information

EVOLVING HEXAPOD GAITS USING A CYCLIC GENETIC ALGORITHM

EVOLVING HEXAPOD GAITS USING A CYCLIC GENETIC ALGORITHM Evolving Hexapod Gaits Using a Cyclic Genetic Algorithm Page 1 of 7 EVOLVING HEXAPOD GAITS USING A CYCLIC GENETIC ALGORITHM GARY B. PARKER, DAVID W. BRAUN, AND INGO CYLIAX Department of Computer Science

More information

DS/EN DK NA:2015 2nd edition

DS/EN DK NA:2015 2nd edition DS/EN 1991-1-3 DK NA:2015-2 nd edition National Annex to Eurocode 1: Actions on structures - Part 1-3: General actions - Snow loads Foreword This national annex (NA) is a revision oqf DS/EN 1991-1-3 DK

More information

6 Motion in Two Dimensions BIGIDEA Write the Big Idea for this chapter.

6 Motion in Two Dimensions BIGIDEA Write the Big Idea for this chapter. 6 Motion in Two Dimensions BIGIDEA Write the Big Idea for this chapter. Use the What I Know column to list the things you know about the Big Idea. Then list the questions you have about the Big Idea in

More information

Performance Training in Football Refereeing Weekly Training Plan

Performance Training in Football Refereeing Weekly Training Plan WEEK 3 from Monday 18 th to Sunday 24 th of January Macrocycle VI, week 3 (Training week 33) Performance Training in Football Refereeing Mon. 18 th : * Low Int. - 5 jogging slowly building up to 70% HRmax

More information

Lecture 10. Support Vector Machines (cont.)

Lecture 10. Support Vector Machines (cont.) Lecture 10. Support Vector Machines (cont.) COMP90051 Statistical Machine Learning Semester 2, 2017 Lecturer: Andrey Kan Copyright: University of Melbourne This lecture Soft margin SVM Intuition and problem

More information

EE 364B: Wind Farm Layout Optimization via Sequential Convex Programming

EE 364B: Wind Farm Layout Optimization via Sequential Convex Programming EE 364B: Wind Farm Layout Optimization via Sequential Convex Programming Jinkyoo Park 1 Introduction In a wind farm, the wakes formed by upstream wind turbines decrease the power outputs of downstream

More information

Factorial Analysis of Variance

Factorial Analysis of Variance Factorial Analysis of Variance Overview of the Factorial ANOVA Factorial ANOVA (Two-Way) In the context of ANOVA, an independent variable (or a quasiindependent variable) is called a factor, and research

More information

Performance Training in Football Refereeing Weekly Training Plan

Performance Training in Football Refereeing Weekly Training Plan WEEK 29 from Monday 18 th to Sunday 24 th of July Macrocycle II, week 1 (Training week 7) Performance Training in Football Refereeing Mon. 18 th : * Low Int. - 5 jogging slowly building up to 70% HR max

More information

Torpedoes on Target: EAs on Track

Torpedoes on Target: EAs on Track 113 Torpedoes on Target: EAs on Track Nicole Patterson, Luigi Barone and Cara MacNish School of Computer Science & Software Engineering The University of Western Australia M002, 35 Stirling Highway, Crawley,

More information

A few things to remember about ANOVA

A few things to remember about ANOVA A few things to remember about ANOVA 1) The F-test that is performed is always 1-tailed. This is because your alternative hypothesis is always that the between group variation is greater than the within

More information

UAB MATH-BY-MAIL CONTEST, 2004

UAB MATH-BY-MAIL CONTEST, 2004 UAB MATH-BY-MAIL CONTEST, 2004 ELIGIBILITY. Math-by-Mail competition is an individual contest run by the UAB Department of Mathematics and designed to test logical thinking and depth of understanding of

More information

1.1 The size of the search space Modeling the problem Change over time Constraints... 21

1.1 The size of the search space Modeling the problem Change over time Constraints... 21 Introduction : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 1 I What Are the Ages of My Three Sons? : : : : : : : : : : : : : : : : : 9 1 Why Are Some Problems Dicult to Solve? : : :

More information

Acknowledgement: Author is indebted to Dr. Jennifer Kaplan, Dr. Parthanil Roy and Dr Ashoke Sinha for allowing him to use/edit many of their slides.

Acknowledgement: Author is indebted to Dr. Jennifer Kaplan, Dr. Parthanil Roy and Dr Ashoke Sinha for allowing him to use/edit many of their slides. Acknowledgement: Author is indebted to Dr. Jennifer Kaplan, Dr. Parthanil Roy and Dr Ashoke Sinha for allowing him to use/edit many of their slides. Topic for this lecture 0Today s lecture s materials

More information

ECE 697B (667) Spring 2003

ECE 697B (667) Spring 2003 ECE 667 - Synthesis & Verification - Lecture 2 ECE 697 (667) Spring 23 Synthesis and Verification of Digital Systems unctional Decomposition Slides adopted (with permission) from. Mishchenko, 23 Overview

More information

ECO 199 GAMES OF STRATEGY Spring Term 2004 Precept Materials for Week 3 February 16, 17

ECO 199 GAMES OF STRATEGY Spring Term 2004 Precept Materials for Week 3 February 16, 17 ECO 199 GAMES OF STRATEGY Spring Term 2004 Precept Materials for Week 3 February 16, 17 Illustration of Rollback in a Decision Problem, and Dynamic Games of Competition Here we discuss an example whose

More information

Performance Training in Football Refereeing Weekly Training Plan

Performance Training in Football Refereeing Weekly Training Plan WEEK 29 from Monday 17 th to Sunday 23 rd of July Macrocycle II, week 1 (Training week 7) Performance Training in Football Refereeing Mon. 17 th : * Low Int. - 5 jogging slowly building up to 70% HR max

More information

Serve the only stroke in which the player has full control over its outcome. Bahamonde (2000) The higher the velocity, the smaller the margin of

Serve the only stroke in which the player has full control over its outcome. Bahamonde (2000) The higher the velocity, the smaller the margin of Lower Extremity Performance of Tennis Serve Reporter: Chin-Fu Hsu Adviser: Lin-Hwa Wang OUTLINE Introduction Kinetic Chain Serve Types Lower Extremity Movement Summary Future Work INTRODUCTION Serve the

More information

HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE.

HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE. HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE Kazunori Uruma 1, Katsumi Konishi 2, Tomohiro Takahashi 1 and Toshihiro Furukawa 1 1 Graduate School of Engineering, Tokyo University

More information

Supplementary materials

Supplementary materials Supplementary materials I. Pressure sensor calibration Our analysis is based on identification of the onset and offset of the inhalation relatively to the electrophysiological recordings. Onset and offset

More information

ABSTRACT PATTERNS USING 3D-DYNAMIC MODELING. Kaustav Nandy, Master of Science, Department of Electrical And Computer Engineering

ABSTRACT PATTERNS USING 3D-DYNAMIC MODELING. Kaustav Nandy, Master of Science, Department of Electrical And Computer Engineering ABSTRACT Title of Thesis: IDENTIFICATION OF HUMAN WALKING PATTERNS USING 3D-DYNAMIC MODELING Kaustav Nandy, Master of Science, 26 Thesis Directed By: Professor. Rama Chellappa Department of Electrical

More information

Hydronic Systems Balance

Hydronic Systems Balance Hydronic Systems Balance Balancing Is Misunderstood Balancing is application of fundamental hydronic system math Balance Adjustment of friction loss location Adjustment of pump to requirements By definition:

More information

Performance Training in Football Refereeing Weekly Training Plan

Performance Training in Football Refereeing Weekly Training Plan WEEK 13 from Monday 25 th of March to Sunday 31 st of March Macrocycle VIII, week 1 (Training week 43) Mon. 25 th : * Act. Rec. Tr. 163-50 recovery session in a fitness centre. Tue. 26 th : * Low Int.

More information

PLEASE MARK YOUR ANSWERS WITH AN X, not a circle! 1. (a) (b) (c) (d) (e) 2. (a) (b) (c) (d) (e) (a) (b) (c) (d) (e) 4. (a) (b) (c) (d) (e)...

PLEASE MARK YOUR ANSWERS WITH AN X, not a circle! 1. (a) (b) (c) (d) (e) 2. (a) (b) (c) (d) (e) (a) (b) (c) (d) (e) 4. (a) (b) (c) (d) (e)... Math 070, Practice Exam 2 April 25, 205 The Honor Code is in effect for this examination. All work is to be your own. You may use your Calculator. The exam lasts for 50 minutes. Be sure that your name

More information

Analysis of Car-Pedestrian Impact Scenarios for the Evaluation of a Pedestrian Sensor System Based on the Accident Data from Sweden

Analysis of Car-Pedestrian Impact Scenarios for the Evaluation of a Pedestrian Sensor System Based on the Accident Data from Sweden 136 S.N. Huang, J.K. Yang Division of Vehicle Safety, Chalmers University of Technology, Göteborg, Sweden F. Eklund Automotive Safety Electronics, Autoliv Electronics AB, Linköping, Sweden Analysis of

More information

TI 176B Flow Rate Audit Calculations

TI 176B Flow Rate Audit Calculations TI 176B Flow Rate Audit Calculations TABLE OF CONTENTS TABLE OF FIGURES... 1 LIST OF TABLES... 1 1.0 PURPOSE AND APPLICABILITY... 2 2.0 RESPONSIBILITIES... 2 2.1 Field Specialist... 2 2.2 Field Technician...

More information

Swinburne Research Bank

Swinburne Research Bank Swinburne Research Bank http://researchbank.swinburne.edu.au Clarke, SR & Norman, JM (2012). Optimal challenges in tennis. Accepted for publication in Journal of the Operational Research Society. Published

More information

Performance Training in Football Refereeing Weekly Training Plan

Performance Training in Football Refereeing Weekly Training Plan WEEK 14 from Monday 30 th of March to Sunday 5 th of April Macrocycle VIII, week 1 (Training week 43) Performance Training in Football Refereeing Mon. 28 th : * Act. Rec. Tr. 162-50 recovery session in

More information

Using March Madness in the first Linear Algebra course. Steve Hilbert Ithaca College

Using March Madness in the first Linear Algebra course. Steve Hilbert Ithaca College Using March Madness in the first Linear Algebra course Steve Hilbert Ithaca College Hilbert@ithaca.edu Background National meetings Tim Chartier 1 hr talk and special session on rankings Try something

More information

Problem A: Driving Around the Beltway.

Problem A: Driving Around the Beltway. Problem A: Driving Around the Beltway. Delaware, as you may have noticed, is north of Columbus. When driving from Delaware to the Muskingum Contest in the fall, we drove down to Columbus on I-71 (which

More information

Performance Training in Football Refereeing Weekly Training Plan

Performance Training in Football Refereeing Weekly Training Plan WEEK 36 from Monday 28 th of August to Sunday 3 rd of September Macrocycle III, week 1 (Training week 13) Mon. 28 th : * Act. Rec. Tr. 46-50 recovery session in a fitness centre. Tue. 29 th : * Low Int.

More information

Write these equations in your notes if they re not already there. You will want them for Exam 1 & the Final.

Write these equations in your notes if they re not already there. You will want them for Exam 1 & the Final. Tuesday January 30 Assignment 3: Due Friday, 11:59pm.like every Friday Pre-Class Assignment: 15min before class like every class Office Hours: Wed. 10-11am, 204 EAL Help Room: Wed. & Thurs. 6-9pm, here

More information

Basic CPM Calculations

Basic CPM Calculations Overview Core Scheduling Papers: #7 Basic CPM Calculations Time Analysis calculations in a Precedence Diagramming Method (PDM) Critical Path Method (CPM) network can be done in a number of different ways.

More information

Queue analysis for the toll station of the Öresund fixed link. Pontus Matstoms *

Queue analysis for the toll station of the Öresund fixed link. Pontus Matstoms * Queue analysis for the toll station of the Öresund fixed link Pontus Matstoms * Abstract A new simulation model for queue and capacity analysis of a toll station is presented. The model and its software

More information

Comparing Mirrored Mutations and Active Covariance Matrix Adaptation in the IPOP-CMA-ES on the Noiseless BBOB Testbed

Comparing Mirrored Mutations and Active Covariance Matrix Adaptation in the IPOP-CMA-ES on the Noiseless BBOB Testbed Comparing Mirrored Mutations and Active Covariance Matrix Adaptation in the on the Noiseless BBOB Testbed Dimo Brockhoff, Anne Auger, Nikolaus Hansen To cite this version: Dimo Brockhoff, Anne Auger, Nikolaus

More information

Search I. Tuomas Sandholm Carnegie Mellon University Computer Science Department. [Read Russell & Norvig Chapter 3]

Search I. Tuomas Sandholm Carnegie Mellon University Computer Science Department. [Read Russell & Norvig Chapter 3] Search I Tuomas Sandholm Carnegie Mellon University Computer Science Department [Read Russell & Norvig Chapter 3] Search I Goal-based agent (problem solving agent) Goal formulation (from preferences).

More information

Lab # 03: Visualization of Shock Waves by using Schlieren Technique

Lab # 03: Visualization of Shock Waves by using Schlieren Technique AerE545 Lab # 03: Visualization of Shock Waves by using Schlieren Technique Objectives: 1. To get hands-on experiences about Schlieren technique for flow visualization. 2. To learn how to do the optics

More information

Performance Training in Football Refereeing Weekly Training Plan

Performance Training in Football Refereeing Weekly Training Plan WEEK 13 from Monday 24 th of March to Sunday 30 th of March Macrocycle VIII, week 1 (Training week 43) Performance Training in Football Refereeing Mon. 24 th : * Act. Rec. Tr. 162-50 recovery session in

More information

Questions. Background. Equipment. Activities LAB 3. WAVES

Questions. Background. Equipment. Activities LAB 3. WAVES Questions LAB 3. WAVES How can we measure the velocity of a wave? How are the wavelength, period, and speed of a wave related? What types of behavior do waves exhibit? Background Consider what happens

More information

Module 5 : Pulse propagation through third order nonlinear optical medium. Lecture 38 : Long distance soliton transmission system.

Module 5 : Pulse propagation through third order nonlinear optical medium. Lecture 38 : Long distance soliton transmission system. Module 5 : Pulse propagation through third order nonlinear optical medium Lecture 38 : Long distance soliton transmission system Objectives This lecture will outline A long distance soliton transmission

More information

Softball/Baseball Scorekeeping for First Timers. Written for novice scorekeeper volunteers scoring CHAA Softball/Baseball games.

Softball/Baseball Scorekeeping for First Timers. Written for novice scorekeeper volunteers scoring CHAA Softball/Baseball games. Softball/Baseball Scorekeeping for First Timers Written for novice scorekeeper volunteers scoring CHAA Softball/Baseball games. 8 9 7 10 6 4 5 1 3 2 1 Thanks for keeping score! This series of pages attempts

More information

Ocean Fishing Fleet Scheduling Path Optimization Model Research. Based On Improved Ant Colony Algorithm

Ocean Fishing Fleet Scheduling Path Optimization Model Research. Based On Improved Ant Colony Algorithm 4th International Conference on Sensors, Measurement and Intelligent Materials (ICSMIM 205) Ocean Fishing Fleet Scheduling Path Optimization Model Research Based On Improved Ant Colony Algorithm Li Jia-lin2,

More information

It is a simple mobile rig, some 3.4 metres high and uses a sample of rope around 800 mm long under a load from the test weight of 100 kg.

It is a simple mobile rig, some 3.4 metres high and uses a sample of rope around 800 mm long under a load from the test weight of 100 kg. This is an extract from a lecture I gave on the results and other matters some while ago. What follows were my slides and speaking notes. If you want more information or clarification then feel free to

More information

CHAPTER III RESULTS. sampled from 22 streams, representing 4 major river drainages in New Jersey, and 1 trout

CHAPTER III RESULTS. sampled from 22 streams, representing 4 major river drainages in New Jersey, and 1 trout CHAPTER III RESULTS Genetic Diversity Genotypes at 13 microsatellite DNA loci were determined for 238 brook trout sampled from 22 streams, representing 4 major river drainages in New Jersey, and 1 trout

More information

Baseball Scorekeeping for First Timers

Baseball Scorekeeping for First Timers Baseball Scorekeeping for First Timers 8 9 7 10 6 4 5 1 3 2 1 The Scorebook 5 INTRODUCTION: This is what a page of the scorebook looks like. There are a lot of abbreviations and spaces to collect every

More information

Section 4.2 Objectives

Section 4.2 Objectives Section 4. Objectives Determine whether the slope of a graphed line is positive, negative, 0, or undefined. Determine the slope of a line given its graph. Calculate the slope of a line given the ordered

More information

Appendix A COMPARISON OF DRAINAGE ALGORITHMS UNDER GRAVITY- DRIVEN FLOW DURING GAS INJECTION

Appendix A COMPARISON OF DRAINAGE ALGORITHMS UNDER GRAVITY- DRIVEN FLOW DURING GAS INJECTION ppendix COMPRISON OF DRINGE LGORITHMS UNDER GRVITY- DRIVEN FLOW DURING GS INJECTION.1 Introduction ll the simulations of gas injection discussed in this thesis were performed using a modified invasion

More information

Problem Solving as Search - I

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

More information

Warm-up exercises with ball

Warm-up exercises with ball Warm-up exercises with ball Warm-up with ball 1 2 R 8 R 9, without ball Jog with ball 1 0 Acceleration out - jogging in Sideways out - acceleration in Backwards out - acceleration in Accelerations with

More information

An Application of Signal Detection Theory for Understanding Driver Behavior at Highway-Rail Grade Crossings

An Application of Signal Detection Theory for Understanding Driver Behavior at Highway-Rail Grade Crossings An Application of Signal Detection Theory for Understanding Driver Behavior at Highway-Rail Grade Crossings Michelle Yeh and Jordan Multer United States Department of Transportation Volpe National Transportation

More information

Course 495: Advanced Statistical Machine Learning/Pattern Recognition

Course 495: Advanced Statistical Machine Learning/Pattern Recognition Course 495: Advanced Statistical Machine Learning/Pattern Recognition Lectures: Stefanos Zafeiriou Goal (Lectures): To present modern statistical machine learning/pattern recognition algorithms. The course

More information

Baseball Scorekeeping for First Timers

Baseball Scorekeeping for First Timers Baseball Scorekeeping for First Timers Thanks for keeping score! This series of pages attempts to make keeping the book for a RoadRunner Little League game easy. We ve tried to be comprehensive while also

More information

Wind Regimes 1. 1 Wind Regimes

Wind Regimes 1. 1 Wind Regimes Wind Regimes 1 1 Wind Regimes The proper design of a wind turbine for a site requires an accurate characterization of the wind at the site where it will operate. This requires an understanding of the sources

More information

LOCOMOTION CONTROL CYCLES ADAPTED FOR DISABILITIES IN HEXAPOD ROBOTS

LOCOMOTION CONTROL CYCLES ADAPTED FOR DISABILITIES IN HEXAPOD ROBOTS LOCOMOTION CONTROL CYCLES ADAPTED FOR DISABILITIES IN HEXAPOD ROBOTS GARY B. PARKER and INGO CYLIAX Department of Computer Science, Indiana University, Bloomington, IN 47405 gaparker@cs.indiana.edu, cyliax@cs.indiana.edu

More information

In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007.

In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007. Acknowledgement In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007. There are many others without whom I could not have completed

More information

GRAPH-BASED SPORTS RANKINGS

GRAPH-BASED SPORTS RANKINGS GRAPH-BASED SPORTS RANKINGS Major Qualifying Project Advisors: CRAIG E WILLS GÁBOR N SÁRKÖZY Written By: CHAIWAT EKKAEWNUMCHAI CONNOR WILLIAM MCNAMARA KYLE LIPFERT RICHARDS ABIGAIL ROSE ROANE A Major Qualifying

More information

Supporting Online Material for

Supporting Online Material for Originally posted 16 September 2011; corrected 18 April 2012 www.sciencemag.org/cgi/content/full/333/6049/1627/dc1 Supporting Online Material for Faking Giants: The Evolution of High Prey Clearance Rates

More information

Worksheets Based on.

Worksheets Based on. Worksheets Based on https://itunes.apple.com/book/id14280245 Copyright April 2019 Rhonda Ryman-Kane and Robyn Hughes Ryman 1 Acknowledgements The authors wish to gratefully acknowledge the proofreading

More information

Explain your answer: Arrange the control measures in their correct order as specified in the WHS Regulation: (arranged in order isolate the hazard

Explain your answer: Arrange the control measures in their correct order as specified in the WHS Regulation: (arranged in order isolate the hazard Trainee: Date: GUIDING CLIMBING ON ARTIFICIAL SURFACES EXAM Time limit = 1 hour This exam is designed to identify any gaps that may exist in your knowledge. Missed exam questions may indicate that you

More information

THE APPLICATION OF BASKETBALL COACH S ASSISTANT DECISION SUPPORT SYSTEM

THE APPLICATION OF BASKETBALL COACH S ASSISTANT DECISION SUPPORT SYSTEM THE APPLICATION OF BASKETBALL COACH S ASSISTANT DECISION SUPPORT SYSTEM LIANG WU Henan Institute of Science and Technology, Xinxiang 453003, Henan, China E-mail: wuliang2006kjxy@126.com ABSTRACT In the

More information

CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper

CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper Note: All Questions are compulsory. Each question carry one mark. 1. Error detection at the data link layer is achieved by? [A] Bit stuffing

More information

Training program on Modelling: A Case study Hydro-dynamic Model of Zanzibar channel

Training program on Modelling: A Case study Hydro-dynamic Model of Zanzibar channel Training program on Modelling: A Case study Hydro-dynamic Model of Zanzibar channel Mayorga-Adame,C.G., Sanga,I.P.L., Majuto, C., Makame, M.A., Garu,M. INTRODUCTION Hydrodynamic Modeling In understanding

More information

2 Characteristics of Waves

2 Characteristics of Waves CHAPTER 15 2 Characteristics of Waves SECTION Waves KEY IDEAS As you read this section, keep these questions in mind: What are some ways to measure and compare waves? How can you calculate the speed of

More information

Three New Methods to Find Initial Basic Feasible. Solution of Transportation Problems

Three New Methods to Find Initial Basic Feasible. Solution of Transportation Problems Applied Mathematical Sciences, Vol. 11, 2017, no. 37, 1803-1814 HIKARI Ltd, www.m-hikari.com https://doi.org/10.12988/ams.2017.75178 Three New Methods to Find Initial Basic Feasible Solution of Transportation

More information

A new Decomposition Algorithm for Multistage Stochastic Programs with Endogenous Uncertainties

A new Decomposition Algorithm for Multistage Stochastic Programs with Endogenous Uncertainties A new Decomposition Algorithm for Multistage Stochastic Programs with Endogenous Uncertainties Vijay Gupta Ignacio E. Grossmann Department of Chemical Engineering Carnegie Mellon University, Pittsburgh

More information

The Incremental Evolution of Gaits for Hexapod Robots

The Incremental Evolution of Gaits for Hexapod Robots The Incremental Evolution of Gaits for Hexapod Robots Abstract Gait control programs for hexapod robots are learned by incremental evolution. The first increment is used to learn the activations required

More information

Nature Neuroscience: doi: /nn Supplementary Figure 1. Visual responses of the recorded LPTCs

Nature Neuroscience: doi: /nn Supplementary Figure 1. Visual responses of the recorded LPTCs Supplementary Figure 1 Visual responses of the recorded LPTCs (a) The mean±sd (n=3 trials) of the direction-selective (DS) responses (i.e., subtracting the null direction, ND, from the preferred direction,

More information

Excel Solver Case: Beach Town Lifeguard Scheduling

Excel Solver Case: Beach Town Lifeguard Scheduling 130 Gebauer/Matthews: MIS 213 Hands-on Tutorials and Cases, Spring 2015 Excel Solver Case: Beach Town Lifeguard Scheduling Purpose: Optimization under constraints. A. GETTING STARTED All Excel projects

More information

The Evolution of Transport Planning

The Evolution of Transport Planning The Evolution of Transport Planning On Proportionality and Uniqueness in Equilibrium Assignment Michael Florian Calin D. Morosan Background Several bush-based algorithms for computing equilibrium assignments

More information

Pressure reduction controller (PN 16, 25, 40)

Pressure reduction controller (PN 16, 25, 40) Pressure reduction controller (PN 16, 25, 40) AFD / VFG 2( - for water AFD / VFGS 2 - for steam Description The controller has a control valve, an actuator with one control diaphragm and a spring for pressure

More information

Jasmin Smajic 1, Christian Hafner 2, Jürg Leuthold 2, March 16, 2015 Introduction to Finite Element Method (FEM) Part 1 (2-D FEM)

Jasmin Smajic 1, Christian Hafner 2, Jürg Leuthold 2, March 16, 2015 Introduction to Finite Element Method (FEM) Part 1 (2-D FEM) Jasmin Smajic 1, Christian Hafner 2, Jürg Leuthold 2, March 16, 2015 Introduction to Finite Element Method (FEM) Part 1 (2-D FEM) 1 HSR - University of Applied Sciences of Eastern Switzerland Institute

More information

Investigation of Suction Process of Scroll Compressors

Investigation of Suction Process of Scroll Compressors Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2006 Investigation of Suction Process of Scroll Compressors Michael M. Cui Trane Jack Sauls

More information

Tension Cracks. Topics Covered. Tension crack boundaries Tension crack depth Query slice data Thrust line Sensitivity analysis.

Tension Cracks. Topics Covered. Tension crack boundaries Tension crack depth Query slice data Thrust line Sensitivity analysis. Tension Cracks 16-1 Tension Cracks In slope stability analyses with cohesive soils, tension forces may be observed in the upper part of the slope. In general, soils cannot support tension so the results

More information

Process Dynamics, Operations, and Control Lecture Notes - 20

Process Dynamics, Operations, and Control Lecture Notes - 20 Lesson 0. Control valves 0.0 Context Controller output is a signal that varies between 0 and 100%. Putting this signal to use requires a final control element, a device that responds to the controller

More information

2 - way valve (NO) for steam, pressure relieved (PN 25) VGS - external thread

2 - way valve (NO) for steam, pressure relieved (PN 25) VGS - external thread Data sheet 2 - way valve (NO) for steam, pressure relieved (PN 25) VGS - external thread Description VGS is pressure relieved 2-way normally open (NO) valves for steam, designed to be combined with: -

More information

We can use a 2 2 array to show all four situations that can arise in a single play of this game, and the results of each situation, as follows:

We can use a 2 2 array to show all four situations that can arise in a single play of this game, and the results of each situation, as follows: Two-Person Games Game theory was developed, starting in the 1940 s, as a model of situations of conflict. Such situations and interactions will be called games and they have participants who are called

More information

Boyle s Law: Pressure-Volume Relationship in Gases

Boyle s Law: Pressure-Volume Relationship in Gases Boyle s Law: Pressure-Volume Relationship in Gases Computer 6 The primary objective of this experiment is to determine the relationship between the pressure and volume of a confined gas. The gas we use

More information

Chapter 9 Progress in Performance

Chapter 9 Progress in Performance Chapter 9 Progress in Performance To become a better player you must play competitive games. Match play against weaker opponents enables you to consolidate and develop the work you have done in practice.

More information

LEVEL 1 SKILL DEVELOPMENT MANUAL

LEVEL 1 SKILL DEVELOPMENT MANUAL LEVEL 1 SKILL DEVELOPMENT MANUAL Program Overview A Publication Of The USA Hockey Coaching Education Program The USA Hockey Coaching Education Program is Presented By Table of Contents Foreword...2 Introduction...3

More information

Design of a double quadruped for the Tech United soccer robot

Design of a double quadruped for the Tech United soccer robot Design of a double quadruped for the Tech United soccer robot M.J. Naber (0571509) DCT report number: 2009.134 Master Open Space project Eindhoven, 21 December 2009 Supervisor dr.ir. P.C.J.N. Rosielle

More information

CHAPTER 8: MECHANICAL WAVES TRANSMIT ENERGY IN A VARIETY OF WAYS

CHAPTER 8: MECHANICAL WAVES TRANSMIT ENERGY IN A VARIETY OF WAYS CHAPTER 8: MECHANICAL WAVES TRANSMIT ENERGY IN A VARIETY OF WAYS DISCLAIMER FOR MOST QUESTIONS IN THIS CHAPTER Waves are always in motion, as they transmit energy and information from one point to another.

More information

Chapter 12 Practice Test

Chapter 12 Practice Test Chapter 12 Practice Test 1. Which of the following is not one of the conditions that must be satisfied in order to perform inference about the slope of a least-squares regression line? (a) For each value

More information

QUICK WARM UP: Thursday 3/9

QUICK WARM UP: Thursday 3/9 Name: pd: Unit 6, QUICK WARM UP: Thursday 3/9 1) The slope of a distance vs. time graph shows an object s. 2) The slope of a position vs. time graph shows an object s. 3) Can an object have a constant

More information

Bézier Curves and Splines

Bézier Curves and Splines CS-C3100 Computer Graphics Bézier Curves and Splines Majority of slides from Frédo Durand vectorportal.com CS-C3100 Fall 2016 Lehtinen Before We Begin Anything on your mind concerning Assignment 1? Linux

More information

Chapter 1 The official score-sheet

Chapter 1 The official score-sheet Chapter 1 The official score-sheet - Symbols and abbreviations - The official score-sheet - Substitutions - Insufficient space on score-sheet 13 Symbols and abbreviations Symbols and abbreviations Numbers

More information

EE582 Physical Design Automation of VLSI Circuits and Systems

EE582 Physical Design Automation of VLSI Circuits and Systems EE Prof. Dae Hyun Kim School of Electrical Engineering and Computer Science Washington State University Routing Grid Routing Grid Routing Grid Routing Grid Routing Grid Routing Lee s algorithm (Maze routing)

More information

Allocations vs Announcements

Allocations vs Announcements Allocations vs Announcements A comparison of RIR IPv4 Allocation Records with Global Routing Announcements Geoff Huston May 2004 (Activity supported by APNIC) BGP Prefix Length Filters Some years back

More information

Project 2 Discussion

Project 2 Discussion Project 2 Discussion Robb T. Koether Hampden-Sydney College Fri, Feb 8, 2013 Robb T. Koether (Hampden-Sydney College) Project 2 Discussion Fri, Feb 8, 2013 1 / 25 1 Introduction 2 Markov Processes 3 The

More information

We can use a 2 2 array to show all four situations that can arise in a single play of this game, and the results of each situation, as follows:

We can use a 2 2 array to show all four situations that can arise in a single play of this game, and the results of each situation, as follows: Two-Person Games Game theory was developed, starting in the 1940 s, as a model of situations of conflict. Such situations and interactions will be called games and they have participants who are called

More information

A NEW GOLF-SWING ROBOT MODEL UTILIZING SHAFT ELASTICITY

A NEW GOLF-SWING ROBOT MODEL UTILIZING SHAFT ELASTICITY Journal of Sound and Vibration (1998) 17(1), 17 31 Article No. sv981733 A NEW GOLF-SWING ROBOT MODEL UTILIZING SHAFT ELASTICITY S. SUZUKI Department of Mechanical System Engineering, Kitami Institute of

More information