Spring 2010 Instructor: Michele Merler.

Size: px
Start display at page:

Download "Spring 2010 Instructor: Michele Merler."

Transcription

1 Spring 200 Instructr: Michele Merler

2 . Generate the pythagric table (d nt insert the values manually)

3 . Generate the pythagric table (d nt insert the values manually) r = :2; PT = r'*r;

4 2. Cmpute the series Using 0 elements (S 0 ) Using 00 elements (S 00 ) S 4 3 Cmpare the S 0 and S 00 with the value f the limit. Which ne is clser t the limit? Display the answer t cmmand windw 5 7 9

5 2. Cmpute the series Using 0 elements (S 0 ) N = 9 Using 00 elements (S 00 ) N = 99 Cmpare the S 0 and S 00 with the value f the limit. Which ne is clser t the limit? Display the answer t cmmand windw N n n n S S

6 2. Cmpute the series S 4 Using 0 elements (S 0 ) N = 9 Using 00 elements (S 00 ) N = 99 Cmpare the S 0 and S 00 with the value f the limit. Which ne is clser t the limit? Display the answer t cmmand windw n N n S n fracvec = nes(,00)./[:2:99]; signs =(-).^[0:99]; S0 = 4 * sum(fracvec(:0).*signs(:0)); diff0 = pi - S0; S00 = 4 * sum(fracvec.*signs); diff00 = pi - S00; Ff ff

7 2. Cmpute the series S 4 Using 0 elements (S 0 ) N = 9 Using 00 elements (S 00 ) N = 99 Cmpare the S 0 and S 00 with the value f the limit. Which ne is clser t the limit? Display the answer t cmmand windw n N n S n fracvec = nes(,00)./[:2:99]; signs =(-).^[0:99]; S0 = 4 * sum(fracvec(:0).*signs(:0)); diff0 = pi - S0; S00 = 4 * sum(fracvec.*signs); diff00 = pi - S00; Ff ff

8 2. Cmpute the series S 4 Using 0 elements (S 0 ) N = 9 Using 00 elements (S 00 ) N = 99 Cmpare the S 0 and S 00 with the value f the limit. Which ne is clser t the limit? Display the answer t cmmand windw fracvec = nes(,00)./[:2:99]; signs =(-).^[0:99]; S0 = 4 * sum(fracvec(:0).*signs(:0)); diff0 = pi - S0; S00 = 4 * sum(fracvec.*signs); diff00 = pi - S00; if(diff0>diff00) disp('s00 is clser t the limit') else disp('s00 is clser t the limit') end n N n S n

9 2. Cmpute the series S 4 Using 0 elements (S 0 ) N = 9 Using 00 elements (S 00 ) N = 99 Cmpare the S 0 and S 00 with the value f the limit. Which ne is clser t the limit? Display the answer t cmmand windw fracvec = nes(,00)./[:2:99]; signs =(-).^[0:99]; S0 = 4 * sum(fracvec(:0).*signs(:0)); diff0 = pi - S0; S00 = 4 * sum(fracvec.*signs); diff00 = pi - S00; if(diff0>diff00) disp('s00 is clser t the limit') else disp('s00 is clser t the limit') end n N n S n

10 2. Cmpute the series Using 0 elements (S 0 ) Using 00 elements (S 00 ) S 4 3 Cmpare the S 0 and S 00 with the value f the limit. Which ne is clser t the limit? Display the answer t cmmand windw varsign = -; S0 = 4; fr in=3:2:9 S0 = S0 + 4 * varsign * /in; varsign = - * varsign; end

11 2. Cmpute the series Using 0 elements (S 0 ) Using 00 elements (S 00 ) S 4 3 Cmpare the S 0 and S 00 with the value f the limit. Which ne is clser t the limit? Display the answer t cmmand windw varsign = -; S00 = 4; fr in=3:2:99 S00 = S * varsign * /in; varsign = - * varsign; end

12 3. Cmpute sin(x) and cs(x) in the interval x = [0, 2π] (chse the number f elements in x s that the functins can be pltted smthly). Yu have t plt 3 graphs in the same figure: Plt sin(x) in blue in the specified interval, label the axes, assign a title t the figure Plt cs(x) in red in the specified interval, label the axes, assign a title t the figure and display the legend Cmpute the maximum between the tw functins at each pint in x, then plt the functin called maxsincs(x), with line width 2 and clr magenta, tgether with sin(x) and cs(x) in the specified interval. Label the axes, assign a title t the figure and display the legend

