Computational Methods CMSC/AMSC/MAPL 460. Ramani Duraiswami, Dept. of Computer Science

Size: px
Start display at page:

Download "Computational Methods CMSC/AMSC/MAPL 460. Ramani Duraiswami, Dept. of Computer Science"

Transcription

1 Cmputatinal Methds CMSC/AMSC/MAPL 460 Ramani Duraiswami, Dept. f Cmputer Science

2 Curse Gals Intrductin t the use f scientific cmputing techniques t slve prblems in varius dmains Understand principles behind algrithms Intelligent chice and use f available sftware Understand hw t Cnvert a mdel int a discrete system n the cmputer Hw t deal with data perfrm simulatins fr applicatins Display and evaluate simulatin results Appreciate which cmputatins are feasible

3 New Paradigm Scientific Discvery thrugh Cmputing Paradigm? A set f assumptins, cncepts, values, and practices that cnstitutes a way f viewing reality fr the cmmunity that shares them, especially in an intellectual discipline. Engineering (aernautics, fluid dynamics, circuit design, radar, antennas, signal prcessing, ) Physics (stellar dynamics, materials, ) Ecnmics/Scilgy (mdeling and analyzing data, cmputatinal statistics, stck picking, ) Bilgy (bistatistics, cmputatinal bilgy, genmics and prtemics, ) Cmputer Science (mdeling systems/netwrk perfrmance, infrmatin retrieval, ) Yur field

4 Anther paradigm : Data driven science Grab data and prcess it Audi, vide, text, MRI, X-Ray, weather, strain-gage, flw, gene-chip, seismgraph, Mre s law drives bth prcessing pwer, memry, sensr cst and capability Mre s law: Prcessr speed dubles every 18 mnths Mre generally: Technlgy X capability will duble in Y mnths Need algrithms t prcess larger and larger data sets, and extract infrmatin frm them Fit data, Extract mdel parameters, Learn relatinships In general cmpute with the data

5 The Curse Tw lectures a week Hmewrk every week r ther week 40% hmewrk, 25% exam 1, 35 % final Attendance/participatin will be a factr Class web site: Required Bk Numerical Cmputing with MATLAB by Cleve Mler The gd news The cmplete bk is nline! Bk is als nt as expensive as sme thers (~$40)

6 Curse Curse cmes with Matlab sftware that is dwnladable frm the bk web site Anther excellent bk/resurce: Numerical Recipes by William H. Press, Saul A. Teuklsky, William T. Vetterling, Brian P. Flannery Als available nline! G t Practical in the trenches bk

7 Hmewrk Hmewrk will invlve prgramming in MATLAB mainly prblems frm the text Style/Clarity/Cleanliness f utput will cunt Wrk/Results must be easily understd t be interpreted Visualizatin (graphs) Cmmented cde

8 Syllabus Intrductin, Cmputer Arithmetic and Errrs (Chapter 1) (apprx. 3 lectures) curse survey intrductin t Matlab machine arithmetic and errr analysis stability and cnditining Slving Linear Systems f Equatins (Chapter 2) (apprx. 4 lectures) Gaussian eliminatin well-cnditining vs. ill-cnditining, matrix and vectr nrms Ntins f algrithm cmplexity sparse systems: direct and iterative methds

9 Syllabus Interplatin (Chapters 3) (apprx. 4 lectures) plynmial interplatin Other basis functins and plynmials piecewise plynmial interplatin spline interplatin Zers and Rts (Chapter 4) (apprx. 3 lectures) Linear and Nnlinear systems f equatins Bisectin, Secant and Newtn methd Intrductin t ptimizatin Slving Linear Least Squares Prblems (Chapter 5) (apprx. 3 lectures) data-fitting and least squares QR factrizatin

10 Syllabus Integratin/Quadrature (Chapter 6) elementary integratin frmulas (midpint, trapezid, etc.) cmpund and adaptive integratin frmulas Gaussian quadrature Furier Analysis (Chapter 8) Ordinary Differential Equatins (Chapter 9) (apprx. 4 lectures) rdinary differential equatins and Euler's methd adaptive methds fr rdinary differential equatins methds fr stiff systems

11 Histry f MATLAB Strengths f MATLAB Weaknesses f MATLAB MATLAB Overview

12 MATLAB MATrix LABratry Interactive system Prgramming language Extendable What is MATLAB?

