Determining Optimum Path in Synthesis of Organic Compounds using Branch and Bound Algorithm

Size: px
Start display at page:

Download "Determining Optimum Path in Synthesis of Organic Compounds using Branch and Bound Algorithm"

Transcription

1 Determining Optimum Path in Synthesis f Organic Cmpunds using Branch and Bund Algrithm Diastuti Utami Prgram Studi Teknik Infrmatika Seklah Teknik Elektr dan Infrmatika Institut Teknlgi Bandung, Jl. Ganesha 10 Bandung 40132, Indnesia @std.stei.itb.ac.id Abstract Synthesis f an rganic cmpund frm a certain cmpund ffers a wide variety f pssibility. Getting the ptimum yield in a synthesis reactin has been a cncern fr many years in the field f rganic chemistry. Smetimes, the reactin can be mre cmplicated that it requires sme time t determine the mst efficient path. Nwadays, there is a number f sftware that culd assist in determining the ptimum path, such as sftware ffering a database f reactins that culd be used in path determining. In this paper, we will discuss hw branch and bund algrithm culd find ptimum path in synthesis f rganic cmpund(s). Keywrds branch and bund; cmputatinal chemistry;branch and bund algrithm; I. INTRODUCTION Organic chemistry is a field f chemistry that studies cmpunds and substances made f a chain f carbn atms. Reactins in rganic chemistry ften cnsidered unique because it have distinct mechanism and almst always nt yielding 100% prducts. The thing with rganic reactins is that it takes a lt f time. Therefre, catalysts are ften invlved in many reactins, but as we knew, the cst f catalyst ften nt cheap. Anther thing is, the reactin is nt always effective. Suppse we want t synthesize cmpund A frm cmpund B, it will nly yield 45% cmpund A, meaning that if we predict we can get, say, ne mle f A, in reality we nly get 0.45 mles f A. Organic cmpunds are ften used in industrial scales, yet the prcess t synthesize an rganic cmpund ften invlves many steps and takes a lt f time. On the ther hand, there are many ways pssible t synthesize an rganic cmpund. This results in a challenge f getting the mst efficient way t synthesize an rganic cmpund. Anther challenge is t pen all the pssibilities f reactins. This is essential t determine the ptimum path, a synthesis reactin ften has many pssibilities, but t create a cmprehensive database f rganic reactins is anther challenge. Furthermre, we have t match the cmpund we want t search with the database that s anther thing. The breakthrugh in cmputatinal chemistry allws an insight t slve the challenge. Nwadays, many sftware ffer assistant n searching the pssible reactins, as database f rganic reactins have been develped everywhere. Out f many pssibilities t determine the mst efficient way t synthesize an rganic cmpund, we will see hw the branch and bund algrithm slves the prblem. II. THEORY OF BRANCH AND BOUND ALGORITHM Branch and bund is a state space search methd in which all the children f a nde are generated befre expanding any f its children. It is similar t backtracking technique but uses BFS-like search. In branch and bund, we will use the term live-nde t describe a nde that has nt been expanded, dead nde which is a nde that has been expanded, and slutin nde. Figure 1 Synthesis f benzcaine frm tluene Makalah IF2211 Strategi Algritma, Semester II Tahun 2015/2016

2 Figure 2 FIFO and LIFO Branch & Bund The searching used in branch and bund is called least-cst search (LC). Least-cst search have sme attributes: The selectin rule fr the next E-nde in FIFO r LIFO branch-and-bund is smetimes blind. i.e. the selectin rule des nt give any preference t a nde that has a very gd chance f getting the search t an answer nde quickly. The search fr an answer nde can ften be speeded by using an intelligent ranking functin, als called an apprximate cst functin C Expanded-nde (E-nde): is the live nde with best C value Requirements: Branching: A set f slutins, which is represented by a nde, can be partitined int mutually exclusive sets. Each subset in the partitin is represented by a child f the riginal nde. Lwer bunding: An algrithm is available fr calculating a lwer bund n the cst f any slutin in a given subset. Example is 8-puzzle, where: Cst functin: C = g(x) +h(x), where h(x) = the number f misplaced tiles and g(x) = the number f mves s far Assumptin: mve ne tile in any directin cst 1 Figure 3 8-puzzle branch and bund Glbal branch and bund algrithm: 1. Insert rt nde t queue Q. If rt nde is a slutin nde, then stp. 2. If Q empty and n slutin fund, then stp. 3. If Q nt empty, select frm Q a nde i that have minimum cst C(i). if there is mre than 1 nde that satisfies the cnditin, chse ne randmly. 4. If nde i is a slutin nde, then stp. Else, generate all the child ndes. If there is n child fund, return t step Fr each child j frm nde i, cunt C(j), and insert the children t Q. 6. Return t step 2. The algrithm in this paper is similar t the knapsack prblem. Knapsack prblem is a prblem where: Input Capacity K Gal n items with weights w i and values v i Output a set f items S such that the sum f weights f items in S is at mst K and the sum f values f items in S is maximized Makalah IF2211 Strategi Algritma, Semester II Tahun 2015/2016