13 3. Cmpute sin(x) and cs(x) in the interval x = [0, 2π] (chse the number f elements in x s that the functins can be pltted smthly). Yu have t plt 3 graphs in the same figure: Plt sin(x) in blue in the specified interval, label the axes, assign a title t the figure Plt cs(x) in red in the specified interval, label the axes, assign a title t the figure and display the legend Cmpute the maximum between the tw functins at each pint in x, then plt the functin called maxsincs(x), with line width 2 and clr magenta, tgether with sin(x) and cs(x) in the specified interval. Label the axes, assign a title t the figure and display the legend x = [0:0.:2*pi]; sx = sin(x); cx = cs(x); figure subplt(3,,) plt(x,sx); xlim([0 2*pi]) title('sin(x)'); xlabel('x'); ylabel('f(x)') subplt(3,,2) plt(x,cx,'r'); xlim([0 2*pi]) title('cs(x)'); xlabel('x'); ylabel('f(x)'); legend('cs(x) ); maxsincsx = max(sin(x),cs(x)); subplt(3,,3) plt(x,sx); hld n plt(x,cx,'r'); plt(x,maxsincsx,'m','linewidth',2); hld ff xlim([0 2*pi]) title('maxsincs(x)'); xlabel('x'); ylabel('f(x)') legend('sin(x)','cs(x)','maxsincs(x)')

14 3. Output

15 4. Playing with the why functin. Open the why functin, cpy the full cde int a file named why2.m and save it. Mdify line f why2.m s that the functin returns the variable a. Write functin called cuntwhy that takes a filename.txt as input. In the functin, implement a lp which invkes the why2 cmmand at every iteratin. Stp the lp when the message returned by why2 is a repetitin f a message already seen. Write t filename.txt all the why2 messages seen, and display t cmmand windw the number f iteratins achieved.

16 4. Playing with the why functin. Open the why functin, cpy the full cde int a file named why2.m and save it. Mdify line f why2.m s that the functin returns the variable a. Write functin called cuntwhy that takes a filename.txt as input. In the functin, implement a lp which invkes the why2 cmmand at every iteratin. Stp the lp when the message returned by why2 is a repetitin f a message already seen. Write t filename.txt all the why2 messages seen, and display t cmmand windw the number f iteratins achieved.

17 Write functin called cuntwhy that takes a filename.txt as input. In the functin, implement a lp which invkes the why2 cmmand at every iteratin. Stp the lp when the message returned by why2 is a repetitin f a message already seen. Write t filename.txt all the why2 messages seen, and display t cmmand windw the number f iteratins achieved. numtimes = cuntwhy('whyanswers.txt'); disp(numtimes)

18 functin [cunt] = cuntwhy(filename) fid = fpen(filename,'w'); cunt = 0; in = ; cntrl = 0; while v{in} = why2; fprintf(fid,'%s\n',v{in}); cntrl = 0; if(in>) fr in2 = :in- if(strcmp(v{in},v{in2})) cntrl=; break end end end if(cntrl==) break else in = in+; end end fclse(fid) cunt = in

19 Handle = anther type f variables in MATLAB An identifier fr a functin h handlename x = h(pi/2); x = sin(pi/2); Can be inserted in structs and cells, nt arrays S.a S.b S.c C A

20 Handle t annymus functin h x + y; Example h x + y; x = h(,2); Example 2 h fun(x) + y; val = h(@sin, pi/2, 3); Example 3 functin [val] = myfun(fun,x,y) val = fun(x) + y; myfun(@sin, pi/2, 3); handlename ) bdy;

21 Handle t annymus functin h x + y; handlename ) bdy; Example h x + y; x = h(,2); Nte that the functin des nt have a specified name, but it is identified nly trugh the functin handle h! Example 2 h fun(x) + y; val = h(@sin, pi/2, 3); In these cases the variable fun is a functin handle itself! Example 3 functin [val] = myfun(fun,x,y) val = fun(x) + y; myfun(@sin, pi/2, 3);

22 fzer() finds a zer f a functin f(x) the clsest pssible t a specified pint x xz = fzer(@sin,x); res = fzer(funhandle,startpint); Example: find the zer f the functin sin(x) clsest t π/3 x = [-pi:0.:pi]; x = pi/3; xzer = fzer(@sin,x); plt(x, sin(x)); hld n plt(x, 0.*x,'k'); plt(x, sin(x),'g*'); plt(xzer, sin(xzer),'rd'); hld ff xlim([-pi pi]);

23 fzer() finds a zer f a functin f(x) inside a specified range x xz = fzer(@sin,x); res = fzer(funhandle,range); Example2: find the zer f the functin sin(x) between -π/3 and π/3 x = [-pi:0.:pi]; x = [-pi/3 pi/3]; xzer = fzer(@sin,x); plt(x, sin(x)); hld n plt(x, 0.*x,'k'); plt(x, sin(x),'g*'); plt(xzer, sin(xzer),'rd'); hld ff xlim([-pi pi]);