13 What is MATLAB?: 2 Cnsidering MATLAB at hme Standard editin Available fr rughly 2 thusand dllars Student editin Available fr rughly 1 hundred dllars. Sme limitatins Shrter license perid On campus Site license

14 Histry f MATLAB Ancestral sftware t MATLAB Frtran subrutines fr slving linear (LINPACK) and eigenvalue (EISPACK) prblems

15 Histry f MATLAB, cn t: 2 One f the develpers f these packages, Cleve Mler wanted his students t be able t use LINPACK and EISPACK withut requiring knwledge f Frtran MATLAB develped as an interactive system t access LINPACK and EISPACK

16 Histry f MATLAB, cn t: 3 MATLAB gained ppularity primarily thrugh wrd f muth because it was nt fficially distributed In the 1980 s, MATLAB was rewritten in C with mre functinality (such as pltting rutines)

17 Histry f MATLAB, cn t: 4 The Mathwrks, Inc. was created in 1984 The Mathwrks is nw respnsible fr develpment, sale, and supprt fr MATLAB

18 Strengths f MATLAB MATLAB is relatively easy t learn MATLAB cde is ptimized t be relatively quick when perfrming matrix peratins MATLAB may behave like a calculatr r as a prgramming language MATLAB is interpreted, errrs are easier t fix Althugh primarily prcedural, MATLAB des have sme bject-riented elements

19 Weaknesses f MATLAB MATLAB is NOT a general purpse prgramming language MATLAB is an interpreted language (making it fr the mst part slwer than a cmpiled language such as C++) MATLAB is designed fr scientific cmputatin and is nt suitable fr sme things (such as parsing text)

20 Matlab Windws Cmmand line Interface ( Main Windw) Editr Windw Present Directry Directry Cntents and Wrkspace variables Cmmand line Cmmand Histry

21 Matrices in Matlab Entering a Matrix: >> A(:,1) >> A = [ ; ; ] A = >> A(1,2) ans = >> A(2,:) ans = Matrix referencing: ans = >> A+A; >> A.*A; >> 3*A; >> A*A Matrix Operatins: ans =

22 Built-in functins Inverting a Matrix >> inv(a) Determinant >> det(a) ans = Rank >> rank(a) ans = 3 ans = Transpse f a Matrix >> A' ans =

23 Slving Linear System Linear system f algebraic equatins: >> A = [ ; ; ] A = >> b = [2 6 4 ]' b = x 1 + x 2 + 2x 3 = 2 3x 1 x 2 + x 3 = 6 x 1 + 3x 2 + 4x 3 = >> rank(a) ans = 3 >> x = b\a (als culd d inv(a)*b, but nt recmmended) x = Ax=b

24 Pltting a functin y 1 7x x y 2 5x x >> x = [ 0:0.01:5]; >> y1 = 7 * x./ ( x ); >> y2 = 5 * x./ ( x ); >> plt(x,y1,x,y2) >> legend('y1','y2')

25 Intrductin t MATLAB Vectrs, Matrices, Syntax Vectr peratins, including the \dt cmmands length, size, linspace, lgspace, size, rand, randn, randperm Special vectrs and matrices: zers, nes, eye, magic Scripts and functins Diary Graphing: plt, special fnts, plt3, semilgx, semilgy, title, xlabel, ylabel, axis, grid, legend, subplt, Frmatted utput: Sprintf, ;, disp, input Prgramming: fr, if, while, &,, ~ General/misc cmmands ginput set, size, max, sum, clse, figure, hist, any, all, flr, fix, rund, Graphical prgramming and callbacks

A Correlation of. to the. South Carolina Academic Standards for Mathematics Precalculus

A Correlation of. to the. South Carolina Academic Standards for Mathematics Precalculus A Crrelatin f Suth Carlina Academic Standards fr Mathematics Precalculus INTRODUCTION This dcument demnstrates hw Precalculus (Blitzer), 4 th Editin 010, meets the indicatrs f the. Crrelatin page references

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

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

[COLLEGE ALGEBRA EXAM I REVIEW TOPICS] ( u s e t h i s t o m a k e s u r e y o u a r e r e a d y )

[COLLEGE ALGEBRA EXAM I REVIEW TOPICS] ( u s e t h i s t o m a k e s u r e y o u a r e r e a d y ) (Abut the final) [COLLEGE ALGEBRA EXAM I REVIEW TOPICS] ( u s e t h i s t m a k e s u r e y u a r e r e a d y ) The department writes the final exam s I dn't really knw what's n it and I can't very well

