CMSC 828D: Fundamentals of Computer Vision Homework 10

Size: px
Start display at page:

Download "CMSC 828D: Fundamentals of Computer Vision Homework 10"

Transcription

1 CMSC 88D Fundamental f Cmuter Viin CMSC 88D: Fundamental f Cmuter Viin Hmewrk 0 Intrutr: Larry Davi Ramani Duraiwami Daniel DeMenthn and Yianni Alimn Slutin baed n hmewrk ubmitted by Haiying Liu. A here f Lambertian material f radiu R lie n the grund. a. Write the funtin z f ( x that rereent the half f the here that i viible frm the amera. Slutin: The gemetry f the here and amera i hwn in the [Figure ]. amera x un light y z D R x y z Figure : Gemetry f the here and the amera. In the rdinate riginated at the enter f the here the rdinate ( x y z ) f a int in the urfae atified z i.e. x y z R. Fr the uer half art f viible urfae we have negative f ( x y ) R x y. The relatinhi between thi rdinate the amera z rdinate i a tranlatin ( 00 D ). Thu the funtin z f ( x D R x y b. Write the 3 rdinate f a unit nrmal t the here urfae fr a int t the here een at a ixel ( x. Slutin: Uing the reult frm (a) we have

2 CMSC 88D Fundamental f Cmuter Viin The nrmal i ( ) f x f y and the unit nrmal i n ( x R R x x y x y y ( ) ( x y R x y ) R. Write a Matlab funtin that give the gray level due t Slutin: Nte the nrmal f light ure i ( in 45 in 45 ) ( ) n. The brightet int i lated at ( x y ) ( R R 45 in 45 ) ( R R) where R 8 ixel. Arding t the relatinhi between ixel brightne and ene brightne we have: I( x0 y0 ) k θ 55(white) θ 0 55 k 55 0 Then every ther int an be alulated by the knwn k : ( ) I x y n k n The Matlab funtin i lited in aix. ( x n ( x ( x n ( x if 0 therwie n( x n ( x 0. d. Write a Matlab funtin that generate the image f the here and a blak bakgrund. Slutin: The Matlab funtin i lited in aix. The image i hwn belw.

3 CMSC 88D Fundamental f Cmuter Viin 3 Figure : The image f the here with Lambertian urfae.. Nw a fae made f later with Lambertian refleting rertie a. Tranfrm the image int a gray level image. Slutin: The fae image i nverted int gray level image and realed t [0 ]. Nte that the fae i flied t nfrm the ame rientatin in Prblem that the euatin derived in la an be ued diretly. The enter f the r i the ti f the ne. b. Aume that the fae i ymmetrial with Slutin: Sine the fae i ymmetrial the hrizntal mnent f the nrmal n the urve C i zer i.e. 0. Arding t the relatinhi between nrmal and ixel brightne (refletane ma) we have: ( ) ( )( ) ( ) ( )( ) ( ) ( ) ( ) ( )( ) ( ) k I k I k k I k I ± i.e. fr eah gray level alng urve C there are generally tw ible unit nrmal ( ) 0 and ( ) 0. The Matlab funtin i lited in aix.. Find a latin alng urve C where the urfae ath fae the amera and

4 CMSC 88D Fundamental f Cmuter Viin 4 Slutin: In la we have derived that dz dx dy. In ur ae ine 0 alng the urve C dz dy. Fr a referene int at the ti f ne we an alulate the relative itin (dz ) f ther int alng the urve C. The Matlab funtin i lited in aix. The rfile f the fae i rearranged a reuired and hwn abve.

5 CMSC 88D Fundamental f Cmuter Viin 5 Aix hw0_.m funtin hw0_ Syntax: hw0_ Deritin: CMSC88D HW0_ Authr: Haiying Liu Date: Nv dbt if errr mg narghk(0 0 nargin); if (~iemty(mg)) errr(trat('error:' mg)); lear mg; I CmuteBrightne; figure; imhw(i []); xlabel('x'); ylabel('y'); rint -djeg hw0_; funtin I CmuteBrightne Syntax: I CmuteBrightne Deritin: Cmute the brightne f a lambertian here urfae. Authr: Haiying Liu Date: Nv dbt if errr mg narghk(0 0 nargin); if (~iemty(mg)) errr(trat('error:' mg)); lear mg;

6 CMSC 88D Fundamental f Cmuter Viin 6 Initializatin imsz 56; white 55; glbal R; R imsz / ; theta 45 * i / 80; n [(theta) * (theta) (theta) * in(theta) -in(theta)]; Cmute k x0 R * (theta) * (theta); y0 R * (theta) * in(theta); n_xy CmuteNrm(x0 y0); k white / (n_xy * n'); I ne(imsz) * (white ); Cmute brightne fr rw :imsz fr l :imsz y rw - R; x l - R; if x * x y * y < R * R n_xy CmuteNrm(x ; I(rw l) k * (n_xy * n'); if I(rw l) < 0 I(rw l) 0; Reale the brightne t mini~55; dark min(i(:)) I (I white ).* dark (I < white ).* I; funtin n_xy CmuteNrm(x Syntax: n_xy CmuteNrm(x Deritin: Cmute the nrm f the int n the here urfae. Authr: Haiying Liu Date: Nv dbt if errr mg narghk( nargin);

7 CMSC 88D Fundamental f Cmuter Viin 7 if (~iemty(mg)) errr(trat('error:' mg)); lear mg; glbal R; tem rt(r * R - x * x - y * ; x / tem; y / tem; n_xy [ -]; n_xy n_xy./ nrm(n_x; hw0_.m funtin hw0_ Syntax: hw0_ Deritin: CMSC88D HW0_ Authr: Haiying Liu Date: Nv dbt if errr mg narghk(0 0 nargin); if (~iemty(mg)) errr(trat('error:' mg)); lear mg; Part a. Read the image. fae imread('face.jeg'); fae rgbgray(fae); fae duble(fae); Smth the image by the wiener filter t redue the nie intrdued by JPEG mrein. fae wiener(fae [5 5]); Reale it t dark~white; white ; dark 0; maxi max(fae(:)); mini min(fae(:)); fae (fae - mini) * (white - dark) / (maxi - mini) dark;

8 CMSC 88D Fundamental f Cmuter Viin 8 Fli the fae that it ha the ame rientatin a Prblem that the euatin an be diretly alied. fae flilr(fae); fae fliud(fae); nrw ize(fae ); ncl ize(fae ); Shw the fae. figure; imhw(fae []); Part b. See funtin Cmute_n belw. Cmute_n(0.6) e.g. Part. Find the ne ti fae the amera. urvec_x ncl - 68 ; lane P netirw 0; Initializatin neti_n [0 0 0]; Initializatin idealneti_n [0 0 -]; netirwrange [67 77]; mindiff Inf; fr rw netirwrange():netirwrange() intenity fae(rw urvec_x); Cmute_(intenit; fr index : n [0 (index) -]; diff nrm(n / nrm(n) - idealneti_n); if diff < mindiff mindiff diff; netirw rw; neti_n n; Mark ut the ne ti. hld n; lt([0 ncl] [netirw netirw] 'w'); lt([urvec_x urvec_x] [0 nrw] 'w'); rint -djeg hw0_a; Cmute rfile. faerwrange [ 7]; z zer(nrw ); lat_n neti_n;

9 CMSC 88D Fundamental f Cmuter Viin 9 Frm ne ti t frehead. (nte the fae i uide dwn) fr rw netirw :faerwrange() intenity fae(rw urvec_x); Cmute_(intenit; n [0 () -]; n [0 () -]; unit_lat_n lat_n / nrm(lat_n); if nrm(n / nrm(n) - unit_lat_n) <... nrm(n / nrm(n) - unit_lat_n) dz (); lat_n n; ele dz (); lat_n n; z(rw) z(rw - ) dz; Frm ne ti t hin. (nte the fae i uide dwn) fr rw netirw - :-:faerwrange() intenity fae(rw urvec_x); Cmute_(intenit; n [0 () -]; n [0 () -]; unit_lat_n lat_n / nrm(lat_n); if nrm(n / nrm(n) - unit_lat_n) <... nrm(n / nrm(n) - unit_lat_n) dz -(); lat_n n; ele dz -(); lat_n n; z(rw) z(rw ) dz; Rearrange the rfile that the frehead i at rigin f (y z) rrdinate ytem. rfile z(faerwrange():-:faerwrange()); rfile rfile - rfile(); take frehead a rigin f (y z) figure; npint ize(rfile ); lt([:npint] rfile); axi ij; axi eual; xlabel('y'); ylabel('z');

10 CMSC 88D Fundamental f Cmuter Viin 0 rint -djeg hw0_b; funtin Cmute_(I) Syntax: Cmute_(I) Deritin: Cmute the tw ' ardint t the intenity. Authr: Haiying Liu Date: Nv dbt if errr mg narghk( nargin); if (~iemty(mg)) errr(trat('error:' mg)); lear mg; glbal white; Cmute unit nrmal fr light ure n [ r]. theta 45 * i / 80; (theta) * (theta); (theta) * in(theta); r -in(theta); Cmute. The tw nrm will be in the frm f [0 -]. () * - I * I; () - * * r; (3) r * r - I * I; rt(); funtin n_unit Cmute_n(I) Syntax: n_unit Cmute_n(I) Deritin: Cmute the unit nrmal frm the intenity. Authr: Haiying Liu Date: Nv dbt if errr

11 CMSC 88D Fundamental f Cmuter Viin mg narghk( nargin); if (~iemty(mg)) errr(trat('error:' mg)); lear mg; glbal white; Cmute unit nrmal fr light ure n [ r]. Cmute_(I); nrw ize( ); n [zer(nrw ) -ne(nrw )]; fr index :nrw n_unit(index :) n(index :) / nrm(n(index :));

ECE-320: Linear Control Systems Homework 1. 1) For the following transfer functions, determine both the impulse response and the unit step response.

ECE-320: Linear Control Systems Homework 1. 1) For the following transfer functions, determine both the impulse response and the unit step response. Due: Mnday Marh 4, 6 at the beginning f la ECE-: Linear Cntrl Sytem Hmewrk ) Fr the fllwing tranfer funtin, determine bth the imule rene and the unit te rene. Srambled Anwer: H ( ) H ( ) ( )( ) ( )( )

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

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

In Flow Performance Relationship - IPR Curves

In Flow Performance Relationship - IPR Curves In Flw Perfrmance Relatinshi - IPR Curves The Inflw Perfrmance Relatinshi (IPR) fr a well is the relatinshi between the flw rate f the well and the flwing ressure f the well. In single hase flw this is

More information

Digital Filter Specifications. Digital Filter Specifications. Digital Filter Design. Digital Filter Specifications. Digital Filter Specifications

Digital Filter Specifications. Digital Filter Specifications. Digital Filter Design. Digital Filter Specifications. Digital Filter Specifications Digital Filter Deign Objetive - Determinatin f a realiable tranfer funtin G() arximating a given frequeny rene eifiatin i an imrtant te in the develment f a digital filter If an IIR filter i deired, G()

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

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

Chapter 2 GAUSS LAW Recommended Problems:

Chapter 2 GAUSS LAW Recommended Problems: Chapter GAUSS LAW Recmmended Prblems: 1,4,5,6,7,9,11,13,15,18,19,1,7,9,31,35,37,39,41,43,45,47,49,51,55,57,61,6,69. LCTRIC FLUX lectric flux is a measure f the number f electric filed lines penetrating

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

, 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

Equilibrium of Stress

Equilibrium of Stress Equilibrium f Stress Cnsider tw perpendicular planes passing thrugh a pint p. The stress cmpnents acting n these planes are as shwn in ig. 3.4.1a. These stresses are usuall shwn tgether acting n a small

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

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

Homework for Diffraction-MSE 603: Solutions May 2002

Homework for Diffraction-MSE 603: Solutions May 2002 Hmewrk fr Diffratin-MSE 603: Slutins May 00 1. An x-ray beam f 1.5 Å impinges n a Ge single rystal sample with an inient angle θ lse t the ritial angle θ f the Ge surfae. Taking int aunt the absrptin,

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

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

CHEM 2400/2480. Lecture 19

CHEM 2400/2480. Lecture 19 Lecture 19 Metal In Indicatr - a cmpund whse clur changes when it binds t a metal in - t be useful, it must bind the metal less strngly than EDTA e.g. titratin f Mg 2+ with EDTA using erichrme black T

More information

Phys101 First Major-131 Zero Version Coordinator: Dr. A. A. Naqvi Wednesday, September 25, 2013 Page: 1

Phys101 First Major-131 Zero Version Coordinator: Dr. A. A. Naqvi Wednesday, September 25, 2013 Page: 1 Phys11 First Majr-11 Zer Versin Crdinatr: Dr. A. A. Naqvi Wednesday, September 5, 1 Page: 1 Q1. Cnsider tw unifrm slid spheres A and B made f the same material and having radii r A and r B, respectively.

More information

Chapter 8. Root Locus Techniques

Chapter 8. Root Locus Techniques Chapter 8 Rt Lcu Technique Intrductin Sytem perfrmance and tability dt determined dby cled-lp l ple Typical cled-lp feedback cntrl ytem G Open-lp TF KG H Zer -, - Ple 0, -, -4 K 4 Lcatin f ple eaily fund

More information

On the Origin of the Special Relativity Anomalies

On the Origin of the Special Relativity Anomalies On the Origin f the Speial Relatiity Anmalies Radwan M. Kassir February 2015 radwan.elkassir@dargrup.m ABSTRACT In this paper, the nlusie rigin f the Speial Relatiity (SR) mathematial nflits identified

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

Homework-6 Due:

Homework-6 Due: Applied Optics H-464/564 ECE 594 rtland State niversity A. La Rsa Hmewrk-6 Due: 05-26-2016 1. Quarter wave plates and half wave plates The figures belw shw a calcite crystal plate lcated at the crdinate

More information

Chemical Engineering 160/260 Polymer Science and Engineering. Lecture 15: Molecular Aspects of Polymer Rheology February 21, 2001

Chemical Engineering 160/260 Polymer Science and Engineering. Lecture 15: Molecular Aspects of Polymer Rheology February 21, 2001 Chemial Engineering 160/260 Plymer Siene and Engineering Leture 15: Mleular Aspets f Plymer Rhelgy February 21, 2001 Objetives! T intrdue the nept f saling analysis t aunt fr the nentratin and mleular

More information

Solution to HW14 Fall-2002

Solution to HW14 Fall-2002 Slutin t HW14 Fall-2002 CJ5 10.CQ.003. REASONING AND SOLUTION Figures 10.11 and 10.14 shw the velcity and the acceleratin, respectively, the shadw a ball that underges unirm circular mtin. The shadw underges

More information

Higher. Specimen NAB Assessment

Higher. Specimen NAB Assessment hsn.uk.net Higher Mathematics UNIT Specimen NAB Assessment HSN50 This dcument was prduced speciall fr the HSN.uk.net website, and we require that an cpies r derivative wrks attribute the wrk t Higher Still

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

The University of Iowa Dept. of Civil & Environmental Engineering 53:030 SOIL MECHANICS Midterm Exam #2, Fall Semester 2005

The University of Iowa Dept. of Civil & Environmental Engineering 53:030 SOIL MECHANICS Midterm Exam #2, Fall Semester 2005 5:00 Sil Mehanis Midterm Exam # Fall 005 Semester The Uniersity f Iwa Dept. f Ciil & Enirnmental Engineering 5:00 SOIL MECHANICS Midterm Exam #, Fall Semester 005 Questin #: (0 pints) A sand with a minimum

More information

and the Doppler frequency rate f R , can be related to the coefficients of this polynomial. The relationships are:

and the Doppler frequency rate f R , can be related to the coefficients of this polynomial. The relationships are: Algrithm fr Estimating R and R - (David Sandwell, SIO, August 4, 2006) Azimith cmpressin invlves the alignment f successive eches t be fcused n a pint target Let s be the slw time alng the satellite track

More information

Name Student ID. A student uses a voltmeter to measure the electric potential difference across the three boxes.

Name Student ID. A student uses a voltmeter to measure the electric potential difference across the three boxes. Name Student ID II. [25 pt] Thi quetin cnit f tw unrelated part. Part 1. In the circuit belw, bulb 1-5 are identical, and the batterie are identical and ideal. Bxe,, and cntain unknwn arrangement f linear

More information

Trigonometric Functions. Concept Category 3

Trigonometric Functions. Concept Category 3 Trignmetric Functins Cncept Categry 3 Gals 6 basic trig functins (gemetry) Special triangles Inverse trig functins (t find the angles) Unit Circle: Trig identities a b c 2 2 2 The Six Basic Trig functins

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

Chapter 9 Compressible Flow 667

Chapter 9 Compressible Flow 667 Chapter 9 Cmpreible Flw 667 9.57 Air flw frm a tank thrugh a nzzle int the tandard atmphere, a in Fig. P9.57. A nrmal hck tand in the exit f the nzzle, a hwn. Etimate (a) the tank preure; and (b) the ma

More information

ON-LINE PHYSICS 122 EXAM #2 (all online sections)

ON-LINE PHYSICS 122 EXAM #2 (all online sections) ON-LINE PHYSIS EXAM # (all nline setins) ) Bubble in the ID number setin f the santrn. ) This Exam is hurs lng - 34 multiple-hie questins. hse the ne BEST answer fr eah questin. Yu are nt penalized fr

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

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

GENERAL FORMULAS FOR FLAT-TOPPED WAVEFORMS. J.e. Sprott. Plasma Studies. University of Wisconsin

GENERAL FORMULAS FOR FLAT-TOPPED WAVEFORMS. J.e. Sprott. Plasma Studies. University of Wisconsin GENERAL FORMULAS FOR FLAT-TOPPED WAVEFORMS J.e. Sprtt PLP 924 September 1984 Plasma Studies University f Wiscnsin These PLP Reprts are infrmal and preliminary and as such may cntain errrs nt yet eliminated.

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

14. Which shows the direction of the centripetal force acting on a mass spun in a vertical circle?

14. Which shows the direction of the centripetal force acting on a mass spun in a vertical circle? Physics 3204 Public Exam Questins Unit 1: Circular Mtin NAME: August 2009---------------------------------------------------------------------------------------------------------------------- 12. Which

More information

Conservation of Momentum

Conservation of Momentum Cnervatin f Mmentum PES 1150 Prelab Quetin Name: Lab Statin: 003 ** Diclaimer: Thi re-lab i nt t be cied, in whle r in art, unle a rer reference i made a t the urce. (It i trngly recmmended that yu ue

More information

Fundamental Concepts in Structural Plasticity

Fundamental Concepts in Structural Plasticity Lecture Fundamental Cncepts in Structural Plasticit Prblem -: Stress ield cnditin Cnsider the plane stress ield cnditin in the principal crdinate sstem, a) Calculate the maximum difference between the

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

Introduction to Smith Charts

Introduction to Smith Charts Intrductin t Smith Charts Dr. Russell P. Jedlicka Klipsch Schl f Electrical and Cmputer Engineering New Mexic State University as Cruces, NM 88003 September 2002 EE521 ecture 3 08/22/02 Smith Chart Summary

More information

(Communicated at the meeting of January )

(Communicated at the meeting of January ) Physics. - Establishment f an Abslute Scale fr the herm-electric Frce. By G. BOR ELlUS. W. H. KEESOM. C. H. JOHANSSON and J. O. LND E. Supplement N0. 69b t the Cmmunicatins frm the Physical Labratry at

More information

ELE Final Exam - Dec. 2018

ELE Final Exam - Dec. 2018 ELE 509 Final Exam Dec 2018 1 Cnsider tw Gaussian randm sequences X[n] and Y[n] Assume that they are independent f each ther with means and autcvariances μ ' 3 μ * 4 C ' [m] 1 2 1 3 and C * [m] 3 1 10

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

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

https://goo.gl/eaqvfo SUMMER REV: Half-Life DUE DATE: JULY 2 nd

https://goo.gl/eaqvfo SUMMER REV: Half-Life DUE DATE: JULY 2 nd NAME: DUE DATE: JULY 2 nd AP Chemistry SUMMER REV: 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

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

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

Lecture 16 Thermodynamics II

Lecture 16 Thermodynamics II Lecture 16 Thermdynamics II Calrimetry Hess s Law Enthalpy r Frmatin Cpyright 2013, 2011, 2009, 2008 AP Chem Slutins. All rights reserved. Fur Methds fr Finding H 1) Calculate it using average bnd enthalpies

More information

CHAPTER 17 COMPOSITES

CHAPTER 17 COMPOSITES CHAPTER 17 COMPOSITES EXERCISE 64, Page 373 1. Calculate the stiffness matrix (Q) and derive the (A), (B) and (D) matrices fr a sheet f aluminium 1 mm thick. The fllwing material prperties can be assumed:

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

DINGWALL ACADEMY NATIONAL QUALIFICATIONS. Mathematics Higher Prelim Examination 2009/2010 Paper 1 Assessing Units 1 & 2. Time allowed - 1 hour 30

DINGWALL ACADEMY NATIONAL QUALIFICATIONS. Mathematics Higher Prelim Examination 2009/2010 Paper 1 Assessing Units 1 & 2. Time allowed - 1 hour 30 INGWLL EMY Mathematics Higher Prelim Eaminatin 009/00 Paper ssessing Units & NTIONL QULIFITIONS Time allwed - hur 0 minutes Read carefull alculatrs ma NOT be used in this paper. Sectin - Questins - 0 (0

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

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

4. Find a, b, and c. 6. Find x and y.

4. Find a, b, and c. 6. Find x and y. Grace Brethren Christian Schl Entering Trig/Analysis: Page f Summer Packet fr Students entering Trig/Analysis Review prblems frm Gemetry: Shw yur wrk!. Twice the cmplement f angle A is 35 less than the

More information

Information for Physics 1201 Midterm I Wednesday, February 20

Information for Physics 1201 Midterm I Wednesday, February 20 My lecture slides are psted at http://www.physics.hi-state.edu/~humanic/ Infrmatin fr Physics 1201 Midterm I Wednesday, February 20 1) Frmat: 10 multiple chice questins (each wrth 5 pints) and tw shw-wrk

More information

1/2 and e0 e s ' 1+ imm w 4 M s 3 πρ0 r 3 m. n 0 ktr. .Also,since n 0 ktr 1,wehave. 4 3 M sπρ 0 r 3. ktr. 3 M sπρ 0

1/2 and e0 e s ' 1+ imm w 4 M s 3 πρ0 r 3 m. n 0 ktr. .Also,since n 0 ktr 1,wehave. 4 3 M sπρ 0 r 3. ktr. 3 M sπρ 0 Chapter 6 6.1 Shw that fr a very weak slutin drplet (m 4 3 πr3 ρ 0 M s ), (6.8) can be written as e 0 ' 1+ a r b r 3 where a σ 0 /n 0 kt and b imm w / 4 3 M sπρ 0. What is yur interpretatin f thecnd and

More information

Physics 321 Solutions for Final Exam

Physics 321 Solutions for Final Exam Page f 8 Physics 3 Slutins fr inal Exa ) A sall blb f clay with ass is drpped fr a height h abve a thin rd f length L and ass M which can pivt frictinlessly abut its center. The initial situatin is shwn

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

Surface and Contact Stress

Surface and Contact Stress Surface and Cntact Stress The cncept f the frce is fundamental t mechanics and many imprtant prblems can be cast in terms f frces nly, fr example the prblems cnsidered in Chapter. Hwever, mre sphisticated

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

14. Which shows the direction of the centripetal force acting on a mass spun in a vertical circle?

14. Which shows the direction of the centripetal force acting on a mass spun in a vertical circle? Physics 0 Public Exam Questins Unit 1: Circular Mtin NAME: August 009---------------------------------------------------------------------------------------------------------------------- 1. Which describes

More information

SCHMIDT THEORY FOR STIRLING ENGINES

SCHMIDT THEORY FOR STIRLING ENGINES SHMIDT THOY FO STILING NGINS KOIHI HIATA Musashin-jjutaku 6-10, Gakuen -6-1, Musashimurayama, Tky 08, Japan Phne & Fax: +81-45-67-0086 e-mail: khirata@gem.bekkame.ne.jp url: http://www.bekkame.ne.jp/~khirata

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

NONISOTHERMAL OPERATION OF IDEAL REACTORS Plug Flow Reactor. F j. T mo Assumptions:

NONISOTHERMAL OPERATION OF IDEAL REACTORS Plug Flow Reactor. F j. T mo Assumptions: NONISOTHERMAL OPERATION OF IDEAL REACTORS Plug Flw Reactr T T T T F j, Q F j T m,q m T m T m T m Aumptin: 1. Hmgeneu Sytem 2. Single Reactin 3. Steady State Tw type f prblem: 1. Given deired prductin rate,

More information

Ch. 3: Inverse Kinematics Ch. 4: Velocity Kinematics. The Interventional Centre

Ch. 3: Inverse Kinematics Ch. 4: Velocity Kinematics. The Interventional Centre Ch. : Invee Kinemati Ch. : Velity Kinemati The Inteventinal Cente eap: kinemati eupling Apppiate f ytem that have an am a wit Suh that the wit jint ae ae aligne at a pint F uh ytem, we an plit the invee

More information

CHAPTER 6 -- ENERGY. Approach #2: Using the component of mg along the line of d:

CHAPTER 6 -- ENERGY. Approach #2: Using the component of mg along the line of d: Slutins--Ch. 6 (Energy) CHAPTER 6 -- ENERGY 6.) The f.b.d. shwn t the right has been prvided t identify all the frces acting n the bdy as it mves up the incline. a.) T determine the wrk dne by gravity

More information

Physics 212. Lecture 12. Today's Concept: Magnetic Force on moving charges. Physics 212 Lecture 12, Slide 1

Physics 212. Lecture 12. Today's Concept: Magnetic Force on moving charges. Physics 212 Lecture 12, Slide 1 Physics 1 Lecture 1 Tday's Cncept: Magnetic Frce n mving charges F qv Physics 1 Lecture 1, Slide 1 Music Wh is the Artist? A) The Meters ) The Neville rthers C) Trmbne Shrty D) Michael Franti E) Radiatrs

More information

205MPa and a modulus of elasticity E 207 GPa. The critical load 75kN. Gravity is vertically downward and the weight of link 3 is W3

205MPa and a modulus of elasticity E 207 GPa. The critical load 75kN. Gravity is vertically downward and the weight of link 3 is W3 ME 5 - Machine Design I Fall Semester 06 Name f Student: Lab Sectin Number: Final Exam. Open bk clsed ntes. Friday, December 6th, 06 ur name lab sectin number must be included in the spaces prvided at

More information

DEDICATED TO THE MEMORY OF R.J. WEINSHENK 1. INTRODUCTION

DEDICATED TO THE MEMORY OF R.J. WEINSHENK 1. INTRODUCTION CONVOLUTION TRIANGLES FOR GENERALIZED FIBONACCI NUMBERS VERNER E. HOGGATT, JR. San Jse State Cllege, San Jse, Califrnia DEDICATED TO THE MEMORY OF R.J. WEINSHENK. INTRODUCTION The sequence f integers Fj

More information

CHEM 103 Calorimetry and Hess s Law

CHEM 103 Calorimetry and Hess s Law CHEM 103 Calrimetry and Hess s Law Lecture Ntes March 23, 2006 Prf. Sevian Annuncements Exam #2 is next Thursday, March 30 Study guide, practice exam, and practice exam answer key are already psted n the

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

SAFE HANDS & IIT-ian's PACE EDT-04 (JEE) Solutions

SAFE HANDS & IIT-ian's PACE EDT-04 (JEE) Solutions ED- (JEE) Slutins Answer : Optin () ass f the remved part will be / I Answer : Optin () r L m (u csθ) (H) Answer : Optin () P 5 rad/s ms - because f translatin ωr ms - because f rtatin Cnsider a thin shell

More information

INSTRUCTIONAL PLAN Day 2

INSTRUCTIONAL PLAN Day 2 INSTRUCTIONAL PLAN Day 2 Subject: Trignmetry Tpic: Other Trignmetric Ratis, Relatinships between Trignmetric Ratis, and Inverses Target Learners: Cllege Students Objectives: At the end f the lessn, students

More information

PHYSICS 151 Notes for Online Lecture #23

PHYSICS 151 Notes for Online Lecture #23 PHYSICS 5 Ntes fr Online Lecture #3 Peridicity Peridic eans that sething repeats itself. r exaple, eery twenty-fur hurs, the Earth aes a cplete rtatin. Heartbeats are an exaple f peridic behair. If yu

More information

Concept Category 2. Trigonometry & The Unit Circle

Concept Category 2. Trigonometry & The Unit Circle Cncept Categry 2 Trignmetry & The Unit Circle Skill Checklist Use special right triangles t express values f fr the six trig functins Evaluate sine csine and tangent using the unit circle Slve tw-step

More information

has five more sides than regular polygon P has half the number of sides as regular polygon P, when both are in centimeters.

has five more sides than regular polygon P has half the number of sides as regular polygon P, when both are in centimeters. egular plygn has five mre sides than regular plygn egular plygn has half the number f sides as regular plygn The perimeter f plygn is twenty mre than the perimeter f regular plygn, when bth are in centimeters

More information

CHAPTER 6 WORK AND ENERGY

CHAPTER 6 WORK AND ENERGY CHAPTER 6 WORK AND ENERGY CONCEPTUAL QUESTIONS 16. REASONING AND SOLUTION A trapeze artist, starting rm rest, swings dwnward n the bar, lets g at the bttm the swing, and alls reely t the net. An assistant,

More information

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

M thematics. National 5 Practice Paper B. Paper 1. Duration 1 hour. Total marks 40 M thematics Natinal 5 Practice Paper B 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

Chapter 5: Force and Motion I-a

Chapter 5: Force and Motion I-a Chapter 5: rce and Mtin I-a rce is the interactin between bjects is a vectr causes acceleratin Net frce: vectr sum f all the frces n an bject. v v N v v v v v ttal net = i = + + 3 + 4 i= Envirnment respnse

More information

Longitudinal Dispersion

Longitudinal Dispersion Updated: 3 Otber 017 Print verin Leture #10 (River & Stream, nt) Chapra, L14 (nt.) David A. Rekhw CEE 577 #10 1 Lngitudinal Diperin Frm Fiher et al., 1979 m/ m -1 E U B 0 011 HU. * Width (m) Where the

More information

Review for the final exam (Math 127)

Review for the final exam (Math 127) . Evaluate 3 tan tan 4 3 (b) (c) cs cs 4 7 3 sec cs 4 4 (d) cs tan 3 Review fr the final eam (Math 7). If sec, and 7 36, find cs, sin, tan, ct, csc tan (b) If, evaluate cs, sin 7 36 (c) Write the csc in

More information

Chapter 6. Dielectrics and Capacitance

Chapter 6. Dielectrics and Capacitance Chapter 6. Dielectrics and Capacitance Hayt; //009; 6- Dielectrics are insulating materials with n free charges. All charges are bund at mlecules by Culmb frce. An applied electric field displaces charges

More information

Lecture 13: Electrochemical Equilibria

Lecture 13: Electrochemical Equilibria 3.012 Fundamentals f Materials Science Fall 2005 Lecture 13: 10.21.05 Electrchemical Equilibria Tday: LAST TIME...2 An example calculatin...3 THE ELECTROCHEMICAL POTENTIAL...4 Electrstatic energy cntributins

More information

Content 1. Introduction 2. The Field s Configuration 3. The Lorentz Force 4. The Ampere Force 5. Discussion References

Content 1. Introduction 2. The Field s Configuration 3. The Lorentz Force 4. The Ampere Force 5. Discussion References Khmelnik. I. Lrentz Fre, Ampere Fre and Mmentum Cnservatin Law Quantitative. Analysis and Crllaries. Abstrat It is knwn that Lrentz Fre and Ampere fre ntradits the Third Newtn Law, but it des nt ntradit

More information

On small defining sets for some SBIBD(4t - 1, 2t - 1, t - 1)

On small defining sets for some SBIBD(4t - 1, 2t - 1, t - 1) University f Wllngng Research Online Faculty f Infrmatics - Papers (Archive) Faculty f Engineering and Infrmatin Sciences 992 On small defining sets fr sme SBIBD(4t -, 2t -, t - ) Jennifer Seberry University

More information

Potential and Capacitance

Potential and Capacitance Ptential and apacitance Electric Ptential Electric ptential (V) = Electric ptential energy (U e ) per unit charge () Define: ptential energy U e = 0 at infinity (r = ) lim U 0 r e Nte the similarity f

More information

ASTRODYNAMICS. o o o. Early Space Exploration. Kepler's Laws. Nicolaus Copernicus ( ) Placed Sun at center of solar system

ASTRODYNAMICS. o o o. Early Space Exploration. Kepler's Laws. Nicolaus Copernicus ( ) Placed Sun at center of solar system ASTRODYNAMICS Early Space Explratin Niclaus Cpernicus (1473-1543) Placed Sun at center f slar system Shwed Earth rtates n its axis nce a day Thught planets rbit in unifrm circles (wrng!) Jhannes Kepler

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

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

Corrections for the textbook answers: Sec 6.1 #8h)covert angle to a positive by adding period #9b) # rad/sec

Corrections for the textbook answers: Sec 6.1 #8h)covert angle to a positive by adding period #9b) # rad/sec U n i t 6 AdvF Date: Name: Trignmetric Functins Unit 6 Tentative TEST date Big idea/learning Gals In this unit yu will study trignmetric functins frm grade, hwever everything will be dne in radian measure.

More information

Phys101 Final Code: 1 Term: 132 Wednesday, May 21, 2014 Page: 1

Phys101 Final Code: 1 Term: 132 Wednesday, May 21, 2014 Page: 1 Phys101 Final Cde: 1 Term: 1 Wednesday, May 1, 014 Page: 1 Q1. A car accelerates at.0 m/s alng a straight rad. It passes tw marks that are 0 m apart at times t = 4.0 s and t = 5.0 s. Find the car s velcity

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

Q1. A string of length L is fixed at both ends. Which one of the following is NOT a possible wavelength for standing waves on this string?

Q1. A string of length L is fixed at both ends. Which one of the following is NOT a possible wavelength for standing waves on this string? Term: 111 Thursday, January 05, 2012 Page: 1 Q1. A string f length L is fixed at bth ends. Which ne f the fllwing is NOT a pssible wavelength fr standing waves n this string? Q2. λ n = 2L n = A) 4L B)

More information

39th International Physics Olympiad - Hanoi - Vietnam Theoretical Problem No. 1 /Solution. Solution

39th International Physics Olympiad - Hanoi - Vietnam Theoretical Problem No. 1 /Solution. Solution 39th Internatinal Physics Olympiad - Hani - Vietnam - 8 Theretical Prblem N. /Slutin Slutin. The structure f the mrtar.. Calculating the distance TG The vlume f water in the bucket is V = = 3 3 3 cm m.

More information

Session #22: Homework Solutions

Session #22: Homework Solutions Sessin #22: Hmewrk Slutins Prblem #1 (a) In the cntext f amrphus inrganic cmpunds, name tw netwrk frmers, tw netwrk mdifiers, and ne intermediate. (b) Sketch the variatin f mlar vlume with temperature

More information

Lim f (x) e. Find the largest possible domain and its discontinuity points. Why is it discontinuous at those points (if any)?

Lim f (x) e. Find the largest possible domain and its discontinuity points. Why is it discontinuous at those points (if any)? THESE ARE SAMPLE QUESTIONS FOR EACH OF THE STUDENT LEARNING OUTCOMES (SLO) SET FOR THIS COURSE. SLO 1: Understand and use the cncept f the limit f a functin i. Use prperties f limits and ther techniques,

More information