3 Where: Figure 4 Tree fr a knapsack prblem Prperties f a knapsack tree as fllws: Left child is always xi = 1 and right child is always xi = 0 Bunding functin t prune tree: At a live nde in the tree, if we can estimate the upper bund (best case) prfit at that nde, and if that upper bund is less than the prfit f an actual slutin fund already, then we dn t need t explre that nde. We can use the greedy knapsack as ur bund functin as it gives an upper bund, since the last item in the knapsack is usually fractinal Greedy algrithms are ften gd ways t cmpute upper (ptimistic) bunds n prblems, e.g., fr jb scheduling with varying jb times, we can cut each jb int equal length parts and use the greedy jb scheduler t get an upper bund Linear prgrams that treat the 0-1 variables as cntinuus between 0 and 1 are ften anther gd chice Suppse we have a knapsack prblem like in the table abve, where maximum weight is 110. This generate a slutin tree: Numbers inside a nde are prfit and weight at that nde, based n decisins frm rt t that nde Ndes withut numbers inside have same values as their parent Numbers utside the nde are upper bund calculated by greedy algrithm Upper bund fr every feasible left child (xi =1) is same as its parent s bund Chain f left children in tree is same as greedy slutin at that pint in the tree We nly recmpute the upper bund when we can t mve t a feasible left child Final prfit and final weight (lwer bund) are updated at each leaf nde reached by algrithm Slutin imprves at each leaf nde reached N further leaf ndes reached after D because lwer bund (ptimal value) is sufficient t prune all ther tree branches befre leaf is reached By using flr f upper bund at ndes E and F, we avid generating the tree belw either nde Since ptimal slutin must be integer, we can truncate upper bunds By truncating bunds at E and F t 159, we avid explring E and F Branch and bund algrithm can als use depth first search. Depth first search is used in cmbinatin with breadth first search in many prblems. Cmmn strategy is t use depth first search n ndes that have nt been pruned. This gets t a leaf nde, and a feasible slutin, which is a lwer bund that can be used t prune the tree in cnjunctin with the greedy upper bunds. If greedy upper bund is less than lwer bund, prune the tree. Once a nde has been pruned, breadth first search is used t mve t a different part f the tree. Depth first search bunds tend t be very quick t cmpute if we mve dwn the tree sequentially, e.g. the greedy bund desn t need t be recmputed. Linear prgram as bunds are ften quick t: few simplex pivts. III. BRANCH AND BOUND IN SYNTHESIS REACTIONS First ff, we shuld determine hw we will cunt the bund. The factrs related t the bund include yield, time, and cst. Because here we can t predict the cst, the bund will be determined using yield and time nly. Let s take a lk at this simple reactin diagram. We can make a table ut f it, cnsisting reagents, prducts, yield, time, and yield/time rati. In this table C stands fr cmpund, s C 1 means cmpund number 1, and s n. We will assume that the alkyl R is CH 3. Figure 5 Generated tree frm the knapsack prblem Makalah IF2211 Strategi Algritma, Semester II Tahun 2015/2016

4 In real life, the diagram was generated thrugh a searching in the database. A user will input a final prduct and sme pssible reagent that he/she has, and then frm the database, we will get a few pssibilities available frm reagents t prduce a certain prduct. The reactin path is represented with a directed graph. Reagent Prduct Yield Time(m) Yield/Time C 2 C 1 90% C 2 C 3 82% C 2 C 4 78% C 2 C 5 75% C 2 C 7 85% C 3 C 6 62% C 3 C 7 46% C 5 C 2 70% C 7 C 6 73% C 7 C 8 80% 40 2 C 7 C 9 79% C 7 C 10 60% C 7 C 11 55% C 9 C 12 74% C 9 C 13 92% Table 1 Yield and time data table f reactin map in figure 6 Figure 6 Reactin Map f Armatic Cmpunds As this prblem similar t the knapsack prblem, we can derived the bund frmula as bund = ttal yield + (( time time taken) * next best yield/time) with ttal yield = current yield * selected reactin yield There are a few differences frm the knapsack prblem, such as: The next best yield/time can nly be determined by accessible cmpund frm the reagent cmpund. The final bund calculatin use the yield/time fr final nde t replace the next best yield/time Makalah IF2211 Strategi Algritma, Semester II Tahun 2015/2016

5 We assume that the ndes accessible frm a certain nde have been determined when we retrieved the data frm the given database. If there was n further reactin pssible frm a nde, and the nde isn t slutin nde, then deactivate the nde. Suppse we want t synthesize cmpund 13, and we dn t have any cmpund 7 yet (and later cmpunds), there are few pssibilities. First, we can start frm cmpund 2, 3, r 5. The prcess f getting the result will be summarized n the table belw. C 0 Expanded Ndes C 3, C 2 C 27 C 279 Active Ndes C 2 = 0 + (969 * 2.343) = C 5 = 0 + (969 * 0.583) = C 3 = 0 + (969 * 0.653) = C 36 = ((969 95) * 0) (dead because n further reactin pssible) C 37 = (( ) * 3.042) = C 21 = ((969 60) * 0) = 0.9 (dead because n further reactin pssible) C 24 = ((969 75) * 0) = 0.78 (dead because n further reactin pssible) C 27 = ((969 80) * 3.042) = (C 5 dead because reactin pssible is nly t cmpund 2 and cmpund 2 already accessible frm the start) C 37 = C 276 = 0.85 * (( ) * 0) = (dead because n further reactin pssible) C 278 = 0.68 (dead because n further reactin pssible) C 279 = C 2710 = 0.51 (dead because n further reactin pssible) C 2711 = (dead because n further reactin pssible) C 37 = C = (dead because n further reactin pssible) C Slutin fund, bund = C 37 C 379 C C = C 378 = (dead because n further reactin pssible) C 379 = C 3710 = (dead because n further reactin pssible) C 3711 = (dead because n further reactin pssible) C = C = Final slutin fund. Nde C dead because the bund is lwer. N ther nde active. Table 2 Branch and Bund Decmpsitin f the Armatic Reactin Frm the table abve, we can determine the slutin is C 2 C 7 C 9 C 13, which has the ptimum path cnsidering the yield and time taken. We shuld nte that the result n the table abve is generated by nly cnsidering yield (number f prduct that can be generated) and time taken. In reality, many things shuld be taken int accunt and there shuld be a way t make a quantificatin f thse things, such as cst, accessibility t the prduct, and s n. By lking at the diagram, we culd see that this result is valid because the nly pssible way t synthesize cmpund 13 is by is C 2 C 7 C 9 C 13 r is C 3 C 7 C 9 C 13, and it is clear that the yield and time taken in via C 2 is much mre effective than via C 3. In real life, the algrithm itself can be applied t a mre cmplicated reactin map, such as: Figure 7 A Mre Cmplicated Reactin Paths which wn t be discussed here because there are numerus pssibilities and it will be t lng. Makalah IF2211 Strategi Algritma, Semester II Tahun 2015/2016

6 IV. CONCLUSION By using branch and bund algrithm strategy, the bund can be cunted by using the frmula: bund = ttal yield + (( time time taken) * next best yield/time) with ttal yield = current yield * selected reactin yield and is prven valid as it culd generate the ptimum path f the reactin n figure 6. The branch and bund algrithm can find the ptimum path in rganic reactins, given many pssibilities, yield, and time taken. This algrithm can be imprved by cnsidering the cst r mney t underg a reactin. This is als essential because in industrial wrld, we shuld make a prductin nt nly time effective, but als cst effective. V. ACKNOWLEDGEMENT I thank Allah SWT fr his will s I can finish this paper and my parents wh had always supprted me. I als want t send my gratitude t Mr. Rinaldi Munir and Mrs. Nur Ulfa Maulidevi as IF 2211 lecturers fr bth have taught Algrithm Strategy. I wuld als like t thank all the peple wh were invlved in the prcess f writing this paper. Thank yu fr the peple wh have helped me bth directly and indirectly. I hpe this paper I wrte will help peple wh read it t gain mre knwledge like I did while writing it. REFERENCES [1] Munir, Rinaldi. Diktat Kuliah IF2211 Strategi Algritma. Bandung: Teknik Infrmatika Institut Teknlgi Bandung, [2] Slmn, Graham T.W. Organic Chemistry. Jhn Wiley & Sns, [3] J, Clayden, et al. Organic Chemistry. Ocfrd, 2001 [4] Zumdahl, Steven S, Susan A. Zumdahl. General Chemistry. Brks & Cle, 2010 [5] cmputer-algrithms-in-systems-engineering-spring-2010/lecturentes/mit1_204s10_lec16.pdf [6] [7] STATEMENT I hereby declare that this paper is my wn wrk and nt a cpy, translatin, nr plagiarism f smebdy else s wrk. Bandung, May Diastuti Utami Makalah IF2211 Strategi Algritma, Semester II Tahun 2015/2016