More information

GENESIS Structural Optimization for ANSYS Mechanical

GENESIS Structural Optimization for ANSYS Mechanical P3 STRUCTURAL OPTIMIZATION (Vl. II) GENESIS Structural Optimizatin fr ANSYS Mechanical An Integrated Extensin that adds Structural Optimizatin t ANSYS Envirnment New Features and Enhancements Release 2017.03

More information

Competency Statements for Wm. E. Hay Mathematics for grades 7 through 12:

Competency Statements for Wm. E. Hay Mathematics for grades 7 through 12: Cmpetency Statements fr Wm. E. Hay Mathematics fr grades 7 thrugh 12: Upn cmpletin f grade 12 a student will have develped a cmbinatin f sme/all f the fllwing cmpetencies depending upn the stream f math

More information

EASTERN ARIZONA COLLEGE Precalculus Trigonometry

EASTERN ARIZONA COLLEGE Precalculus Trigonometry EASTERN ARIZONA COLLEGE Precalculus Trignmetry Curse Design 2017-2018 Curse Infrmatin Divisin Mathematics Curse Number MAT 181 Title Precalculus Trignmetry Credits 3 Develped by Gary Rth Lecture/Lab Rati

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

8 th Grade Math: Pre-Algebra

8 th Grade Math: Pre-Algebra Hardin Cunty Middle Schl (2013-2014) 1 8 th Grade Math: Pre-Algebra Curse Descriptin The purpse f this curse is t enhance student understanding, participatin, and real-life applicatin f middle-schl mathematics

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

Math Foundations 10 Work Plan

Math Foundations 10 Work Plan Math Fundatins 10 Wrk Plan Units / Tpics 10.1 Demnstrate understanding f factrs f whle numbers by: Prime factrs Greatest Cmmn Factrs (GCF) Least Cmmn Multiple (LCM) Principal square rt Cube rt Time Frame

More information

Design and Simulation of Dc-Dc Voltage Converters Using Matlab/Simulink

Design and Simulation of Dc-Dc Voltage Converters Using Matlab/Simulink American Jurnal f Engineering Research (AJER) 016 American Jurnal f Engineering Research (AJER) e-issn: 30-0847 p-issn : 30-0936 Vlume-5, Issue-, pp-9-36 www.ajer.rg Research Paper Open Access Design and

More information

City of Angels School Independent Study Los Angeles Unified School District

City of Angels School Independent Study Los Angeles Unified School District City f Angels Schl Independent Study Ls Angeles Unified Schl District INSTRUCTIONAL GUIDE Algebra 1B Curse ID #310302 (CCSS Versin- 06/15) This curse is the secnd semester f Algebra 1, fulfills ne half

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

EDA Engineering Design & Analysis Ltd

EDA Engineering Design & Analysis Ltd EDA Engineering Design & Analysis Ltd THE FINITE ELEMENT METHOD A shrt tutrial giving an verview f the histry, thery and applicatin f the finite element methd. Intrductin Value f FEM Applicatins Elements

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

Mathematics Methods Units 1 and 2

Mathematics Methods Units 1 and 2 Mathematics Methds Units 1 and 2 Mathematics Methds is an ATAR curse which fcuses n the use f calculus and statistical analysis. The study f calculus prvides a basis fr understanding rates f change in

More information

Computational modeling techniques

Computational modeling techniques Cmputatinal mdeling techniques Lecture 2: Mdeling change. In Petre Department f IT, Åb Akademi http://users.ab.fi/ipetre/cmpmd/ Cntent f the lecture Basic paradigm f mdeling change Examples Linear dynamical

More information

ECE 545 Project Deliverables

ECE 545 Project Deliverables ECE 545 Prject Deliverables Tp-level flder: _ Secnd-level flders: 1_assumptins 2_blck_diagrams 3_interface 4_ASM_charts 5_surce_cde 6_verificatin 7_timing_analysis 8_results

More information

Math Foundations 20 Work Plan

Math Foundations 20 Work Plan Math Fundatins 20 Wrk Plan Units / Tpics 20.8 Demnstrate understanding f systems f linear inequalities in tw variables. Time Frame December 1-3 weeks 6-10 Majr Learning Indicatrs Identify situatins relevant

More information

Department: MATHEMATICS