24 fzer() finds a zer f a functin f(x) inside a specified range x xz = fzer(@sin,x); res = fzer(funhandle,range); Example2: find the zer f the functin sin(x) between -π/3 and π/3 x = [-pi:0.:pi]; If x is a range, the functin fun() x = [-pi/3 pi/3]; referenced by funhandle MUST change xzer = fzer(@sin,x); sign between x() and x(2)! plt(x, sin(x)); hld n plt(x, 0.*x,'k'); Sign(fun(x())) ~= Sign(fun(x(2)))!!! plt(x, sin(x),'g*'); plt(xzer, sin(xzer),'rd'); hld ff xlim([-pi pi]);

25 rts() - returns a vectr whse elements are the rts f a plynmial Example p = [ -5 6]; res = rts(p); [3;2] 2 x 5x 6 0 ( x 3)( x 2) 0 res = rts(vec);

26 Suppse we have the fllwing system f linear equatins: x + y 2z = 4 3x + 5y + z = -2-2x + 3y 0z = 7 We want t slve it and find the values f x, y and z We can stre the equatins in the fllwing way: AX = b, with A b z y x X

27 Suppse we have the fllwing system f linear equatins: x + y 2z = 4 3x + 5y + z = -2-2x + 3y 0z = 7 We knw frm linear algebra the slutin is X = inv(a) * b S with MATLAB we can slve it in 2 ways: X = inv(a) * b; X = A \ b;

28 Suppse we have the fllwing system f linear equatins: x + y 2z = 4 3x + 5y + z = -2-2x + 3y 0z = 7 We knw frm linear algebra the slutin is X = inv(a) * b S with MATLAB we can slve it in 2 ways: X = inv(a) * b; X = A \ b; NOTE : the \ peratr wrks fr square systems. Fr rectangular systems it gives the least squares slutin. NOTE 2 : we have t check if the system is ver r underdetermined

29 rank() Cmputes the rank f a matrix (the number f linearly independent rws r clumns) R = rank(m); det() Cmputes the determinant f a matrix, which must be square NOTE: if determinant is nnzer, matrix is invertible d = det(m); trace() Cmputes the trace f a matrix (the sum f its diagnal elements) R = trace(m); inv() Cmputes the inverse f a matrix Ainv = inv(m)

30 Algebra/slving/determinant/cfactr_expansin.html

31 Eigenvalues, Eigenvectrs eig() [eigvect eigval] = eig(m); NOTE: M must be square RESULT: 2 matrices f same dimensin as M, a diagnal matrix eigval whse diagnal elements are the eigenvalues f M a matrix eigvec whse clumns are the eigenvectrs f M eigval*m = eigval*eigvec Singular Value Decmpsitin svd() [U, S, V] = svd(m); NOTE: M des nt have t be square RESULT: a diagnal matrix S f the same dimensin as M, with nnnegative diagnal elements in decreasing rder, and unitary matrices U and V s that M = U*S*V.

32 diff() D x = [:2:]; diff(x)/2; f x df x dx gradient() 2D x = :2; M = x *x [dx dy] = gradient(m); f x, y f x, x f x, y y y

33 Using the trapezidal rule x = 0:0.0:pi; inttx = trapz(x,sin(x)); int X 0 sin x dx

34 Using recursive adaptive Simpsn quadrature int X 0 sin x dx intqx = quad(@sin,0,pi) q = quad(@sin,0,pi,tl);

35 Fit an n th degree plynmial t predefined data plyfit() plyval() Example (fit 2nd degree plynmial t nisy data ) x = [-4:0.:4]; y = x.^2; ynisy = y + randn(size(y)); plt(x,ynisy,. ); ply = plyfit(x,ynisy,2); hld n; plt(x,plyval(ply,x), r );

36 Fit an n th degree plynmial t predefined data plyfit() plyval() Example (fit 2nd degree plynmial t nisy data ) x = [-4:0.:4]; y = x.^2; ynisy = y + randn(size(y)); plt(x,ynisy,. ); ply = plyfit(x,ynisy,2); hld n; plt(x,plyval(ply,x), r ); hld ff;

37 Fit an n th degree plynmial t predefined data plyfit() plyval() Example (fit 2nd degree plynmial t nisy data ) x = [-4:0.:4]; y = x.^2; ynisy = y + randn(size(y)); plt(x,ynisy,. ); ply = plyfit(x,ynisy,2); hld n; plt(x,plyval(ply,x), r ); hld ff;

38

39 bught = dlmread('grceries.txt',',',0,); fid = fpen('grceries.txt'); fd = textscan(fid,'%s'); fclse(fid); fd = strtk(fd{},','); M = eye(length(fd),length(fd)); fr in=:length(fd) fr in2=:length(fd) if(in ~= in2) M(in,in2) =... cbught(fd,bught,fd{in},fd{in2}) /... end end end numbught(fd,bught,fd{in}); imagesc(m); clrmap('ht'); clrbar