Chapter 3: Cluster Analysis

Chapter 3: Cluster Analysis Chapter 3: Cluster Analysis } 3.1 Basic Cncepts f Clustering 3.1.1 Cluster Analysis 3.1. Clustering Categries } 3. Partitining Methds 3..1 The principle 3.. K-Means Methd 3..3 K-Medids Methd 3..4 CLARA

More information

Administrativia. Assignment 1 due thursday 9/23/2004 BEFORE midnight. Midterm exam 10/07/2003 in class. CS 460, Sessions 8-9 1

Administrativia. Assignment 1 due thursday 9/23/2004 BEFORE midnight. Midterm exam 10/07/2003 in class. CS 460, Sessions 8-9 1 Administrativia Assignment 1 due thursday 9/23/2004 BEFORE midnight Midterm eam 10/07/2003 in class CS 460, Sessins 8-9 1 Last time: search strategies Uninfrmed: Use nly infrmatin available in the prblem

More information

Department of Economics, University of California, Davis Ecn 200C Micro Theory Professor Giacomo Bonanno. Insurance Markets

Department of Economics, University of California, Davis Ecn 200C Micro Theory Professor Giacomo Bonanno. Insurance Markets Department f Ecnmics, University f alifrnia, Davis Ecn 200 Micr Thery Prfessr Giacm Bnann Insurance Markets nsider an individual wh has an initial wealth f. ith sme prbability p he faces a lss f x (0

More information

This section is primarily focused on tools to aid us in finding roots/zeros/ -intercepts of polynomials. Essentially, our focus turns to solving.

This section is primarily focused on tools to aid us in finding roots/zeros/ -intercepts of polynomials. Essentially, our focus turns to solving. Sectin 3.2: Many f yu WILL need t watch the crrespnding vides fr this sectin n MyOpenMath! This sectin is primarily fcused n tls t aid us in finding rts/zers/ -intercepts f plynmials. Essentially, ur fcus

More information

, which yields. where z1. and z2

, which yields. where z1. and z2 The Gaussian r Nrmal PDF, Page 1 The Gaussian r Nrmal Prbability Density Functin Authr: Jhn M Cimbala, Penn State University Latest revisin: 11 September 13 The Gaussian r Nrmal Prbability Density Functin

More information

CHAPTER Read Chapter 17, sections 1,2,3. End of Chapter problems: 25

CHAPTER Read Chapter 17, sections 1,2,3. End of Chapter problems: 25 CHAPTER 17 1. Read Chapter 17, sectins 1,2,3. End f Chapter prblems: 25 2. Suppse yu are playing a game that uses tw dice. If yu cunt the dts n the dice, yu culd have anywhere frm 2 t 12. The ways f prducing

More information

CHAPTER 3 INEQUALITIES. Copyright -The Institute of Chartered Accountants of India

CHAPTER 3 INEQUALITIES. Copyright -The Institute of Chartered Accountants of India CHAPTER 3 INEQUALITIES Cpyright -The Institute f Chartered Accuntants f India INEQUALITIES LEARNING OBJECTIVES One f the widely used decisin making prblems, nwadays, is t decide n the ptimal mix f scarce

More information

You need to be able to define the following terms and answer basic questions about them:

You need to be able to define the following terms and answer basic questions about them: CS440/ECE448 Sectin Q Fall 2017 Midterm Review Yu need t be able t define the fllwing terms and answer basic questins abut them: Intr t AI, agents and envirnments Pssible definitins f AI, prs and cns f

More information

We can see from the graph above that the intersection is, i.e., [ ).

We can see from the graph above that the intersection is, i.e., [ ). MTH 111 Cllege Algebra Lecture Ntes July 2, 2014 Functin Arithmetic: With nt t much difficulty, we ntice that inputs f functins are numbers, and utputs f functins are numbers. S whatever we can d with

More information

Pattern Recognition 2014 Support Vector Machines

Pattern Recognition 2014 Support Vector Machines Pattern Recgnitin 2014 Supprt Vectr Machines Ad Feelders Universiteit Utrecht Ad Feelders ( Universiteit Utrecht ) Pattern Recgnitin 1 / 55 Overview 1 Separable Case 2 Kernel Functins 3 Allwing Errrs (Sft

More information

Admin. MDP Search Trees. Optimal Quantities. Reinforcement Learning

Admin. MDP Search Trees. Optimal Quantities. Reinforcement Learning Admin Reinfrcement Learning Cntent adapted frm Berkeley CS188 MDP Search Trees Each MDP state prjects an expectimax-like search tree Optimal Quantities The value (utility) f a state s: V*(s) = expected

More information

Graduate AI Lecture 16: Planning 2. Teachers: Martial Hebert Ariel Procaccia (this time)

Graduate AI Lecture 16: Planning 2. Teachers: Martial Hebert Ariel Procaccia (this time) Graduate AI Lecture 16: Planning 2 Teachers: Martial Hebert Ariel Prcaccia (this time) Reminder State is a cnjunctin f cnditins, e.g., at(truck 1,Shadyside) at(truck 2,Oakland) States are transfrmed via

More information

Five Whys How To Do It Better

Five Whys How To Do It Better Five Whys Definitin. As explained in the previus article, we define rt cause as simply the uncvering f hw the current prblem came int being. Fr a simple causal chain, it is the entire chain. Fr a cmplex

More information

Physics 2B Chapter 23 Notes - Faraday s Law & Inductors Spring 2018

Physics 2B Chapter 23 Notes - Faraday s Law & Inductors Spring 2018 Michael Faraday lived in the Lndn area frm 1791 t 1867. He was 29 years ld when Hand Oersted, in 1820, accidentally discvered that electric current creates magnetic field. Thrugh empirical bservatin and

More information

Thermodynamics Partial Outline of Topics

Thermodynamics Partial Outline of Topics Thermdynamics Partial Outline f Tpics I. The secnd law f thermdynamics addresses the issue f spntaneity and invlves a functin called entrpy (S): If a prcess is spntaneus, then Suniverse > 0 (2 nd Law!)

More information

CHEM Thermodynamics. Change in Gibbs Free Energy, G. Review. Gibbs Free Energy, G. Review

CHEM Thermodynamics. Change in Gibbs Free Energy, G. Review. Gibbs Free Energy, G. Review Review Accrding t the nd law f Thermdynamics, a prcess is spntaneus if S universe = S system + S surrundings > 0 Even thugh S system

More information

Engineering Decision Methods

Engineering Decision Methods GSOE9210 vicj@cse.unsw.edu.au www.cse.unsw.edu.au/~gs9210 Maximin and minimax regret 1 2 Indifference; equal preference 3 Graphing decisin prblems 4 Dminance The Maximin principle Maximin and minimax Regret

More information

A New Evaluation Measure. J. Joiner and L. Werner. The problems of evaluation and the needed criteria of evaluation

A New Evaluation Measure. J. Joiner and L. Werner. The problems of evaluation and the needed criteria of evaluation III-l III. A New Evaluatin Measure J. Jiner and L. Werner Abstract The prblems f evaluatin and the needed criteria f evaluatin measures in the SMART system f infrmatin retrieval are reviewed and discussed.

More information

x x

x x Mdeling the Dynamics f Life: Calculus and Prbability fr Life Scientists Frederick R. Adler cfrederick R. Adler, Department f Mathematics and Department f Bilgy, University f Utah, Salt Lake City, Utah

More information

Lab #3: Pendulum Period and Proportionalities

Lab #3: Pendulum Period and Proportionalities Physics 144 Chwdary Hw Things Wrk Spring 2006 Name: Partners Name(s): Intrductin Lab #3: Pendulum Perid and Prprtinalities Smetimes, it is useful t knw the dependence f ne quantity n anther, like hw the

More information

Public Key Cryptography. Tim van der Horst & Kent Seamons

Public Key Cryptography. Tim van der Horst & Kent Seamons Public Key Cryptgraphy Tim van der Hrst & Kent Seamns Last Updated: Oct 5, 2017 Asymmetric Encryptin Why Public Key Crypt is Cl Has a linear slutin t the key distributin prblem Symmetric crypt has an expnential

More information

Section 6-2: Simplex Method: Maximization with Problem Constraints of the Form ~

Section 6-2: Simplex Method: Maximization with Problem Constraints of the Form ~ Sectin 6-2: Simplex Methd: Maximizatin with Prblem Cnstraints f the Frm ~ Nte: This methd was develped by Gerge B. Dantzig in 1947 while n assignment t the U.S. Department f the Air Frce. Definitin: Standard

More information

Lecture 5: Equilibrium and Oscillations

Lecture 5: Equilibrium and Oscillations Lecture 5: Equilibrium and Oscillatins Energy and Mtin Last time, we fund that fr a system with energy cnserved, v = ± E U m ( ) ( ) One result we see immediately is that there is n slutin fr velcity if

More information

Preparation work for A2 Mathematics [2017]

Preparation work for A2 Mathematics [2017] Preparatin wrk fr A2 Mathematics [2017] The wrk studied in Y12 after the return frm study leave is frm the Cre 3 mdule f the A2 Mathematics curse. This wrk will nly be reviewed during Year 13, it will

More information

The Law of Total Probability, Bayes Rule, and Random Variables (Oh My!)

The Law of Total Probability, Bayes Rule, and Random Variables (Oh My!) The Law f Ttal Prbability, Bayes Rule, and Randm Variables (Oh My!) Administrivia Hmewrk 2 is psted and is due tw Friday s frm nw If yu didn t start early last time, please d s this time. Gd Milestnes:

More information

Intelligent Pharma- Chemical and Oil & Gas Division Page 1 of 7. Global Business Centre Ave SE, Calgary, AB T2G 0K6, AB.

Intelligent Pharma- Chemical and Oil & Gas Division Page 1 of 7. Global Business Centre Ave SE, Calgary, AB T2G 0K6, AB. Intelligent Pharma- Chemical and Oil & Gas Divisin Page 1 f 7 Intelligent Pharma Chemical and Oil & Gas Divisin Glbal Business Centre. 120 8 Ave SE, Calgary, AB T2G 0K6, AB. Canada Dr. Edelsys Cdrniu-Business

More information

Thermodynamics and Equilibrium

Thermodynamics and Equilibrium Thermdynamics and Equilibrium Thermdynamics Thermdynamics is the study f the relatinship between heat and ther frms f energy in a chemical r physical prcess. We intrduced the thermdynamic prperty f enthalpy,

More information

NAME: Prof. Ruiz. 1. [5 points] What is the difference between simple random sampling and stratified random sampling?

NAME: Prof. Ruiz. 1. [5 points] What is the difference between simple random sampling and stratified random sampling? CS4445 ata Mining and Kwledge iscery in atabases. B Term 2014 Exam 1 Nember 24, 2014 Prf. Carlina Ruiz epartment f Cmputer Science Wrcester Plytechnic Institute NAME: Prf. Ruiz Prblem I: Prblem II: Prblem

More information

2004 AP CHEMISTRY FREE-RESPONSE QUESTIONS

2004 AP CHEMISTRY FREE-RESPONSE QUESTIONS 2004 AP CHEMISTRY FREE-RESPONSE QUESTIONS 6. An electrchemical cell is cnstructed with an pen switch, as shwn in the diagram abve. A strip f Sn and a strip f an unknwn metal, X, are used as electrdes.

More information

Lab 1 The Scientific Method

Lab 1 The Scientific Method INTRODUCTION The fllwing labratry exercise is designed t give yu, the student, an pprtunity t explre unknwn systems, r universes, and hypthesize pssible rules which may gvern the behavir within them. Scientific

More information

Chapter Summary. Mathematical Induction Strong Induction Recursive Definitions Structural Induction Recursive Algorithms

Chapter Summary. Mathematical Induction Strong Induction Recursive Definitions Structural Induction Recursive Algorithms Chapter 5 1 Chapter Summary Mathematical Inductin Strng Inductin Recursive Definitins Structural Inductin Recursive Algrithms Sectin 5.1 3 Sectin Summary Mathematical Inductin Examples f Prf by Mathematical

More information

Matter Content from State Frameworks and Other State Documents

Matter Content from State Frameworks and Other State Documents Atms and Mlecules Mlecules are made f smaller entities (atms) which are bnded tgether. Therefre mlecules are divisible. Miscnceptin: Element and atm are synnyms. Prper cnceptin: Elements are atms with

More information

Activity Guide Loops and Random Numbers

Activity Guide Loops and Random Numbers Unit 3 Lessn 7 Name(s) Perid Date Activity Guide Lps and Randm Numbers CS Cntent Lps are a relatively straightfrward idea in prgramming - yu want a certain chunk f cde t run repeatedly - but it takes a

More information

Sequential Allocation with Minimal Switching

Sequential Allocation with Minimal Switching In Cmputing Science and Statistics 28 (1996), pp. 567 572 Sequential Allcatin with Minimal Switching Quentin F. Stut 1 Janis Hardwick 1 EECS Dept., University f Michigan Statistics Dept., Purdue University

More information

Lecture 17: Free Energy of Multi-phase Solutions at Equilibrium

Lecture 17: Free Energy of Multi-phase Solutions at Equilibrium Lecture 17: 11.07.05 Free Energy f Multi-phase Slutins at Equilibrium Tday: LAST TIME...2 FREE ENERGY DIAGRAMS OF MULTI-PHASE SOLUTIONS 1...3 The cmmn tangent cnstructin and the lever rule...3 Practical

More information

Medium Scale Integrated (MSI) devices [Sections 2.9 and 2.10]

Medium Scale Integrated (MSI) devices [Sections 2.9 and 2.10] EECS 270, Winter 2017, Lecture 3 Page 1 f 6 Medium Scale Integrated (MSI) devices [Sectins 2.9 and 2.10] As we ve seen, it s smetimes nt reasnable t d all the design wrk at the gate-level smetimes we just

More information

CAUSAL INFERENCE. Technical Track Session I. Phillippe Leite. The World Bank

CAUSAL INFERENCE. Technical Track Session I. Phillippe Leite. The World Bank CAUSAL INFERENCE Technical Track Sessin I Phillippe Leite The Wrld Bank These slides were develped by Christel Vermeersch and mdified by Phillippe Leite fr the purpse f this wrkshp Plicy questins are causal

More information

A Few Basic Facts About Isothermal Mass Transfer in a Binary Mixture

A Few Basic Facts About Isothermal Mass Transfer in a Binary Mixture Few asic Facts but Isthermal Mass Transfer in a inary Miture David Keffer Department f Chemical Engineering University f Tennessee first begun: pril 22, 2004 last updated: January 13, 2006 dkeffer@utk.edu

More information

IAML: Support Vector Machines

IAML: Support Vector Machines 1 / 22 IAML: Supprt Vectr Machines Charles Suttn and Victr Lavrenk Schl f Infrmatics Semester 1 2 / 22 Outline Separating hyperplane with maimum margin Nn-separable training data Epanding the input int

More information

In the OLG model, agents live for two periods. they work and divide their labour income between consumption and

In the OLG model, agents live for two periods. they work and divide their labour income between consumption and 1 The Overlapping Generatins Mdel (OLG) In the OLG mdel, agents live fr tw perids. When ung the wrk and divide their labur incme between cnsumptin and savings. When ld the cnsume their savings. As the

More information

Computational modeling techniques

Computational modeling techniques Cmputatinal mdeling techniques Lecture 4: Mdel checing fr ODE mdels In Petre Department f IT, Åb Aademi http://www.users.ab.fi/ipetre/cmpmd/ Cntent Stichimetric matrix Calculating the mass cnservatin relatins

More information

4 Fe + 3 O 2 2 Fe 2 O 3

4 Fe + 3 O 2 2 Fe 2 O 3 UNIT 7: STOICHIOMETRY NOTES (chapter 9) INTRO TO STOICHIOMETRY Reactin Stichimetry: Stichimetry is simply a way t shw f smething this is. Relatinship between a given and an unknwn: GIVEN UNKNOWN Type 1

More information

Kinetic Model Completeness

Kinetic Model Completeness 5.68J/10.652J Spring 2003 Lecture Ntes Tuesday April 15, 2003 Kinetic Mdel Cmpleteness We say a chemical kinetic mdel is cmplete fr a particular reactin cnditin when it cntains all the species and reactins

More information

Assessment Primer: Writing Instructional Objectives

Assessment Primer: Writing Instructional Objectives Assessment Primer: Writing Instructinal Objectives (Based n Preparing Instructinal Objectives by Mager 1962 and Preparing Instructinal Objectives: A critical tl in the develpment f effective instructin

More information

Inflow Control on Expressway Considering Traffic Equilibria

Inflow Control on Expressway Considering Traffic Equilibria Memirs f the Schl f Engineering, Okayama University Vl. 20, N.2, February 1986 Inflw Cntrl n Expressway Cnsidering Traffic Equilibria Hirshi INOUYE* (Received February 14, 1986) SYNOPSIS When expressway

More information

CESAR Science Case The differential rotation of the Sun and its Chromosphere. Introduction. Material that is necessary during the laboratory

CESAR Science Case The differential rotation of the Sun and its Chromosphere. Introduction. Material that is necessary during the laboratory Teacher s guide CESAR Science Case The differential rtatin f the Sun and its Chrmsphere Material that is necessary during the labratry CESAR Astrnmical wrd list CESAR Bklet CESAR Frmula sheet CESAR Student

More information

Differentiation Applications 1: Related Rates

Differentiation Applications 1: Related Rates Differentiatin Applicatins 1: Related Rates 151 Differentiatin Applicatins 1: Related Rates Mdel 1: Sliding Ladder 10 ladder y 10 ladder 10 ladder A 10 ft ladder is leaning against a wall when the bttm

More information

LHS Mathematics Department Honors Pre-Calculus Final Exam 2002 Answers

LHS Mathematics Department Honors Pre-Calculus Final Exam 2002 Answers LHS Mathematics Department Hnrs Pre-alculus Final Eam nswers Part Shrt Prblems The table at the right gives the ppulatin f Massachusetts ver the past several decades Using an epnential mdel, predict the

More information

When a substance heats up (absorbs heat) it is an endothermic reaction with a (+)q

When a substance heats up (absorbs heat) it is an endothermic reaction with a (+)q Chemistry Ntes Lecture 15 [st] 3/6/09 IMPORTANT NOTES: -( We finished using the lecture slides frm lecture 14) -In class the challenge prblem was passed ut, it is due Tuesday at :00 P.M. SHARP, :01 is

More information

Unit 9: The Mole- Guided Notes What is a Mole?

Unit 9: The Mole- Guided Notes What is a Mole? Unit 9: The Mle- Guided Ntes What is a Mle? A mle is a name fr a specific f things Similar t a r a One mle is equal t 602 602,000,000,000,000,000,000,000 That s 602 with zers A mle is NOT an abbreviatin

More information

CS 477/677 Analysis of Algorithms Fall 2007 Dr. George Bebis Course Project Due Date: 11/29/2007

CS 477/677 Analysis of Algorithms Fall 2007 Dr. George Bebis Course Project Due Date: 11/29/2007 CS 477/677 Analysis f Algrithms Fall 2007 Dr. Gerge Bebis Curse Prject Due Date: 11/29/2007 Part1: Cmparisn f Srting Algrithms (70% f the prject grade) The bjective f the first part f the assignment is

More information

CHM112 Lab Graphing with Excel Grading Rubric

CHM112 Lab Graphing with Excel Grading Rubric Name CHM112 Lab Graphing with Excel Grading Rubric Criteria Pints pssible Pints earned Graphs crrectly pltted and adhere t all guidelines (including descriptive title, prperly frmatted axes, trendline

More information

Experiment #3. Graphing with Excel

Experiment #3. Graphing with Excel Experiment #3. Graphing with Excel Study the "Graphing with Excel" instructins that have been prvided. Additinal help with learning t use Excel can be fund n several web sites, including http://www.ncsu.edu/labwrite/res/gt/gt-

More information

B. Definition of an exponential

B. Definition of an exponential Expnents and Lgarithms Chapter IV - Expnents and Lgarithms A. Intrductin Starting with additin and defining the ntatins fr subtractin, multiplicatin and divisin, we discvered negative numbers and fractins.

More information

Find this material useful? You can help our team to keep this site up and bring you even more content consider donating via the link on our site.

Find this material useful? You can help our team to keep this site up and bring you even more content consider donating via the link on our site. Find this material useful? Yu can help ur team t keep this site up and bring yu even mre cntent cnsider dnating via the link n ur site. Still having truble understanding the material? Check ut ur Tutring

More information

T Algorithmic methods for data mining. Slide set 6: dimensionality reduction

T Algorithmic methods for data mining. Slide set 6: dimensionality reduction T-61.5060 Algrithmic methds fr data mining Slide set 6: dimensinality reductin reading assignment LRU bk: 11.1 11.3 PCA tutrial in mycurses (ptinal) ptinal: An Elementary Prf f a Therem f Jhnsn and Lindenstrauss,

More information

Bootstrap Method > # Purpose: understand how bootstrap method works > obs=c(11.96, 5.03, 67.40, 16.07, 31.50, 7.73, 11.10, 22.38) > n=length(obs) >

Bootstrap Method > # Purpose: understand how bootstrap method works > obs=c(11.96, 5.03, 67.40, 16.07, 31.50, 7.73, 11.10, 22.38) > n=length(obs) > Btstrap Methd > # Purpse: understand hw btstrap methd wrks > bs=c(11.96, 5.03, 67.40, 16.07, 31.50, 7.73, 11.10, 22.38) > n=length(bs) > mean(bs) [1] 21.64625 > # estimate f lambda > lambda = 1/mean(bs);

More information

Support-Vector Machines

Support-Vector Machines Supprt-Vectr Machines Intrductin Supprt vectr machine is a linear machine with sme very nice prperties. Haykin chapter 6. See Alpaydin chapter 13 fr similar cntent. Nte: Part f this lecture drew material

More information

Unit 14 Thermochemistry Notes

Unit 14 Thermochemistry Notes Name KEY Perid CRHS Academic Chemistry Unit 14 Thermchemistry Ntes Quiz Date Exam Date Lab Dates Ntes, Hmewrk, Exam Reviews and Their KEYS lcated n CRHS Academic Chemistry Website: https://cincchem.pbwrks.cm

More information

CHAPTER 24: INFERENCE IN REGRESSION. Chapter 24: Make inferences about the population from which the sample data came.

CHAPTER 24: INFERENCE IN REGRESSION. Chapter 24: Make inferences about the population from which the sample data came. MATH 1342 Ch. 24 April 25 and 27, 2013 Page 1 f 5 CHAPTER 24: INFERENCE IN REGRESSION Chapters 4 and 5: Relatinships between tw quantitative variables. Be able t Make a graph (scatterplt) Summarize the

More information

Dataflow Analysis and Abstract Interpretation

Dataflow Analysis and Abstract Interpretation Dataflw Analysis and Abstract Interpretatin Cmputer Science and Artificial Intelligence Labratry MIT Nvember 9, 2015 Recap Last time we develped frm first principles an algrithm t derive invariants. Key

More information

UN Committee of Experts on Environmental Accounting New York, June Peter Cosier Wentworth Group of Concerned Scientists.

UN Committee of Experts on Environmental Accounting New York, June Peter Cosier Wentworth Group of Concerned Scientists. UN Cmmittee f Experts n Envirnmental Accunting New Yrk, June 2011 Peter Csier Wentwrth Grup f Cncerned Scientists Speaking Ntes Peter Csier: Directr f the Wentwrth Grup Cncerned Scientists based in Sydney,

More information

Physics 2010 Motion with Constant Acceleration Experiment 1

Physics 2010 Motion with Constant Acceleration Experiment 1 . Physics 00 Mtin with Cnstant Acceleratin Experiment In this lab, we will study the mtin f a glider as it accelerates dwnhill n a tilted air track. The glider is supprted ver the air track by a cushin

More information

ANSWER KEY FOR MATH 10 SAMPLE EXAMINATION. Instructions: If asked to label the axes please use real world (contextual) labels

ANSWER KEY FOR MATH 10 SAMPLE EXAMINATION. Instructions: If asked to label the axes please use real world (contextual) labels ANSWER KEY FOR MATH 10 SAMPLE EXAMINATION Instructins: If asked t label the axes please use real wrld (cntextual) labels Multiple Chice Answers: 0 questins x 1.5 = 30 Pints ttal Questin Answer Number 1

More information

NUROP CONGRESS PAPER CHINESE PINYIN TO CHINESE CHARACTER CONVERSION

NUROP CONGRESS PAPER CHINESE PINYIN TO CHINESE CHARACTER CONVERSION NUROP Chinese Pinyin T Chinese Character Cnversin NUROP CONGRESS PAPER CHINESE PINYIN TO CHINESE CHARACTER CONVERSION CHIA LI SHI 1 AND LUA KIM TENG 2 Schl f Cmputing, Natinal University f Singapre 3 Science

More information

5 th grade Common Core Standards

5 th grade Common Core Standards 5 th grade Cmmn Cre Standards In Grade 5, instructinal time shuld fcus n three critical areas: (1) develping fluency with additin and subtractin f fractins, and develping understanding f the multiplicatin

More information

AP CHEMISTRY CHAPTER 6 NOTES THERMOCHEMISTRY

AP CHEMISTRY CHAPTER 6 NOTES THERMOCHEMISTRY AP CHEMISTRY CHAPTER 6 NOTES THERMOCHEMISTRY Energy- the capacity t d wrk r t prduce heat 1 st Law f Thermdynamics: Law f Cnservatin f Energy- energy can be cnverted frm ne frm t anther but it can be neither

More information

The steps of the engineering design process are to:

The steps of the engineering design process are to: The engineering design prcess is a series f steps that engineers fllw t cme up with a slutin t a prblem. Many times the slutin invlves designing a prduct (like a machine r cmputer cde) that meets certain

More information

20 Faraday s Law and Maxwell s Extension to Ampere s Law

20 Faraday s Law and Maxwell s Extension to Ampere s Law Chapter 20 Faraday s Law and Maxwell s Extensin t Ampere s Law 20 Faraday s Law and Maxwell s Extensin t Ampere s Law Cnsider the case f a charged particle that is ming in the icinity f a ming bar magnet

More information

Large Sample Hypothesis Tests for a Population Proportion

Large Sample Hypothesis Tests for a Population Proportion Ntes-10.3a Large Sample Hypthesis Tests fr a Ppulatin Prprtin ***Cin Tss*** 1. A friend f yurs claims that when he tsses a cin he can cntrl the utcme. Yu are skeptical and want him t prve it. He tsses

More information

Introduction to Spacetime Geometry

Introduction to Spacetime Geometry Intrductin t Spacetime Gemetry Let s start with a review f a basic feature f Euclidean gemetry, the Pythagrean therem. In a twdimensinal crdinate system we can relate the length f a line segment t the

More information

Materials Engineering 272-C Fall 2001, Lecture 7 & 8 Fundamentals of Diffusion

Materials Engineering 272-C Fall 2001, Lecture 7 & 8 Fundamentals of Diffusion Materials Engineering 272-C Fall 2001, Lecture 7 & 8 Fundamentals f Diffusin Diffusin: Transprt in a slid, liquid, r gas driven by a cncentratin gradient (r, in the case f mass transprt, a chemical ptential

More information

I. Analytical Potential and Field of a Uniform Rod. V E d. The definition of electric potential difference is

I. Analytical Potential and Field of a Uniform Rod. V E d. The definition of electric potential difference is Length L>>a,b,c Phys 232 Lab 4 Ch 17 Electric Ptential Difference Materials: whitebards & pens, cmputers with VPythn, pwer supply & cables, multimeter, crkbard, thumbtacks, individual prbes and jined prbes,

More information

Preparation work for A2 Mathematics [2018]

Preparation work for A2 Mathematics [2018] Preparatin wrk fr A Mathematics [018] The wrk studied in Y1 will frm the fundatins n which will build upn in Year 13. It will nly be reviewed during Year 13, it will nt be retaught. This is t allw time

More information

AP Literature and Composition. Summer Reading Packet. Instructions and Guidelines

AP Literature and Composition. Summer Reading Packet. Instructions and Guidelines AP Literature and Cmpsitin Summer Reading Packet Instructins and Guidelines Accrding t the Cllege Bard Advanced Placement prgram: "The AP English curse in Literature and Cmpsitin shuld engage students

More information

k-nearest Neighbor How to choose k Average of k points more reliable when: Large k: noise in attributes +o o noise in class labels

k-nearest Neighbor How to choose k Average of k points more reliable when: Large k: noise in attributes +o o noise in class labels Mtivating Example Memry-Based Learning Instance-Based Learning K-earest eighbr Inductive Assumptin Similar inputs map t similar utputs If nt true => learning is impssible If true => learning reduces t

More information

LECTURE NOTES. Chapter 3: Classical Macroeconomics: Output and Employment. 1. The starting point

LECTURE NOTES. Chapter 3: Classical Macroeconomics: Output and Employment. 1. The starting point LECTURE NOTES Chapter 3: Classical Macrecnmics: Output and Emplyment 1. The starting pint The Keynesian revlutin was against classical ecnmics (rthdx ecnmics) Keynes refer t all ecnmists befre 1936 as

More information

Find this material useful? You can help our team to keep this site up and bring you even more content consider donating via the link on our site.

Find this material useful? You can help our team to keep this site up and bring you even more content consider donating via the link on our site. Find this material useful? Yu can help ur team t keep this site up and bring yu even mre cntent cnsider dnating via the link n ur site. Still having truble understanding the material? Check ut ur Tutring

More information

MODULE FOUR. This module addresses functions. SC Academic Elementary Algebra Standards:

MODULE FOUR. This module addresses functions. SC Academic Elementary Algebra Standards: MODULE FOUR This mdule addresses functins SC Academic Standards: EA-3.1 Classify a relatinship as being either a functin r nt a functin when given data as a table, set f rdered pairs, r graph. EA-3.2 Use

More information

Tree Structured Classifier

Tree Structured Classifier Tree Structured Classifier Reference: Classificatin and Regressin Trees by L. Breiman, J. H. Friedman, R. A. Olshen, and C. J. Stne, Chapman & Hall, 98. A Medical Eample (CART): Predict high risk patients

More information

NUMBERS, MATHEMATICS AND EQUATIONS

NUMBERS, MATHEMATICS AND EQUATIONS AUSTRALIAN CURRICULUM PHYSICS GETTING STARTED WITH PHYSICS NUMBERS, MATHEMATICS AND EQUATIONS An integral part t the understanding f ur physical wrld is the use f mathematical mdels which can be used t

More information

Chapters 29 and 35 Thermochemistry and Chemical Thermodynamics

Chapters 29 and 35 Thermochemistry and Chemical Thermodynamics Chapters 9 and 35 Thermchemistry and Chemical Thermdynamics 1 Cpyright (c) 011 by Michael A. Janusa, PhD. All rights reserved. Thermchemistry Thermchemistry is the study f the energy effects that accmpany

More information

A proposition is a statement that can be either true (T) or false (F), (but not both).

A proposition is a statement that can be either true (T) or false (F), (but not both). 400 lecture nte #1 [Ch 2, 3] Lgic and Prfs 1.1 Prpsitins (Prpsitinal Lgic) A prpsitin is a statement that can be either true (T) r false (F), (but nt bth). "The earth is flat." -- F "March has 31 days."

More information

ECEN 4872/5827 Lecture Notes

ECEN 4872/5827 Lecture Notes ECEN 4872/5827 Lecture Ntes Lecture #5 Objectives fr lecture #5: 1. Analysis f precisin current reference 2. Appraches fr evaluating tlerances 3. Temperature Cefficients evaluatin technique 4. Fundamentals

More information

Tutorial 3: Building a spectral library in Skyline

Tutorial 3: Building a spectral library in Skyline SRM Curse 2013 Tutrial 3 Spectral Library Tutrial 3: Building a spectral library in Skyline Spectral libraries fr SRM methd design and fr data analysis can be either directly added t a Skyline dcument

More information

Building Consensus The Art of Getting to Yes

Building Consensus The Art of Getting to Yes Building Cnsensus The Art f Getting t Yes An interview with Michael Wilkinsn, Certified Master Facilitatr and authr f The Secrets f Facilitatin and The Secrets t Masterful Meetings Abut Michael: Mr. Wilkinsn

More information

COMP 551 Applied Machine Learning Lecture 11: Support Vector Machines

COMP 551 Applied Machine Learning Lecture 11: Support Vector Machines COMP 551 Applied Machine Learning Lecture 11: Supprt Vectr Machines Instructr: (jpineau@cs.mcgill.ca) Class web page: www.cs.mcgill.ca/~jpineau/cmp551 Unless therwise nted, all material psted fr this curse

More information

Floating Point Method for Solving Transportation. Problems with Additional Constraints

Floating Point Method for Solving Transportation. Problems with Additional Constraints Internatinal Mathematical Frum, Vl. 6, 20, n. 40, 983-992 Flating Pint Methd fr Slving Transprtatin Prblems with Additinal Cnstraints P. Pandian and D. Anuradha Department f Mathematics, Schl f Advanced

More information

In SMV I. IAML: Support Vector Machines II. This Time. The SVM optimization problem. We saw:

In SMV I. IAML: Support Vector Machines II. This Time. The SVM optimization problem. We saw: In SMV I IAML: Supprt Vectr Machines II Nigel Gddard Schl f Infrmatics Semester 1 We sa: Ma margin trick Gemetry f the margin and h t cmpute it Finding the ma margin hyperplane using a cnstrained ptimizatin

More information

Internal vs. external validity. External validity. This section is based on Stock and Watson s Chapter 9.

Internal vs. external validity. External validity. This section is based on Stock and Watson s Chapter 9. Sectin 7 Mdel Assessment This sectin is based n Stck and Watsn s Chapter 9. Internal vs. external validity Internal validity refers t whether the analysis is valid fr the ppulatin and sample being studied.

More information

Getting Involved O. Responsibilities of a Member. People Are Depending On You. Participation Is Important. Think It Through

Getting Involved O. Responsibilities of a Member. People Are Depending On You. Participation Is Important. Think It Through f Getting Invlved O Literature Circles can be fun. It is exciting t be part f a grup that shares smething. S get invlved, read, think, and talk abut bks! Respnsibilities f a Member Remember a Literature

More information

AP Statistics Notes Unit Two: The Normal Distributions

AP Statistics Notes Unit Two: The Normal Distributions AP Statistics Ntes Unit Tw: The Nrmal Distributins Syllabus Objectives: 1.5 The student will summarize distributins f data measuring the psitin using quartiles, percentiles, and standardized scres (z-scres).

More information

Section 5.8 Notes Page Exponential Growth and Decay Models; Newton s Law

Section 5.8 Notes Page Exponential Growth and Decay Models; Newton s Law Sectin 5.8 Ntes Page 1 5.8 Expnential Grwth and Decay Mdels; Newtn s Law There are many applicatins t expnential functins that we will fcus n in this sectin. First let s lk at the expnential mdel. Expnential

More information

Department of Electrical Engineering, University of Waterloo. Introduction

Department of Electrical Engineering, University of Waterloo. Introduction Sectin 4: Sequential Circuits Majr Tpics Types f sequential circuits Flip-flps Analysis f clcked sequential circuits Mre and Mealy machines Design f clcked sequential circuits State transitin design methd

More information

Checking the resolved resonance region in EXFOR database

Checking the resolved resonance region in EXFOR database Checking the reslved resnance regin in EXFOR database Gttfried Bertn Sciété de Calcul Mathématique (SCM) Oscar Cabells OECD/NEA Data Bank JEFF Meetings - Sessin JEFF Experiments Nvember 0-4, 017 Bulgne-Billancurt,

More information

How do scientists measure trees? What is DBH?

How do scientists measure trees? What is DBH? Hw d scientists measure trees? What is DBH? Purpse Students develp an understanding f tree size and hw scientists measure trees. Students bserve and measure tree ckies and explre the relatinship between

More information

Reinforcement Learning" CMPSCI 383 Nov 29, 2011!

Reinforcement Learning CMPSCI 383 Nov 29, 2011! Reinfrcement Learning" CMPSCI 383 Nv 29, 2011! 1 Tdayʼs lecture" Review f Chapter 17: Making Cmple Decisins! Sequential decisin prblems! The mtivatin and advantages f reinfrcement learning.! Passive learning!

More information

CHAPTER 8b Static Equilibrium Units

CHAPTER 8b Static Equilibrium Units CHAPTER 8b Static Equilibrium Units The Cnditins fr Equilibrium Slving Statics Prblems Stability and Balance Elasticity; Stress and Strain The Cnditins fr Equilibrium An bject with frces acting n it, but

More information

Testing Groups of Genes

Testing Groups of Genes Testing Grups f Genes Part II: Scring Gene Ontlgy Terms Manuela Hummel, LMU München Adrian Alexa, MPI Saarbrücken NGFN-Curses in Practical DNA Micrarray Analysis Heidelberg, March 6, 2008 Bilgical questins

More information

The standards are taught in the following sequence.

The standards are taught in the following sequence. B L U E V A L L E Y D I S T R I C T C U R R I C U L U M MATHEMATICS Third Grade In grade 3, instructinal time shuld fcus n fur critical areas: (1) develping understanding f multiplicatin and divisin and

More information