Department: MATHEMATICS Cde: MATH 022 Title: ALGEBRA SKILLS Institute: STEM Department: MATHEMATICS Curse Descriptin: This curse prvides students wh have cmpleted MATH 021 with the necessary skills and cncepts t cntinue the study

More information

Lesson Plan. Recode: They will do a graphic organizer to sequence the steps of scientific method.

Lesson Plan. Recode: They will do a graphic organizer to sequence the steps of scientific method. Lessn Plan Reach: Ask the students if they ever ppped a bag f micrwave ppcrn and nticed hw many kernels were unppped at the bttm f the bag which made yu wnder if ther brands pp better than the ne yu are

More information

ENSC Discrete Time Systems. Project Outline. Semester

ENSC Discrete Time Systems. Project Outline. Semester ENSC 49 - iscrete Time Systems Prject Outline Semester 006-1. Objectives The gal f the prject is t design a channel fading simulatr. Upn successful cmpletin f the prject, yu will reinfrce yur understanding

More information

FEM for engineering applications (SE1025), 6 hp, Fall 2011

FEM for engineering applications (SE1025), 6 hp, Fall 2011 KTH Slid Mechanics SE1025 FEM. FEM fr engineering applicatins (SE1025), 6 hp, Fall 2011 FEM fr engineering applicatins (SE1025), 6 hp, Fall 2011 1. General infrmatin The curse gives an intrductin t energy

More information

Professional Development. Implementing the NGSS: High School Physics

Professional Development. Implementing the NGSS: High School Physics Prfessinal Develpment Implementing the NGSS: High Schl Physics This is a dem. The 30-min vide webinar is available in the full PD. Get it here. Tday s Learning Objectives NGSS key cncepts why this is different

More information

Dead-beat controller design