40 functin [num] = numbught(names,mat,index) fr in=:length(names) if(strcmp(names{in},index)) break end end num = sum(mat(in,:)); functin [num] = cbught(names,mat,index,index2) fr in=:length(names) if(strcmp(names{in},index)) in = in; end if(strcmp(names{in},index2)) in2 = in; end end num = sum( mat(in,:).* mat(in2,:) );

41 % series n = :0^5; S = cumsum( 2./ (n.^2 + 2.*n) ); figure subplt(,2,) plt(s) % series 2 S2 = cumsum((-).^n.* n./(n+)); subplt(,2,2) plt(s2)

42 Due at beginning f class, n exceptins Put yur cde (.m files) and additinal files in a single flder, name it yuruni_hw_x and zip it Uplad the zipped flder t CurseWrks Bring a printut f yur cde t class Gd luck and have fun, it s the last ne!

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

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

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

Principal Components

Principal Components Principal Cmpnents Suppse we have N measurements n each f p variables X j, j = 1,..., p. There are several equivalent appraches t principal cmpnents: Given X = (X 1,... X p ), prduce a derived (and small)

More information

Math 105: Review for Exam I - Solutions

Math 105: Review for Exam I - Solutions 1. Let f(x) = 3 + x + 5. Math 105: Review fr Exam I - Slutins (a) What is the natural dmain f f? [ 5, ), which means all reals greater than r equal t 5 (b) What is the range f f? [3, ), which means all

More information

ELT COMMUNICATION THEORY

ELT COMMUNICATION THEORY ELT 41307 COMMUNICATION THEORY Matlab Exercise #2 Randm variables and randm prcesses 1 RANDOM VARIABLES 1.1 ROLLING A FAIR 6 FACED DICE (DISCRETE VALIABLE) Generate randm samples fr rlling a fair 6 faced

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

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

COMP 551 Applied Machine Learning Lecture 9: Support Vector Machines (cont d)

COMP 551 Applied Machine Learning Lecture 9: Support Vector Machines (cont d) COMP 551 Applied Machine Learning Lecture 9: Supprt Vectr Machines (cnt d) Instructr: Herke van Hf (herke.vanhf@mail.mcgill.ca) Slides mstly by: Class web page: www.cs.mcgill.ca/~hvanh2/cmp551 Unless therwise

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

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

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

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

CS1150 Principles of Computer Science Loops

CS1150 Principles of Computer Science Loops CS1150 Principles f Cmputer Science Lps Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang CS1150 UC. Clrad Springs Review Blean variables Assume x=3, y=1, true r false?!(x3

More information

ENGI 4430 Parametric Vector Functions Page 2-01

ENGI 4430 Parametric Vector Functions Page 2-01 ENGI 4430 Parametric Vectr Functins Page -01. Parametric Vectr Functins (cntinued) Any nn-zer vectr r can be decmpsed int its magnitude r and its directin: r rrˆ, where r r 0 Tangent Vectr: dx dy dz dr

More information

Chapter 3 Kinematics in Two Dimensions; Vectors

Chapter 3 Kinematics in Two Dimensions; Vectors Chapter 3 Kinematics in Tw Dimensins; Vectrs Vectrs and Scalars Additin f Vectrs Graphical Methds (One and Tw- Dimensin) Multiplicatin f a Vectr b a Scalar Subtractin f Vectrs Graphical Methds Adding Vectrs

More information

AP Physics Kinematic Wrap Up

AP Physics Kinematic Wrap Up AP Physics Kinematic Wrap Up S what d yu need t knw abut this mtin in tw-dimensin stuff t get a gd scre n the ld AP Physics Test? First ff, here are the equatins that yu ll have t wrk with: v v at x x

More information

An Introduction to Matrix Algebra

An Introduction to Matrix Algebra Mdern Cntrl Systems, Eleventh Editin, by Richard C Drf and Rbert H. Bish. ISBN: 785. 8 Pearsn Educatin, Inc., Uer Saddle River, NJ. All rights reserved. APPENDIX E An Intrductin t Matrix Algebra E. DEFINITIONS

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

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

M thematics. National 5 Practice Paper D. Paper 1. Duration 1 hour. Total marks 40

M thematics. National 5 Practice Paper D. Paper 1. Duration 1 hour. Total marks 40 N5 M thematics Natinal 5 Practice Paper D Paper 1 Duratin 1 hur Ttal marks 40 Yu may NOT use a calculatr Attempt all the questins. Use blue r black ink. Full credit will nly be given t slutins which cntain

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

TP1 - Introduction to ArcGIS

TP1 - Introduction to ArcGIS TP1 - Intrductin t ArcGIS During this practical, we will use ArcGIS (ArcMap and ArcCatalg) t create maps f predictrs that culd explain the bserved bird richness in Switzerland. ArcMap is principally used

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

Root locus ( )( ) The given TFs are: 1. Using Matlab: >> rlocus(g) >> Gp1=tf(1,poly([0-1 -2])) Transfer function: s^3 + 3 s^2 + 2 s

Root locus ( )( ) The given TFs are: 1. Using Matlab: >> rlocus(g) >> Gp1=tf(1,poly([0-1 -2])) Transfer function: s^3 + 3 s^2 + 2 s The given TFs are: 1 1() s = s s + 1 s + G p, () s ( )( ) >> Gp1=tf(1,ply([0-1 -])) Transfer functin: 1 ----------------- s^ + s^ + s Rt lcus G 1 = p ( s + 0.8 + j)( s + 0.8 j) >> Gp=tf(1,ply([-0.8-*i

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

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

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

Homework 1 AERE355 Fall 2017 Due 9/1(F) NOTE: If your solution does not adhere to the format described in the syllabus, it will be grade as zero.

Homework 1 AERE355 Fall 2017 Due 9/1(F) NOTE: If your solution does not adhere to the format described in the syllabus, it will be grade as zero. 1 Hmerk 1 AERE355 Fall 217 Due 9/1(F) Name NOE: If yur slutin des nt adhere t the frmat described in the syllabus, it ill be grade as zer. Prblem 1(25pts) In the altitude regin h 1km, e have the flling

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

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

Cop yri ht 2006, Barr Mabillard.

Cop yri ht 2006, Barr Mabillard. Trignmetry II Cpyright Trignmetry II Standards 006, Test Barry ANSWERS Mabillard. 0 www.math0s.cm . If csα, where sinα > 0, and 5 cs α + β value f sin β, where tan β > 0, determine the exact 9 First determine

More information

Smoothing, penalized least squares and splines

Smoothing, penalized least squares and splines Smthing, penalized least squares and splines Duglas Nychka, www.image.ucar.edu/~nychka Lcally weighted averages Penalized least squares smthers Prperties f smthers Splines and Reprducing Kernels The interplatin

More information

Part a: Writing the nodal equations and solving for v o gives the magnitude and phase response: tan ( 0.25 )

Part a: Writing the nodal equations and solving for v o gives the magnitude and phase response: tan ( 0.25 ) + - Hmewrk 0 Slutin ) In the circuit belw: a. Find the magnitude and phase respnse. b. What kind f filter is it? c. At what frequency is the respnse 0.707 if the generatr has a ltage f? d. What is the

More information

Cambridge Assessment International Education Cambridge Ordinary Level. Published

Cambridge Assessment International Education Cambridge Ordinary Level. Published Cambridge Assessment Internatinal Educatin Cambridge Ordinary Level ADDITIONAL MATHEMATICS 4037/1 Paper 1 Octber/Nvember 017 MARK SCHEME Maximum Mark: 80 Published This mark scheme is published as an aid

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

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

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

xfyy.sny E gyef Lars g 8 2 s Zs yr Yao x ao X Axe B X'lo AtB tair z2schhyescosh's 2C scoshyesukh 8 gosh E si Eire 3AtB o X g o I

xfyy.sny E gyef Lars g 8 2 s Zs yr Yao x ao X Axe B X'lo AtB tair z2schhyescosh's 2C scoshyesukh 8 gosh E si Eire 3AtB o X g o I Math 418, Fall 2018, Midterm Prf. Sherman Name nstructins: This is a 50 minute exam. Fr credit yu must shw all relevant wrk n each prblem. Yu may nt use any calculatrs, phnes, bks, ntes, etc. There are

More information

1 The limitations of Hartree Fock approximation

1 The limitations of Hartree Fock approximation Chapter: Pst-Hartree Fck Methds - I The limitatins f Hartree Fck apprximatin The n electrn single determinant Hartree Fck wave functin is the variatinal best amng all pssible n electrn single determinants

More information

PLEASURE TEST SERIES (XI) - 07 By O.P. Gupta (For stuffs on Math, click at theopgupta.com)

PLEASURE TEST SERIES (XI) - 07 By O.P. Gupta (For stuffs on Math, click at theopgupta.com) A Cmpilatin By : OP Gupta (WhatsApp @ +9-9650 50 80) Fr mre stuffs n Maths, please visit : wwwtheopguptacm Time Allwed : 80 Minutes Max Marks : 00 SECTION A Questin numbers 0 t 0 carry mark each x x 5

More information

Kinematic transformation of mechanical behavior Neville Hogan

Kinematic transformation of mechanical behavior Neville Hogan inematic transfrmatin f mechanical behavir Neville Hgan Generalized crdinates are fundamental If we assume that a linkage may accurately be described as a cllectin f linked rigid bdies, their generalized

More information

M thematics. National 5 Practice Paper C. Paper 1. Duration 1 hour. Total marks 40

M thematics. National 5 Practice Paper C. Paper 1. Duration 1 hour. Total marks 40 N5 M thematics Natinal 5 Practice Paper C Paper 1 Duratin 1 hur Ttal marks 40 Yu may NOT use a calculatr Attempt all the questins. Use blue r black ink. Full credit will nly be given t slutins which cntain

More information

A Simple Set of Test Matrices for Eigenvalue Programs*

A Simple Set of Test Matrices for Eigenvalue Programs* Simple Set f Test Matrices fr Eigenvalue Prgrams* By C. W. Gear** bstract. Sets f simple matrices f rder N are given, tgether with all f their eigenvalues and right eigenvectrs, and simple rules fr generating

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

Figure 1a. A planar mechanism.

Figure 1a. A planar mechanism. ME 5 - Machine Design I Fall Semester 0 Name f Student Lab Sectin Number EXAM. OPEN BOOK AND CLOSED NOTES. Mnday, September rd, 0 Write n ne side nly f the paper prvided fr yur slutins. Where necessary,

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

Pre-Calculus Individual Test 2017 February Regional

Pre-Calculus Individual Test 2017 February Regional The abbreviatin NOTA means Nne f the Abve answers and shuld be chsen if chices A, B, C and D are nt crrect. N calculatr is allwed n this test. Arcfunctins (such as y = Arcsin( ) ) have traditinal restricted

More information

Functions. EXPLORE \g the Inverse of ao Exponential Function

Functions. EXPLORE \g the Inverse of ao Exponential Function ifeg Seepe3 Functins Essential questin: What are the characteristics f lgarithmic functins? Recall that if/(x) is a ne-t-ne functin, then the graphs f/(x) and its inverse,/'~\x}, are reflectins f each

More information

V. Balakrishnan and S. Boyd. (To Appear in Systems and Control Letters, 1992) Abstract

V. Balakrishnan and S. Boyd. (To Appear in Systems and Control Letters, 1992) Abstract On Cmputing the WrstCase Peak Gain f Linear Systems V Balakrishnan and S Byd (T Appear in Systems and Cntrl Letters, 99) Abstract Based n the bunds due t Dyle and Byd, we present simple upper and lwer

More information

Lecture 6: Phase Space and Damped Oscillations

Lecture 6: Phase Space and Damped Oscillations Lecture 6: Phase Space and Damped Oscillatins Oscillatins in Multiple Dimensins The preius discussin was fine fr scillatin in a single dimensin In general, thugh, we want t deal with the situatin where:

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

ECE 2100 Circuit Analysis

ECE 2100 Circuit Analysis ECE 2100 Circuit Analysis Lessn 25 Chapter 9 & App B: Passive circuit elements in the phasr representatin Daniel M. Litynski, Ph.D. http://hmepages.wmich.edu/~dlitynsk/ ECE 2100 Circuit Analysis Lessn

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

UGANDA ADVANCED CERTIFICATE OF EDUCATION INTERNAL MOCK 2016 PURE MATHEMATICS. 3 hours

UGANDA ADVANCED CERTIFICATE OF EDUCATION INTERNAL MOCK 2016 PURE MATHEMATICS. 3 hours P/ PURE MATHEMATICS PAPER JULY 0 HOURS UGANDA ADVANCED CERTIFICATE OF EDUCATION INTERNAL MOCK 0 PURE MATHEMATICS hurs INSTRUCTIONS TO CANDIDATES: Attempt ALL the EIGHT questins in sectin A and any FIVE

More information

Example 1. A robot has a mass of 60 kg. How much does that robot weigh sitting on the earth at sea level? Given: m. Find: Relationships: W

Example 1. A robot has a mass of 60 kg. How much does that robot weigh sitting on the earth at sea level? Given: m. Find: Relationships: W Eample 1 rbt has a mass f 60 kg. Hw much des that rbt weigh sitting n the earth at sea level? Given: m Rbt = 60 kg ind: Rbt Relatinships: Slutin: Rbt =589 N = mg, g = 9.81 m/s Rbt = mrbt g = 60 9. 81 =

More information

1 PreCalculus AP Unit G Rotational Trig (MCR) Name:

1 PreCalculus AP Unit G Rotational Trig (MCR) Name: 1 PreCalculus AP Unit G Rtatinal Trig (MCR) Name: Big idea In this unit yu will extend yur knwledge f SOH CAH TOA t wrk with btuse and reflex angles. This extensin will invlve the unit circle which will

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

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

L a) Calculate the maximum allowable midspan deflection (w o ) critical under which the beam will slide off its support.

L a) Calculate the maximum allowable midspan deflection (w o ) critical under which the beam will slide off its support. ecture 6 Mderately arge Deflectin Thery f Beams Prblem 6-1: Part A: The department f Highways and Public Wrks f the state f Califrnia is in the prcess f imprving the design f bridge verpasses t meet earthquake

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

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

Three charges, all with a charge of 10 C are situated as shown (each grid line is separated by 1 meter).

Three charges, all with a charge of 10 C are situated as shown (each grid line is separated by 1 meter). Three charges, all with a charge f 0 are situated as shwn (each grid line is separated by meter). ) What is the net wrk needed t assemble this charge distributin? a) +0.5 J b) +0.8 J c) 0 J d) -0.8 J e)