Dead-beat controller design J. Hetthéssy, A. Barta, R. Bars: Dead beat cntrller design Nvember, 4 Dead-beat cntrller design In sampled data cntrl systems the cntrller is realised by an intelligent device, typically by a PLC (Prgrammable

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

Mathematics and Computer Sciences Department. o Work Experience, General. o Open Entry/Exit. Distance (Hybrid Online) for online supported courses

Mathematics and Computer Sciences Department. o Work Experience, General. o Open Entry/Exit. Distance (Hybrid Online) for online supported courses SECTION A - Curse Infrmatin 1. Curse ID: 2. Curse Title: 3. Divisin: 4. Department: 5. Subject: 6. Shrt Curse Title: 7. Effective Term:: MATH 70S Integrated Intermediate Algebra Natural Sciences Divisin

More information

Credits: 4 Lecture Hours: 4 Lab/Studio Hours: 0

Credits: 4 Lecture Hours: 4 Lab/Studio Hours: 0 Cde: MATH 025 Title: ELEMENTARY ALGEBRA Divisin: MATHEMATICS Department: MATHEMATICS Curse Descriptin: This curse is a review f elementary algebra and requires previus experience in algebra. The curse

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

Code: MATH 151 Title: INTERMEDIATE ALGEBRA

Code: MATH 151 Title: INTERMEDIATE ALGEBRA Cde: MATH 151 Title: INTERMEDIATE ALGEBRA Divisin: MATHEMATICS Department: MATHEMATICS Curse Descriptin: This curse prepares students fr curses that require algebraic skills beynd thse taught in Elementary

More information

7 TH GRADE MATH STANDARDS

7 TH GRADE MATH STANDARDS ALGEBRA STANDARDS Gal 1: Students will use the language f algebra t explre, describe, represent, and analyze number expressins and relatins 7 TH GRADE MATH STANDARDS 7.M.1.1: (Cmprehensin) Select, use,

More information

A Scalable Recurrent Neural Network Framework for Model-free

A Scalable Recurrent Neural Network Framework for Model-free A Scalable Recurrent Neural Netwrk Framewrk fr Mdel-free POMDPs April 3, 2007 Zhenzhen Liu, Itamar Elhanany Machine Intelligence Lab Department f Electrical and Cmputer Engineering The University f Tennessee

More information

Emphases in Common Core Standards for Mathematical Content Kindergarten High School

Emphases in Common Core Standards for Mathematical Content Kindergarten High School Emphases in Cmmn Cre Standards fr Mathematical Cntent Kindergarten High Schl Cntent Emphases by Cluster March 12, 2012 Describes cntent emphases in the standards at the cluster level fr each grade. These

More information

MATHEMATICS SYLLABUS SECONDARY 5th YEAR

MATHEMATICS SYLLABUS SECONDARY 5th YEAR Eurpean Schls Office f the Secretary-General Pedaggical Develpment Unit Ref. : 011-01-D-8-en- Orig. : EN MATHEMATICS SYLLABUS SECONDARY 5th YEAR 6 perid/week curse APPROVED BY THE JOINT TEACHING COMMITTEE

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

MODULE ONE. This module addresses the foundational concepts and skills that support all of the Elementary Algebra academic standards.

MODULE ONE. This module addresses the foundational concepts and skills that support all of the Elementary Algebra academic standards. Mdule Fundatinal Tpics MODULE ONE This mdule addresses the fundatinal cncepts and skills that supprt all f the Elementary Algebra academic standards. SC Academic Elementary Algebra Indicatrs included in

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

Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeoff

Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeoff Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeff Reading: Chapter 2 STATS 202: Data mining and analysis September 27, 2017 1 / 20 Supervised vs. unsupervised learning In unsupervised

More information

Fall 2013 Physics 172 Recitation 3 Momentum and Springs

Fall 2013 Physics 172 Recitation 3 Momentum and Springs Fall 03 Physics 7 Recitatin 3 Mmentum and Springs Purpse: The purpse f this recitatin is t give yu experience wrking with mmentum and the mmentum update frmula. Readings: Chapter.3-.5 Learning Objectives:.3.

More information

District Adopted Materials: Pre-Calculus; Graphing and Data Analysis (Prentice Hall) 1998

District Adopted Materials: Pre-Calculus; Graphing and Data Analysis (Prentice Hall) 1998 Grade: High chl Curse: Trignmetry and Pre-Calculus District Adpted Materials: Pre-Calculus; Graphing and Data (Prentice Hall) 1998 tandard 1: Number and Cmputatin The student uses numerical and cmputatinal

More information

Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeoff

Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeoff Lecture 2: Supervised vs. unsupervised learning, bias-variance tradeff Reading: Chapter 2 STATS 202: Data mining and analysis September 27, 2017 1 / 20 Supervised vs. unsupervised learning In unsupervised

More information

WRITING THE REPORT. Organizing the report. Title Page. Table of Contents

WRITING THE REPORT. Organizing the report. Title Page. Table of Contents WRITING THE REPORT Organizing the reprt Mst reprts shuld be rganized in the fllwing manner. Smetime there is a valid reasn t include extra chapters in within the bdy f the reprt. 1. Title page 2. Executive

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

IB Sports, Exercise and Health Science Summer Assignment. Mrs. Christina Doyle Seneca Valley High School

IB Sports, Exercise and Health Science Summer Assignment. Mrs. Christina Doyle Seneca Valley High School IB Sprts, Exercise and Health Science Summer Assignment Mrs. Christina Dyle Seneca Valley High Schl Welcme t IB Sprts, Exercise and Health Science! This curse incrprates the traditinal disciplines f anatmy

More information

Math 302 Learning Objectives

Math 302 Learning Objectives Multivariable Calculus (Part I) 13.1 Vectrs in Three-Dimensinal Space Math 302 Learning Objectives Plt pints in three-dimensinal space. Find the distance between tw pints in three-dimensinal space. Write

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

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

Linearization of the Output of a Wheatstone Bridge for Single Active Sensor. Madhu Mohan N., Geetha T., Sankaran P. and Jagadeesh Kumar V.

Linearization of the Output of a Wheatstone Bridge for Single Active Sensor. Madhu Mohan N., Geetha T., Sankaran P. and Jagadeesh Kumar V. Linearizatin f the Output f a Wheatstne Bridge fr Single Active Sensr Madhu Mhan N., Geetha T., Sankaran P. and Jagadeesh Kumar V. Dept. f Electrical Engineering, Indian Institute f Technlgy Madras, Chennai

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

Building to Transformations on Coordinate Axis Grade 5: Geometry Graph points on the coordinate plane to solve real-world and mathematical problems.

Building to Transformations on Coordinate Axis Grade 5: Geometry Graph points on the coordinate plane to solve real-world and mathematical problems. Building t Transfrmatins n Crdinate Axis Grade 5: Gemetry Graph pints n the crdinate plane t slve real-wrld and mathematical prblems. 5.G.1. Use a pair f perpendicular number lines, called axes, t define

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

1996 Engineering Systems Design and Analysis Conference, Montpellier, France, July 1-4, 1996, Vol. 7, pp

1996 Engineering Systems Design and Analysis Conference, Montpellier, France, July 1-4, 1996, Vol. 7, pp THE POWER AND LIMIT OF NEURAL NETWORKS T. Y. Lin Department f Mathematics and Cmputer Science San Jse State University San Jse, Califrnia 959-003 tylin@cs.ssu.edu and Bereley Initiative in Sft Cmputing*

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

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

Determining the Accuracy of Modal Parameter Estimation Methods

Determining the Accuracy of Modal Parameter Estimation Methods Determining the Accuracy f Mdal Parameter Estimatin Methds by Michael Lee Ph.D., P.E. & Mar Richardsn Ph.D. Structural Measurement Systems Milpitas, CA Abstract The mst cmmn type f mdal testing system

More information

5 th Grade Goal Sheet

5 th Grade Goal Sheet 5 th Grade Gal Sheet Week f Nvember 19 th, 2018 Upcming dates: 11/19 Franklin Institute Field Trip: Pack a Lunch 11/22 and 11/23 Schl Clsed fr the Thanksgiving Break. Frm Ms. Simmns: Dear 5 th Grade Students,

More information

Introduction to Models and Properties

Introduction to Models and Properties Intrductin t Mdels and Prperties Cmputer Science and Artificial Intelligence Labratry MIT Armand Slar-Lezama Nv 23, 2015 Nvember 23, 2015 1 Recap Prperties Prperties f variables Prperties at prgram pints

More information

Computational modeling techniques

Computational modeling techniques Cmputatinal mdeling techniques Lecture 11: Mdeling with systems f ODEs In Petre Department f IT, Ab Akademi http://www.users.ab.fi/ipetre/cmpmd/ Mdeling with differential equatins Mdeling strategy Fcus

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

Least Squares Optimal Filtering with Multirate Observations

Least Squares Optimal Filtering with Multirate Observations Prc. 36th Asilmar Cnf. n Signals, Systems, and Cmputers, Pacific Grve, CA, Nvember 2002 Least Squares Optimal Filtering with Multirate Observatins Charles W. herrien and Anthny H. Hawes Department f Electrical

More information

Area of Learning: Mathematics Pre-calculus 12

Area of Learning: Mathematics Pre-calculus 12 Area f Learning: Mathematics Pre-calculus 12 Big Ideas Elabratins Using inverses is the fundatin f slving equatins and can be extended t relatinships between functins. Understanding the characteristics

More information

3. Classify the following Numbers (Counting (natural), Whole, Integers, Rational, Irrational)

3. Classify the following Numbers (Counting (natural), Whole, Integers, Rational, Irrational) After yu cmplete each cncept give yurself a rating 1. 15 5 2 (5 3) 2. 2 4-8 (2 5) 3. Classify the fllwing Numbers (Cunting (natural), Whle, Integers, Ratinal, Irratinal) a. 7 b. 2 3 c. 2 4. Are negative

More information

Elements of Machine Intelligence - I

Elements of Machine Intelligence - I ECE-175A Elements f Machine Intelligence - I Ken Kreutz-Delgad Nun Vascncels ECE Department, UCSD Winter 2011 The curse The curse will cver basic, but imprtant, aspects f machine learning and pattern recgnitin

More information

History the Hood Way. Amy Shell-Gellasch Betty Mayfield Hood College. MD-DC-VA Section October 27, 2012

History the Hood Way. Amy Shell-Gellasch Betty Mayfield Hood College. MD-DC-VA Section October 27, 2012 Histry the Hd Way Amy Shell-Gellasch Betty Mayfield Hd Cllege MD-DC-VA Sectin Octber 27, 2012 Weaving histry int the majr Mathematics as part f the liberal arts Frm the Department s Missin Statement: Students

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

Revision: August 19, E Main Suite D Pullman, WA (509) Voice and Fax

Revision: August 19, E Main Suite D Pullman, WA (509) Voice and Fax .7.4: Direct frequency dmain circuit analysis Revisin: August 9, 00 5 E Main Suite D Pullman, WA 9963 (509) 334 6306 ice and Fax Overview n chapter.7., we determined the steadystate respnse f electrical

More information

Comprehensive Exam Guidelines Department of Chemical and Biomolecular Engineering, Ohio University

Comprehensive Exam Guidelines Department of Chemical and Biomolecular Engineering, Ohio University Cmprehensive Exam Guidelines Department f Chemical and Bimlecular Engineering, Ohi University Purpse In the Cmprehensive Exam, the student prepares an ral and a written research prpsal. The Cmprehensive

More information

Sections 15.1 to 15.12, 16.1 and 16.2 of the textbook (Robbins-Miller) cover the materials required for this topic.

Sections 15.1 to 15.12, 16.1 and 16.2 of the textbook (Robbins-Miller) cover the materials required for this topic. Tpic : AC Fundamentals, Sinusidal Wavefrm, and Phasrs Sectins 5. t 5., 6. and 6. f the textbk (Rbbins-Miller) cver the materials required fr this tpic.. Wavefrms in electrical systems are current r vltage

More information

Unit 2 Expressions, Equations, and Inequalities Math 7

Unit 2 Expressions, Equations, and Inequalities Math 7 Unit 2 Expressins, Equatins, and Inequalities Math 7 Number f Days: 24 10/23/17 12/1/17 Unit Gals Stage 1 Unit Descriptin: Students cnslidate and expand previus wrk with generating equivalent expressins

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

The Five Generations of Computers

The Five Generations of Computers COURSE: Fundamentals f Infrmatin Technlgy TOPIC: Generatins f cmputers Lecture 1 The Five Generatins f Cmputers The histry f cmputer develpment is ften referred t in reference t the different generatins

More information

MODULE 1. e x + c. [You can t separate a demominator, but you can divide a single denominator into each numerator term] a + b a(a + b)+1 = a + b

MODULE 1. e x + c. [You can t separate a demominator, but you can divide a single denominator into each numerator term] a + b a(a + b)+1 = a + b . REVIEW OF SOME BASIC ALGEBRA MODULE () Slving Equatins Yu shuld be able t slve fr x: a + b = c a d + e x + c and get x = e(ba +) b(c a) d(ba +) c Cmmn mistakes and strategies:. a b + c a b + a c, but

More information

Area of Learning: Mathematics Pre-calculus 11. Algebra allows us to generalize relationships through abstract thinking.

Area of Learning: Mathematics Pre-calculus 11. Algebra allows us to generalize relationships through abstract thinking. Area f Learning: Mathematics Pre-calculus 11 Big Ideas Elabratins Algebra allws us t generalize relatinships thrugh abstract thinking. generalize: The meanings f, and cnnectins between, peratins extend

More information

Subject description processes

Subject description processes Subject representatin 6.1.2. Subject descriptin prcesses Overview Fur majr prcesses r areas f practice fr representing subjects are classificatin, subject catalging, indexing, and abstracting. The prcesses

More information

Web-based GIS Systems for Radionuclides Monitoring. Dr. Todd Pierce Locus Technologies

Web-based GIS Systems for Radionuclides Monitoring. Dr. Todd Pierce Locus Technologies Web-based GIS Systems fr Radinuclides Mnitring Dr. Tdd Pierce Lcus Technlgies Lcus Technlgies 2014 Overview What is the prblem? Nuclear pwer plant peratrs need t mnitr radinuclides t safeguard the envirnment

More information

Sample questions to support inquiry with students:

Sample questions to support inquiry with students: Area f Learning: Mathematics Calculus 12 Big Ideas Elabratins The cncept f a limit is fundatinal t calculus. cncept f a limit: Differentiatin and integratin are defined using limits. Sample questins t

More information

Interdisciplinary Physics Example Cognate Plans

Interdisciplinary Physics Example Cognate Plans Interdisciplinary Physics Example Cgnate Plans The Interdisciplinary Physics cncentratin allws students substantial flexibility t define the thematic fcus f their study. This flexibility cmes with a respnsibility;

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

Exponential Functions, Growth and Decay

Exponential Functions, Growth and Decay Name..Class. Date. Expnential Functins, Grwth and Decay Essential questin: What are the characteristics f an expnential junctin? In an expnential functin, the variable is an expnent. The parent functin

More information

Biocomputers. [edit]scientific Background

Biocomputers. [edit]scientific Background Bicmputers Frm Wikipedia, the free encyclpedia Bicmputers use systems f bilgically derived mlecules, such as DNA and prteins, t perfrm cmputatinal calculatins invlving string, retrieving, and prcessing

More information

Relationships Between Frequency, Capacitance, Inductance and Reactance.

Relationships Between Frequency, Capacitance, Inductance and Reactance. P Physics Relatinships between f,, and. Relatinships Between Frequency, apacitance, nductance and Reactance. Purpse: T experimentally verify the relatinships between f, and. The data cllected will lead

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

Physical Layer: Outline

Physical Layer: Outline 18-: Intrductin t Telecmmunicatin Netwrks Lectures : Physical Layer Peter Steenkiste Spring 01 www.cs.cmu.edu/~prs/nets-ece Physical Layer: Outline Digital Representatin f Infrmatin Characterizatin f Cmmunicatin

More information

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

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

Function notation & composite functions Factoring Dividing polynomials Remainder theorem & factor property

Function notation & composite functions Factoring Dividing polynomials Remainder theorem & factor property Functin ntatin & cmpsite functins Factring Dividing plynmials Remainder therem & factr prperty Can d s by gruping r by: Always lk fr a cmmn factr first 2 numbers that ADD t give yu middle term and MULTIPLY

More information

West Deptford Middle School 8th Grade Curriculum Unit 4 Investigate Bivariate Data

West Deptford Middle School 8th Grade Curriculum Unit 4 Investigate Bivariate Data West Deptfrd Middle Schl 8th Grade Curriculum Unit 4 Investigate Bivariate Data Office f Curriculum and Instructin West Deptfrd Middle Schl 675 Grve Rd, Paulsbr, NJ 08066 wdeptfrd.k12.nj.us (856) 848-1200

More information

COMP 551 Applied Machine Learning Lecture 4: Linear classification

COMP 551 Applied Machine Learning Lecture 4: Linear classification COMP 551 Applied Machine Learning Lecture 4: Linear classificatin Instructr: Jelle Pineau (jpineau@cs.mcgill.ca) Class web page: www.cs.mcgill.ca/~jpineau/cmp551 Unless therwise nted, all material psted

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 401 Digital Signal Prcessing Prf. Mark Fwler Intrductin Nte Set #1 ading Assignment: Ch. 1 f Prakis & Manlakis 1/13 Mdern systems generally DSP Scenari get a cntinuus-time signal frm a sensr a cnt.-time

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

Unit Project Descriptio

Unit Project Descriptio Unit Prject Descriptin: Using Newtn s Laws f Mtin and the scientific methd, create a catapult r trebuchet that will sht a marshmallw at least eight feet. After building and testing yur machine at hme,

More information

SPH3U1 Lesson 06 Kinematics

SPH3U1 Lesson 06 Kinematics PROJECTILE MOTION LEARNING GOALS Students will: Describe the mtin f an bject thrwn at arbitrary angles thrugh the air. Describe the hrizntal and vertical mtins f a prjectile. Slve prjectile mtin prblems.

More information

Plasticty Theory (5p)

Plasticty Theory (5p) Cmputatinal Finite Strain Hyper-Elast Plasticty Thery (5p) à General ü Study nn-linear material and structural respnse (due t material as well as gemetrical effects) ü Fundamental principles fl Cntinuum

More information

CPM COLLEGE PREPARATORY MATH (6 th through 12 th Grade)

CPM COLLEGE PREPARATORY MATH (6 th through 12 th Grade) CPM COLLEGE PREPARATORY MATH (6 th thrugh 12 th Grade) The Twin Valley Schl District uses Cllege Preparatry Mathematics (CPM) in the middle grades (6th, 7 th and 8 th ) and in ur secndary math prgram (9th

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

End-of-Year AP Calculus Projects

End-of-Year AP Calculus Projects End-f-Year AP Calculus Prjects Cngratulatins! Yu ve cnquered the AP Calculus BC Exam! Fr the next three weeks, yu will be respnsible fr cmpleting three prjects. The first tw prjects will cunt as test grades

More information

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

Determining Optimum Path in Synthesis of Organic Compounds using Branch and Bound Algorithm Determining Optimum Path in Synthesis f Organic Cmpunds using Branch and Bund Algrithm Diastuti Utami 13514071 Prgram Studi Teknik Infrmatika Seklah Teknik Elektr dan Infrmatika Institut Teknlgi Bandung,

More information

PHY The Physics of Musical Sound

PHY The Physics of Musical Sound AS-2556-167-GE, PHY 1050 Physics f Musical Sunds 3 PHY - 1050 - The Physics f Musical Sund C. Curse - New General Educatin* Updated General Catalg Infrmatin Cllege/Department Physics and Astrnmy Semester

More information