More information

Lead/Lag Compensator Frequency Domain Properties and Design Methods

Lead/Lag Compensator Frequency Domain Properties and Design Methods Lectures 6 and 7 Lead/Lag Cmpensatr Frequency Dmain Prperties and Design Methds Definitin Cnsider the cmpensatr (ie cntrller Fr, it is called a lag cmpensatr s K Fr s, it is called a lead cmpensatr Ntatin

More information

Faculty of Engineering and Department of Physics Engineering Physics 131 Midterm Examination February 27, 2006; 7:00 pm 8:30 pm

Faculty of Engineering and Department of Physics Engineering Physics 131 Midterm Examination February 27, 2006; 7:00 pm 8:30 pm Faculty f Engineering and Department f Physics Engineering Physics 131 Midterm Examinatin February 27, 2006; 7:00 pm 8:30 pm N ntes r textbks allwed. Frmula sheet is n the last page (may be remved). Calculatrs

More information

Pipetting 101 Developed by BSU CityLab

Pipetting 101 Developed by BSU CityLab Discver the Micrbes Within: The Wlbachia Prject Pipetting 101 Develped by BSU CityLab Clr Cmparisns Pipetting Exercise #1 STUDENT OBJECTIVES Students will be able t: Chse the crrect size micrpipette fr

More information

Trigonometric Ratios Unit 5 Tentative TEST date

Trigonometric Ratios Unit 5 Tentative TEST date 1 U n i t 5 11U Date: Name: Trignmetric Ratis Unit 5 Tentative TEST date Big idea/learning Gals In this unit yu will extend yur knwledge f SOH CAH TOA t wrk with btuse and reflex angles. This extensin

More information

ENGI 1313 Mechanics I

ENGI 1313 Mechanics I ENGI 1313 Mechanics I Lecture 11: 2D and 3D Particle Equilibrium Shawn Kenny, Ph.D., P.Eng. Assistant Prfessr aculty f Engineering and Applied Science Memrial University f Newfundland spkenny@engr.mun.ca

More information

Revised 2/07. Projectile Motion

Revised 2/07. Projectile Motion LPC Phsics Reised /07 Prjectile Mtin Prjectile Mtin Purpse: T measure the dependence f the range f a prjectile n initial elcit height and firing angle. Als, t erif predictins made the b equatins gerning

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

Accelerated Chemistry POGIL: Half-life

Accelerated Chemistry POGIL: Half-life Name: Date: Perid: Accelerated Chemistry POGIL: Half-life Why? Every radiistpe has a characteristic rate f decay measured by its half-life. Half-lives can be as shrt as a fractin f a secnd r as lng as

More information

PHYS 314 HOMEWORK #3

PHYS 314 HOMEWORK #3 PHYS 34 HOMEWORK #3 Due : 8 Feb. 07. A unifrm chain f mass M, lenth L and density λ (measured in k/m) hans s that its bttm link is just tuchin a scale. The chain is drpped frm rest nt the scale. What des

More information

Lecture 10, Principal Component Analysis

Lecture 10, Principal Component Analysis Principal Cmpnent Analysis Lecture 10, Principal Cmpnent Analysis Ha Helen Zhang Fall 2017 Ha Helen Zhang Lecture 10, Principal Cmpnent Analysis 1 / 16 Principal Cmpnent Analysis Lecture 10, Principal

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

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

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

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

Math Final Exam Instructor: Ken Schultz April 28, 2006

Math Final Exam Instructor: Ken Schultz April 28, 2006 Name Math 1650.300 Final Exam Instructr: Ken Schultz April 8, 006 Exam Guidelines D nt pen this exam until are instructed t begin. Fllw all instructins explicitly. Befre yu begin wrking, make sure yur

More information

Plan o o. I(t) Divide problem into sub-problems Modify schematic and coordinate system (if needed) Write general equations

Plan o o. I(t) Divide problem into sub-problems Modify schematic and coordinate system (if needed) Write general equations STAPLE Physics 201 Name Final Exam May 14, 2013 This is a clsed bk examinatin but during the exam yu may refer t a 5 x7 nte card with wrds f wisdm yu have written n it. There is extra scratch paper available.

More information

Flipping Physics Lecture Notes: Simple Harmonic Motion Introduction via a Horizontal Mass-Spring System

Flipping Physics Lecture Notes: Simple Harmonic Motion Introduction via a Horizontal Mass-Spring System Flipping Physics Lecture Ntes: Simple Harmnic Mtin Intrductin via a Hrizntal Mass-Spring System A Hrizntal Mass-Spring System is where a mass is attached t a spring, riented hrizntally, and then placed

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

Flipping Physics Lecture Notes: Simple Harmonic Motion Introduction via a Horizontal Mass-Spring System

Flipping Physics Lecture Notes: Simple Harmonic Motion Introduction via a Horizontal Mass-Spring System Flipping Physics Lecture Ntes: Simple Harmnic Mtin Intrductin via a Hrizntal Mass-Spring System A Hrizntal Mass-Spring System is where a mass is attached t a spring, riented hrizntally, and then placed

More information

WYSE Academic Challenge Regional Mathematics 2007 Solution Set

WYSE Academic Challenge Regional Mathematics 2007 Solution Set WYSE Academic Challenge Reginal Mathematics 007 Slutin Set 1. Crrect answer: C. ( ) ( ) 1 + y y = ( + ) + ( y y + 1 ) = + 1 1 ( ) ( 1 + y ) = s *1/ = 1. Crrect answer: A. The determinant is ( 1 ( 1) )

More information

M thematics. National 5 Practice Paper E. Paper 1. Duration 1 hour. Total marks 40

M thematics. National 5 Practice Paper E. Paper 1. Duration 1 hour. Total marks 40 N5 M thematics Natinal 5 Practice Paper E Paper 1 Duratin 1 hur Ttal marks 40 Yu may NOT use a calculatr Attempt all the questins. Use blue r black ink. Full credit will nly be given t slutins which cntain

More information

1. Introduction. Lab 4 - Geophysics 424, October 29, One-dimensional Interpretation of Magnetotelluric Data

1. Introduction. Lab 4 - Geophysics 424, October 29, One-dimensional Interpretation of Magnetotelluric Data Lab 4 - Gephysics 424, Octber 29, 2018 One-dimensinal Interpretatin f Magnettelluric Data Lab reprt is due by 5 p.m. Nvember 5, 2018 All late reprts require a valid reasn t be accepted. Include answers

More information

Higher Mathematics Booklet CONTENTS

Higher Mathematics Booklet CONTENTS Higher Mathematics Bklet CONTENTS Frmula List Item Pages The Straight Line Hmewrk The Straight Line Hmewrk Functins Hmewrk 3 Functins Hmewrk 4 Recurrence Relatins Hmewrk 5 Differentiatin Hmewrk 6 Differentiatin

More information

How can standard heats of formation be used to calculate the heat of a reaction?

How can standard heats of formation be used to calculate the heat of a reaction? Answer Key ALE 28. ess s Law and Standard Enthalpies Frmatin (Reerence: Chapter 6 - Silberberg 4 th editin) Imprtant!! Fr answers that invlve a calculatin yu must shw yur wrk neatly using dimensinal analysis

More information

Finding the Earth s magnetic field

Finding the Earth s magnetic field Labratry #6 Name: Phys 1402 - Dr. Cristian Bahrim Finding the Earth s magnetic field The thery accepted tday fr the rigin f the Earth s magnetic field is based n the mtin f the plasma (a miture f electrns

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

GEOMETRY Transformation Project

GEOMETRY Transformation Project GEOMETRY Transfrmatin Prject T bring tgether the unit f transfrmatins, yu will be making a Gemetry Transfrmatins Prject based n yur interest. This prject is meant t give yu an pprtunity t explre hw transfrmatins

More information

Work, Energy, and Power

Work, Energy, and Power rk, Energy, and Pwer Physics 1 There are many different TYPES f Energy. Energy is expressed in JOULES (J 419J 4.19 1 calrie Energy can be expressed mre specifically by using the term ORK( rk The Scalar

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

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

Introduction: A Generalized approach for computing the trajectories associated with the Newtonian N Body Problem

Introduction: A Generalized approach for computing the trajectories associated with the Newtonian N Body Problem A Generalized apprach fr cmputing the trajectries assciated with the Newtnian N Bdy Prblem AbuBar Mehmd, Syed Umer Abbas Shah and Ghulam Shabbir Faculty f Engineering Sciences, GIK Institute f Engineering

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

Exam Review Trigonometry

Exam Review Trigonometry Exam Review Trignmetry (Tyler, Chris, Hafsa, Nasim, Paniz,Tng) Similar Triangles Prving Similarity (AA, SSS, SAS) ~ Tyler Garfinkle 3 Types f Similarities: 1. Side Side Side Similarity (SSS) If three pairs

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