Homework Solutions Unit 4: Chapter 22 CMPSC 465

Size: px
Start display at page:

Download "Homework Solutions Unit 4: Chapter 22 CMPSC 465"

Transcription

1 Homeok Solution Unit : Chapte CMPSC 65 Diclaime: Thi i a daft of olution that ha been pepaed b the TA and the intucto make no guaantee that olution peented hee contain the leel of detail that ould be expected on an exam. An eo o explanation ou find unclea hould be epoted to eithe of the TA fo coection fit. Execie.- Gien an adjacenc-lit epeentation of a diected gaph, ho long doe it take to compute the out-degee of ee etex? Ho long doe it take to compute the in-degee? Gien an adjacenc-lit epeentation Adj of a diected gaph, the out-degee of a etex u i equal to the length of Adj[u], and the um of the length of all the adjacenc lit in Adj i E. Thu the time to compute the out-degee of ee etex i Θ ( V + E ). The in-degee of a etex u i equal to the numbe of time it appea in all the lit in Adj. If e each all the lit fo each etex, the time to compute the in-degee of ee etex i Θ ( V E ). (Altenatiel, e can allocate an aa T of ize V and initialize it entie to zeo. Then e onl need to can the lit in Adj once, incementing T [u] hen e ee u in the lit. The alue in T ill be the in-degee of ee etex. Thi can be done in Θ ( V + E ) time ith Θ ( V ) additional toage.) Page of 8 PSU CMPSC 65 Sping

2 Execie.- Gie an adjacenc-lit epeentation fo a complete bina tee on 7 etice. Gie an equialent adjacenc-matix epeentation. Aume that etice ae numbeed fom to 7 a in a bina heap. A complete bina tee look like: An adjacenc-lit epeentation of thi tee i hon belo: An equialent adjacenc-matix epeentation of thi tee i hon belo: Page of 8 PSU CMPSC 65 Sping

3 Execie.- Sho the dit and ped alue that eult fom unning beadth-fit each on the diected gaph belo, uing etex a the ouce. 5 6.ped 5 6 (a).ped 5.ped (d).ped :5 6.ped 5.ped (b).ped 6.ped 5 6.ped.ped : 5.ped.ped :5 (e) 6.ped.ped 5.ped.ped :5 6.ped 6.ped.ped : 5.ped.ped :5 6.ped (c) (f) The pocedue of the beadth-fit each i hon aboe. Fom the eult, e can ee that: Node Ped dit NIL NIL Page of 8 PSU CMPSC 65 Sping

4 Execie.- Sho the dit and ped alue that eult fom unning beadth-fit each on the undiected gaph belo, uing etex u a the ouce. t u x (a) t (f).ped : x u.ped (b) (g).ped :.ped : t x.ped (c) (h).ped :.ped :.ped x 5.ped.ped : 5 (d) (i).ped :.ped :.ped 5.ped.ped : (e).ped Page of 8 PSU CMPSC 65 Sping

5 The pocedue of the beadth-fit each i hon aboe. Fom the eult, e can ee that: Node Ped dit u NIL t u x u u t 5 Execie.- Make a -b- chat ith o and column label WHITE, GRAY, and BLACK. In each cell (i, j), indicate hethe, at an point duing a depth-fit each of diected gaph, thee can be an edge fom a etex of colo i to a etex of colo j. Fo each poible edge, indicate hat edge tpe it can be. Make a econd uch chat fo depth-fit each of an undiected gaph. Diected gaph: WHITE GRAY BLACK WHITE tee, back, foad, and co back and co co GRAY tee and foad tee, foad, back tee, foad, and co BLACK back and co tee, foad, back and co Undiected gaph: WHITE GRAY BLACK WHITE tee and back tee and back GRAY tee and back tee and back tee and back BLACK tee and back tee and back Execie.- Sho ho depth-fit each ok on the gaph of Figue.6. Aume that the fo loop of line 5 7 of the DFS pocedue conide the etice in alphabetical ode, and aume that each adjacenc lit i odeed alphabeticall. Sho the dicoe and finihing time fo each etex, and ho the claification of each edge. Page 5 of 8 PSU CMPSC 65 Sping

6 The dicoe and finihing time fo each etex ae hon in the figue belo:,6 7,,7 8,5 8,9,6,5 9,,, Tee edge: (q, ), (, ), (, ), (q, t), (t, x), (x, z), (t, ), (, u) Back edge: (, ), (z, x), (, q) Foad edge: (q, ) Co edge: (, ), (u, ) Execie.- Sho the paenthei tuctue of the depth-fit each of Figue.. Figue. (p) Execie.-7 Reite the pocedue DFS, uing a tack to eliminate ecuion. Aume that the tack ha folloing opeation: PUSH(S, ) puhe into the tack; POP(S) etun the top of the tack and emoe it; TOP(S) etun the top of the tack ithout emoing it. Page 6 of 8 PSU CMPSC 65 Sping

7 Denote an empt tack b EMPTY. Then the peudocode of thi algoithm become a follo: DFS_STACK (G, ) fo each etex u V(G) {} { u.colo = WHITE = NIL } time = S = EMPTY time = time +.t d = time.colo = GRAY PUSH(S, ) hile S!= EMPTY { t = TOP(S) if V(G).Adj[t].t..colo == WHITE // adjacenc lit han t been full examined {.ped = t time = time +.t d = time.colo = GRAY PUSH(S, ) } ele // adjacenc lit ha been full examined } { } t = POP(S) time = time +.t f = time.colo = BLACK Execie.- Sho the odeing of etice poduced b TOPOLGICAL-SORT hen it i un on the dag of Figue.8, unde the aumption of Execie.-. Accoding to the aumption of Execie.-, the fo loop of line 5 7 of the DFS pocedue Page 7 of 8 PSU CMPSC 65 Sping

8 conide the etice in alphabetical ode, and that each adjacenc lit i odeed alphabeticall. DFS on Figue.8: / /6 /5 6/9 /5 7/8 / / 7/8 /7 / 5/6 9/8 / Odeing of etice: Execie.- Gie a linea-time algoithm that take a input a diected acclic gaph G = (V, E) and to etice and t, and etun the numbe of imple path fom to t in G. Fo example, the diected acclic gaph of Figue.8 contain exactl fou imple path fom etex p to etex : po, po, po, and p. (You algoithm need onl to count the imple path, not lit them.) Add a field to the etex epeentation to hold an intege count. Initiall, et etex t count to and othe etice count to. Stat unning DFS ith a the tat etex. When t i dicoeed, it hould be immediatel maked a finihed (BLACK), ithout futhe poceing tating fom it. Subequentl, each time DFS finihe a etex, et count to the um of the count of all etice adjacent to. When DFS finihe etex, top and etun the count computed fo. Page 8 of 8 PSU CMPSC 65 Sping

Chapter 30: Magnetic Fields Due to Currents

Chapter 30: Magnetic Fields Due to Currents d Chapte 3: Magnetic Field Due to Cuent A moving electic chage ceate a magnetic field. One of the moe pactical way of geneating a lage magnetic field (.1-1 T) i to ue a lage cuent flowing though a wie.

More information

Solutions to Problems: Chapter 7

Solutions to Problems: Chapter 7 Solution to Poblem: Chapte 7 P7-1. P7-2. P7-3. P7-4. Authoized and available hae LG 2; Baic a. Maximum hae available fo ale Authoized hae 2,000,000 Le: Shae outtanding 1,400,000 Available hae 600,000 b.

More information

Standardized Coefficients

Standardized Coefficients Standadized Coefficient Ta. How do ou decide which of the X ae mot impotant fo detemining? In thi handout, we dicu one poile (and contoveial) anwe to thi quetion - the tandadized egeion coefficient. Fomula.

More information

Module Availability at Regent s School of Drama, Film and Media Autumn 2016 and Spring 2017 *subject to change*

Module Availability at Regent s School of Drama, Film and Media Autumn 2016 and Spring 2017 *subject to change* Availability at Regent s School of Dama, Film and Media Autumn 2016 and Sping 2017 *subject to change* 1. Choose you modules caefully You must discuss the module options available with you academic adviso/

More information

Worked Examples. v max =?

Worked Examples. v max =? Exaple iction + Unifo Cicula Motion Cicula Hill A ca i diing oe a ei-cicula hill of adiu. What i the fatet the ca can die oe the top of the hill without it tie lifting off of the gound? ax? (1) Copehend

More information

Gross Trade Accounting, Cross Country Production Sharing and Global Value-Chain

Gross Trade Accounting, Cross Country Production Sharing and Global Value-Chain Go Tade ccounting, Co Count Poduction Shaing and Gloal Value-Chain Zhi Wang United State Intenational Tade Commiion aed on Tacing alue-added and doule counting in go expot Koopmam, Wang and Wei, meican

More information

Chapter 13 Fluids. Use the definition of density to express the mass of the gold sphere: The mass of the copper sphere is given by:

Chapter 13 Fluids. Use the definition of density to express the mass of the gold sphere: The mass of the copper sphere is given by: Chapte Fluid 5 One phee i ade of gold and ha a adiu and anothe phee i ade of coppe and ha a adiu. f the phee have equal a, hat i the atio of the adii, /? ictue the oble We can ue the definition of denity

More information

The Essence of the Electromagnetic Wave is Not Energy

The Essence of the Electromagnetic Wave is Not Energy The Eence of the Electomagnetic Wave i Not Enegy Zeng Qingping Ai Foce Rada Academy Pofeo cienceum@yahoocn Abtact The cutomay opinion i: electic ave o light ave i enegy, TYang expeiment i the intefeence

More information

Multiple choice questions [70 points]

Multiple choice questions [70 points] Multiple choice questions [70 points] Answe all of the following questions. Read each question caefull. Fill the coect bubble on ou scanton sheet. Each question has exactl one coect answe. All questions

More information

Decision-Driven Fixed Income Attribution

Decision-Driven Fixed Income Attribution Reeach am (Yanqiu) Zhong +44 (0)20 3134 7577 yanqiu.zhong@baclay.com Diecto, Index, otfolio & Rik Solution Deciion-Diven Fixed Income Attibution - Match Attibution ith Invetment Deciion-Making oce Octobe

More information

Effect of Unemployment Insurance Tax On Wages and Employment: A Partial Equilibrium Analysis

Effect of Unemployment Insurance Tax On Wages and Employment: A Partial Equilibrium Analysis Effect of Unemployment nuance Tax On Wage and Employment: atial Equilibium nalyi Deegha Raj dhikai, Oklahoma Employment Secuity Commiion ynn Gay, Oklahoma Employment Secuity Commiion Jackie Bun, Texa &

More information

Parameter Identification of DC Motors

Parameter Identification of DC Motors Paamete dentification of DC Moto utho: Dipl.-ng. ngo öllmecke dvantage of the Paamete dentification Method Saving time and money in the teting poce: no anical coupling neceay Full infomation: Entie chaacteitic

More information

10. Collisions. Before During After

10. Collisions. Before During After 10. Collisions Use conseation of momentum and enegy and the cente of mass to undestand collisions between two objects. Duing a collision, two o moe objects exet a foce on one anothe fo a shot time: -F(t)

More information

DSC Baseline Improvements Obtained by a New Heat Flow Measurement Technique

DSC Baseline Improvements Obtained by a New Heat Flow Measurement Technique DS Baeline Impovement Obtained by a New Heat Flow Meauement Technique obet L. Danley, Pete A. aulfield TA Intument, 109 Luken Dive, New atle DE 19720 ABSTAT Nealy all diffeential canning caloimety (DS)

More information

Week 3-4: Permutations and Combinations

Week 3-4: Permutations and Combinations Week 3-4: Pemutations and Combinations Febuay 24, 2016 1 Two Counting Pinciples Addition Pinciple Let S 1, S 2,, S m be disjoint subsets of a finite set S If S S 1 S 2 S m, then S S 1 + S 2 + + S m Multiplication

More information

The Role of Gravity in Orbital Motion

The Role of Gravity in Orbital Motion ! The Role of Gavity in Obital Motion Pat of: Inquiy Science with Datmouth Developed by: Chistophe Caoll, Depatment of Physics & Astonomy, Datmouth College Adapted fom: How Gavity Affects Obits (Ohio State

More information

Semipartial (Part) and Partial Correlation

Semipartial (Part) and Partial Correlation Semipatial (Pat) and Patial Coelation his discussion boows heavily fom Applied Multiple egession/coelation Analysis fo the Behavioal Sciences, by Jacob and Paticia Cohen (975 edition; thee is also an updated

More information

Problem Set # 9 Solutions

Problem Set # 9 Solutions Poblem Set # 9 Solutions Chapte 12 #2 a. The invention of the new high-speed chip inceases investment demand, which shifts the cuve out. That is, at evey inteest ate, fims want to invest moe. The incease

More information

Integrating Net2 with an intruder alarm system

Integrating Net2 with an intruder alarm system Net AN035 Integating Net with an intude alam system Oveview Net can monito whethe the intude alam is set o uet If the alam is set, Net will limit access to valid uses who ae also authoised to uet the alam

More information

Top K Nearest Keyword Search on Large Graphs

Top K Nearest Keyword Search on Large Graphs Top K Neaest Keywod Seach on Lage Gaphs Miao Qiao, Lu Qin, Hong Cheng, Jeffey Xu Yu, Wentao Tian The Chinese Univesity of Hong Kong, Hong Kong, China {mqiao,lqin,hcheng,yu,wttian}@se.cuhk.edu.hk ABSTRACT

More information

Optimizing Supply Chain Collaboration Based on Negotiation and Bargain Power for Single Retailer And Single Supplier

Optimizing Supply Chain Collaboration Based on Negotiation and Bargain Power for Single Retailer And Single Supplier Poceeding of the Intenational MultiConfeence of Enginee and Compute Scientit 20 Vol II,, Mach -, 20, Hong Kong Optimizing Supply Chain Collaboation Baed on Negotiation and Bagain Powe fo Single Retaile

More information

Things to Remember. r Complete all of the sections on the Retirement Benefit Options form that apply to your request.

Things to Remember. r Complete all of the sections on the Retirement Benefit Options form that apply to your request. Retiement Benefit 1 Things to Remembe Complete all of the sections on the Retiement Benefit fom that apply to you equest. If this is an initial equest, and not a change in a cuent distibution, emembe to

More information

Chapter 3 Savings, Present Value and Ricardian Equivalence

Chapter 3 Savings, Present Value and Ricardian Equivalence Chapte 3 Savings, Pesent Value and Ricadian Equivalence Chapte Oveview In the pevious chapte we studied the decision of households to supply hous to the labo maket. This decision was a static decision,

More information

Using Model Checking to Analyze Network Vulnerabilities

Using Model Checking to Analyze Network Vulnerabilities Uing Model Checking to Analyze Netwok Vulneabilitie Ronald W. Ritchey Paul Ammann * National Secuity Team Infomation and Softwae Engineeing Depatment Booz Allen & Hamilton Geoge Maon Univeity Fall Chuch,

More information

AP Physics Electromagnetic Wrap Up

AP Physics Electromagnetic Wrap Up AP Physics Electomagnetic Wap Up Hee ae the gloious equations fo this wondeful section. F qsin This is the equation fo the magnetic foce acting on a moing chaged paticle in a magnetic field. The angle

More information

Small Hydropower Plant with variable speed PM generator

Small Hydropower Plant with variable speed PM generator Witold MAZGAJ, Zbigniew SZULAR, Tomaz WĘGEL, Tadeuz SOBCZYK Politechnika Kakowka, ntytut Elektomechanicznych Pzemian Enegii Small Hydopowe Plant with vaiable peed PM geneato Abtact. Thi pape peent a new

More information

Scal abil it y of ANSYS 16 applicat ions and Hardware select ion.

Scal abil it y of ANSYS 16 applicat ions and Hardware select ion. Technical white pape Scal abil it y of ANSYS 16 applicat ion and Hadwae elect ion. On multi-coe and floating point acceleato poceo ytem Table of Content Ab t a ct... 2 Tet configuation detail... 2 Meage

More information

Incline and Friction Examples

Incline and Friction Examples Incline and riction Eample Phic 6A Prepared b Vince Zaccone riction i a force that oppoe the motion of urface that are in contact with each other. We will conider 2 tpe of friction in thi cla: KINETIC

More information

Armored Car Insurance Application

Armored Car Insurance Application Amoed Ca Insuance Application Applicant Details: Fist named insued: _ Please attach list of any additional insueds to be included fo coveage. Addess: City/State/Zip: Effective date: Expiation date: Additional

More information

2. TRIGONOMETRIC FUNCTIONS OF GENERAL ANGLES

2. TRIGONOMETRIC FUNCTIONS OF GENERAL ANGLES . TRIGONOMETRIC FUNCTIONS OF GENERAL ANGLES In ode to etend the definitions of the si tigonometic functions to geneal angles, we shall make use of the following ideas: In a Catesian coodinate sstem, an

More information

UNIT CIRCLE TRIGONOMETRY

UNIT CIRCLE TRIGONOMETRY UNIT CIRCLE TRIGONOMETRY The Unit Cicle is the cicle centeed at the oigin with adius unit (hence, the unit cicle. The equation of this cicle is + =. A diagam of the unit cicle is shown below: + = - - -

More information

How To Change V1 Programming

How To Change V1 Programming REPORT # HOW TO REPROGRAM V1 RADAR DETECTORS IF YOU REALLY WANT TO How To ange V1 Pogamming WARNING: Impotant ada alets may be blocked by changes in factoy settings es that ae Essential To Full Potection

More information

Optimal Pricing Decision and Assessing Factors in. Closed-Loop Supply Chain

Optimal Pricing Decision and Assessing Factors in. Closed-Loop Supply Chain Applied Matheatical Sciences, Vol. 5, 2011, no. 80, 4015-4031 Optial Picing Decision and Assessing Factos in Closed-Loop Supply Chain Yang Tan Picing Science and Engineeing Depatent, FedEx Expess Wold

More information

Experiment 6: Centripetal Force

Experiment 6: Centripetal Force Name Section Date Intoduction Expeiment 6: Centipetal oce This expeiment is concened with the foce necessay to keep an object moving in a constant cicula path. Accoding to Newton s fist law of motion thee

More information

Graphs of Equations. A coordinate system is a way to graphically show the relationship between 2 quantities.

Graphs of Equations. A coordinate system is a way to graphically show the relationship between 2 quantities. Gaphs of Equations CHAT Pe-Calculus A coodinate sstem is a wa to gaphicall show the elationship between quantities. Definition: A solution of an equation in two vaiables and is an odeed pai (a, b) such

More information

An Introduction to Omega

An Introduction to Omega An Intoduction to Omega Con Keating and William F. Shadwick These distibutions have the same mean and vaiance. Ae you indiffeent to thei isk-ewad chaacteistics? The Finance Development Cente 2002 1 Fom

More information

Mechanics 1: Work, Power and Kinetic Energy

Mechanics 1: Work, Power and Kinetic Energy Mechanics 1: Wok, Powe and Kinetic Eneg We fist intoduce the ideas of wok and powe. The notion of wok can be viewed as the bidge between Newton s second law, and eneg (which we have et to define and discuss).

More information

Definitions and terminology

Definitions and terminology I love the Case & Fai textbook but it is out of date with how monetay policy woks today. Please use this handout to supplement the chapte on monetay policy. The textbook assumes that the Fedeal Reseve

More information

Interface Design for Rationally Clocked GALS Systems

Interface Design for Rationally Clocked GALS Systems Intefae Deign fo Rationally Cloked GALS Sytem Joyee Mekie, Supatik Chakaboty, Giih Venkataamani,.S. Thiagaajan, D.K. Shama Mah 15, 2006 Motivation SoC : integation of pedeigned I oe Rationally loked ytem

More information

Requirements and Framework of VPN-oriented Data Center Services

Requirements and Framework of VPN-oriented Data Center Services Requiement and Famewok of -oiented Data Cente Sevice http://datatacke.ietf.og/doc/daft-o-vdc/ Ning So ning.o@veizonbuine.com Paul Unbehagen paul.unbehagen@alcatel-lucent.com Linda Dunba Linda.dunba@huawei.com

More information

How To Use A Network On A Network With A Powerline (Lan) On A Pcode (Lan On Alan) (Lan For Acedo) (Moe) (Omo) On An Ipo) Or Ipo (

How To Use A Network On A Network With A Powerline (Lan) On A Pcode (Lan On Alan) (Lan For Acedo) (Moe) (Omo) On An Ipo) Or Ipo ( Hubs, Bidges, and Switches Used fo extending LANs in tems of geogaphical coveage, numbe of nodes, administation capabilities, etc. Diffe in egads to: m collision domain isolation m laye at which they opeate

More information

Chapter 1: Introduction... 7 1-1. BELSORP analysis program... 7 1-2. Required computer environment... 8

Chapter 1: Introduction... 7 1-1. BELSORP analysis program... 7 1-2. Required computer environment... 8 1 [Table of contents] Chapte 1: Intoduction... 7 1-1. BELSORP analysis pogam... 7 1-. Requied compute envionment... 8 Chapte : Installation of the analysis pogam... 9-1. Installation of the WIBU-KEY pogam...

More information

CONCEPTUAL FRAMEWORK FOR DEVELOPING AND VERIFICATION OF ATTRIBUTION MODELS. ARITHMETIC ATTRIBUTION MODELS

CONCEPTUAL FRAMEWORK FOR DEVELOPING AND VERIFICATION OF ATTRIBUTION MODELS. ARITHMETIC ATTRIBUTION MODELS CONCEPUAL FAMEOK FO DEVELOPING AND VEIFICAION OF AIBUION MODELS. AIHMEIC AIBUION MODELS Yui K. Shestopaloff, is Diecto of eseach & Deelopment at SegmentSoft Inc. He is a Docto of Sciences and has a Ph.D.

More information

LTI, SAML, and Federated ID - Oh My!

LTI, SAML, and Federated ID - Oh My! LTI, SAML, and Fedeated ID - Oh My! Chales Seveance, Ph.D. Stephen P Vickes IMS Global Leaning Consotium http://www.imsglobal.og/ Poblem Statement We need a way to align IMS Leaning Tools Inteopeability

More information

(1) continuity equation: 0. momentum equation: u v g (2) u x. 1 a

(1) continuity equation: 0. momentum equation: u v g (2) u x. 1 a Comment on The effect of vible viscosity on mied convection het tnsfe long veticl moving sufce by M. Ali [Intentionl Jounl of Theml Sciences, 006, Vol. 45, pp. 60-69] Asteios Pntoktos Associte Pofesso

More information

Fast FPT-algorithms for cleaning grids

Fast FPT-algorithms for cleaning grids Fast FPT-algoithms fo cleaning gids Josep Diaz Dimitios M. Thilikos Abstact We conside the poblem that given a gaph G and a paamete k asks whethe the edit distance of G and a ectangula gid is at most k.

More information

YARN PROPERTIES MEASUREMENT: AN OPTICAL APPROACH

YARN PROPERTIES MEASUREMENT: AN OPTICAL APPROACH nd INTERNATIONAL TEXTILE, CLOTHING & ESIGN CONFERENCE Magic Wold of Textiles Octobe 03 d to 06 th 004, UBROVNIK, CROATIA YARN PROPERTIES MEASUREMENT: AN OPTICAL APPROACH Jana VOBOROVA; Ashish GARG; Bohuslav

More information

Magnetic Field and Magnetic Forces. Young and Freedman Chapter 27

Magnetic Field and Magnetic Forces. Young and Freedman Chapter 27 Magnetic Field and Magnetic Foces Young and Feedman Chapte 27 Intoduction Reiew - electic fields 1) A chage (o collection of chages) poduces an electic field in the space aound it. 2) The electic field

More information

Financing Terms in the EOQ Model

Financing Terms in the EOQ Model Financing Tems in the EOQ Model Habone W. Stuat, J. Columbia Business School New Yok, NY 1007 hws7@columbia.edu August 6, 004 1 Intoduction This note discusses two tems that ae often omitted fom the standad

More information

The Binomial Distribution

The Binomial Distribution The Binomial Distibution A. It would be vey tedious if, evey time we had a slightly diffeent poblem, we had to detemine the pobability distibutions fom scatch. Luckily, thee ae enough similaities between

More information

Purchase and rental subsidies in durable-good oligopolies* 1

Purchase and rental subsidies in durable-good oligopolies* 1 Hacienda Pública Epañola / Review of Public Economic, 3-(/05): -40 05, Intituto de Etudio Ficale DOI: 0.7866/HPE-RPE.5.. Puchae and ental ubidie in duable-good oligopolie* AMAGOIA SAGASTA JOSÉ M. USATEGUI

More information

VISCOSITY OF BIO-DIESEL FUELS

VISCOSITY OF BIO-DIESEL FUELS VISCOSITY OF BIO-DIESEL FUELS One of the key assumptions fo ideal gases is that the motion of a given paticle is independent of any othe paticles in the system. With this assumption in place, one can use

More information

MSc Financial Economics: International Finance. Bubbles in the Foreign Exchange Market. Anne Sibert. Revised Spring 2013. Contents

MSc Financial Economics: International Finance. Bubbles in the Foreign Exchange Market. Anne Sibert. Revised Spring 2013. Contents MSc Financial Economic: International Finance Bubble in the Foreign Exchange Market Anne Sibert Revied Spring 203 Content Introduction................................................. 2 The Mone Market.............................................

More information

CRRC-1 Method #1: Standard Practice for Measuring Solar Reflectance of a Flat, Opaque, and Heterogeneous Surface Using a Portable Solar Reflectometer

CRRC-1 Method #1: Standard Practice for Measuring Solar Reflectance of a Flat, Opaque, and Heterogeneous Surface Using a Portable Solar Reflectometer CRRC- Method #: Standad Pactice fo Measuing Sola Reflectance of a Flat, Opaque, and Heteogeneous Suface Using a Potable Sola Reflectomete Scope This standad pactice coves a technique fo estimating the

More information

Lecture 16: Color and Intensity. and he made him a coat of many colours. Genesis 37:3

Lecture 16: Color and Intensity. and he made him a coat of many colours. Genesis 37:3 Lectue 16: Colo and Intensity and he made him a coat of many colous. Genesis 37:3 1. Intoduction To display a pictue using Compute Gaphics, we need to compute the colo and intensity of the light at each

More information

Figure 2. So it is very likely that the Babylonians attributed 60 units to each side of the hexagon. Its resulting perimeter would then be 360!

Figure 2. So it is very likely that the Babylonians attributed 60 units to each side of the hexagon. Its resulting perimeter would then be 360! 1. What ae angles? Last time, we looked at how the Geeks intepeted measument of lengths. Howeve, as fascinated as they wee with geomety, thee was a shape that was much moe enticing than any othe : the

More information

Questions & Answers Chapter 10 Software Reliability Prediction, Allocation and Demonstration Testing

Questions & Answers Chapter 10 Software Reliability Prediction, Allocation and Demonstration Testing M13914 Questions & Answes Chapte 10 Softwae Reliability Pediction, Allocation and Demonstation Testing 1. Homewok: How to deive the fomula of failue ate estimate. λ = χ α,+ t When the failue times follow

More information

Modelling and simulation of a signal injection self-sensored drive

Modelling and simulation of a signal injection self-sensored drive Modelling and imulation o a ignal injection el-enoed dive Alen Poljugan Faculty o Electical Engineeing and Computing, Depatment o electic machine, dive and automation, Univeity o Zageb Unka, Zageb, Coatia,

More information

Chapter 22. Outside a uniformly charged sphere, the field looks like that of a point charge at the center of the sphere.

Chapter 22. Outside a uniformly charged sphere, the field looks like that of a point charge at the center of the sphere. Chapte.3 What is the magnitude of a point chage whose electic field 5 cm away has the magnitude of.n/c. E E 5.56 1 11 C.5 An atom of plutonium-39 has a nuclea adius of 6.64 fm and atomic numbe Z94. Assuming

More information

Skills Needed for Success in Calculus 1

Skills Needed for Success in Calculus 1 Skills Needed fo Success in Calculus Thee is much appehension fom students taking Calculus. It seems that fo man people, "Calculus" is snonmous with "difficult." Howeve, an teache of Calculus will tell

More information

How to SYSPREP a Windows 7 Pro corporate PC setup so you can image it for use on future PCs

How to SYSPREP a Windows 7 Pro corporate PC setup so you can image it for use on future PCs AnswesThatWok TM How to SYSPREP a Windows 7 Po copoate PC setup so you can image it fo use on futue PCs In a copoate envionment most PCs will usually have identical setups, with the same pogams installed

More information

Reduced Pattern Training Based on Task Decomposition Using Pattern Distributor

Reduced Pattern Training Based on Task Decomposition Using Pattern Distributor > PNN05-P762 < Reduced Patten Taining Based on Task Decomposition Using Patten Distibuto Sheng-Uei Guan, Chunyu Bao, and TseNgee Neo Abstact Task Decomposition with Patten Distibuto (PD) is a new task

More information

Summary: Vectors. This theorem is used to find any points (or position vectors) on a given line (direction vector). Two ways RT can be applied:

Summary: Vectors. This theorem is used to find any points (or position vectors) on a given line (direction vector). Two ways RT can be applied: Summ: Vectos ) Rtio Theoem (RT) This theoem is used to find n points (o position vectos) on given line (diection vecto). Two ws RT cn e pplied: Cse : If the point lies BETWEEN two known position vectos

More information

THE PRINCIPLE OF THE ACTIVE JMC SCATTERER. Seppo Uosukainen

THE PRINCIPLE OF THE ACTIVE JMC SCATTERER. Seppo Uosukainen THE PRINCIPLE OF THE ACTIVE JC SCATTERER Seppo Uoukaie VTT Buildig ad Tapot Ai Hadlig Techology ad Acoutic P. O. Bo 1803, FIN 02044 VTT, Filad Seppo.Uoukaie@vtt.fi ABSTRACT The piciple of fomulatig the

More information

PHYSICS 111 HOMEWORK SOLUTION #13. May 1, 2013

PHYSICS 111 HOMEWORK SOLUTION #13. May 1, 2013 PHYSICS 111 HOMEWORK SOLUTION #13 May 1, 2013 0.1 In intoductoy physics laboatoies, a typical Cavendish balance fo measuing the gavitational constant G uses lead sphees with masses of 2.10 kg and 21.0

More information

Space Vector Modulated Direct Torque Controlled (DTC SVM) Inverter Fed Induction Motor Drive

Space Vector Modulated Direct Torque Controlled (DTC SVM) Inverter Fed Induction Motor Drive Waaw niveity of Technology Faculty of Electical Engineeing Intitute of Contol and Indutial Electonic Ph.D. Thei acin Żelechowki,. Sc. Space Vecto odulated Diect Toque Contolled (DTC SV) Invete Fed Induction

More information

The LCOE is defined as the energy price ($ per unit of energy output) for which the Net Present Value of the investment is zero.

The LCOE is defined as the energy price ($ per unit of energy output) for which the Net Present Value of the investment is zero. Poject Decision Metics: Levelized Cost of Enegy (LCOE) Let s etun to ou wind powe and natual gas powe plant example fom ealie in this lesson. Suppose that both powe plants wee selling electicity into the

More information

How to create RAID 1 mirroring with a hard disk that already has data or an operating system on it

How to create RAID 1 mirroring with a hard disk that already has data or an operating system on it AnswesThatWok TM How to set up a RAID1 mio with a dive which aleady has Windows installed How to ceate RAID 1 mioing with a had disk that aleady has data o an opeating system on it Date Company PC / Seve

More information

CANCER, HEART ATTACK OR STROKE CLAIM FORM

CANCER, HEART ATTACK OR STROKE CLAIM FORM CANCER, HEART ATTACK OR STROKE CLAIM FORM Please ead the impotant infomation below: We suggest you make photocopies of any infomation sent fo you own ecods. Please be sue you policy numbe(s) is/ae witten

More information

Over-encryption: Management of Access Control Evolution on Outsourced Data

Over-encryption: Management of Access Control Evolution on Outsourced Data Ove-encyption: Management of Access Contol Evolution on Outsouced Data Sabina De Capitani di Vimecati DTI - Univesità di Milano 26013 Cema - Italy decapita@dti.unimi.it Stefano Paaboschi DIIMM - Univesità

More information

LATIN SQUARE DESIGN (LS) -With the Latin Square design you are able to control variation in two directions.

LATIN SQUARE DESIGN (LS) -With the Latin Square design you are able to control variation in two directions. Facts about the LS Design LATIN SQUARE DESIGN (LS) -With the Latin Squae design you ae able to contol vaiation in two diections. -Teatments ae aanged in ows and columns -Each ow contains evey teatment.

More information

Saturated and weakly saturated hypergraphs

Saturated and weakly saturated hypergraphs Satuated and weakly satuated hypegaphs Algebaic Methods in Combinatoics, Lectues 6-7 Satuated hypegaphs Recall the following Definition. A family A P([n]) is said to be an antichain if we neve have A B

More information

AP Physics Gravity and Circular Motion

AP Physics Gravity and Circular Motion AP Phyic Gity nd icul Motion Newton theoy i ey iple. Gity i foce of ttction between ny two object tht he. Two object itting on dektop ttct ech othe with foce tht we cll gity. They don t go flying togethe

More information

Faithful Comptroller s Handbook

Faithful Comptroller s Handbook Faithful Comptolle s Handbook Faithful Comptolle s Handbook Selection of Faithful Comptolle The Laws govening the Fouth Degee povide that the faithful comptolle be elected, along with the othe offices

More information

Cloud Service Reliability: Modeling and Analysis

Cloud Service Reliability: Modeling and Analysis Cloud Sevice eliability: Modeling and Analysis Yuan-Shun Dai * a c, Bo Yang b, Jack Dongaa a, Gewei Zhang c a Innovative Computing Laboatoy, Depatment of Electical Engineeing & Compute Science, Univesity

More information

How to create a default user profile in Windows 7

How to create a default user profile in Windows 7 AnswesThatWok TM How to ceate a default use pofile in Windows 7 (Win 7) How to ceate a default use pofile in Windows 7 When to use this document Use this document wheneve you want to ceate a default use

More information

Chapter 19: Electric Charges, Forces, and Fields ( ) ( 6 )( 6

Chapter 19: Electric Charges, Forces, and Fields ( ) ( 6 )( 6 Chapte 9 lectic Chages, Foces, an Fiels 6 9. One in a million (0 ) ogen molecules in a containe has lost an electon. We assume that the lost electons have been emove fom the gas altogethe. Fin the numbe

More information

How to recover your Exchange 2003/2007 mailboxes and emails if all you have available are your PRIV1.EDB and PRIV1.STM Information Store database

How to recover your Exchange 2003/2007 mailboxes and emails if all you have available are your PRIV1.EDB and PRIV1.STM Information Store database AnswesThatWok TM Recoveing Emails and Mailboxes fom a PRIV1.EDB Exchange 2003 IS database How to ecove you Exchange 2003/2007 mailboxes and emails if all you have available ae you PRIV1.EDB and PRIV1.STM

More information

How Much Should a Firm Borrow. Effect of tax shields. Capital Structure Theory. Capital Structure & Corporate Taxes

How Much Should a Firm Borrow. Effect of tax shields. Capital Structure Theory. Capital Structure & Corporate Taxes How Much Should a Fim Boow Chapte 19 Capital Stuctue & Copoate Taxes Financial Risk - Risk to shaeholdes esulting fom the use of debt. Financial Leveage - Incease in the vaiability of shaeholde etuns that

More information

NUCLEAR MAGNETIC RESONANCE

NUCLEAR MAGNETIC RESONANCE 19 Jul 04 NMR.1 NUCLEAR MAGNETIC RESONANCE In this expeiment the phenomenon of nuclea magnetic esonance will be used as the basis fo a method to accuately measue magnetic field stength, and to study magnetic

More information

Uncertain Version Control in Open Collaborative Editing of Tree-Structured Documents

Uncertain Version Control in Open Collaborative Editing of Tree-Structured Documents Uncetain Vesion Contol in Open Collaboative Editing of Tee-Stuctued Documents M. Lamine Ba Institut Mines Télécom; Télécom PaisTech; LTCI Pais, Fance mouhamadou.ba@ telecom-paistech.f Talel Abdessalem

More information

Chapter 11: Aggregate Demand II, Applying the IS-LM Model Th LM t

Chapter 11: Aggregate Demand II, Applying the IS-LM Model Th LM t Equilibium in the - model The cuve epesents equilibium in the goods maket. Chapte :, Applying the - Model Th t C ( T) I( ) G The cuve epesents money maket equilibium. M L(, ) The intesection detemines

More information

Solving Systems of Linear Equations With Row Reductions to Echelon Form On Augmented Matrices. Paul A. Trogdon Cary High School Cary, North Carolina

Solving Systems of Linear Equations With Row Reductions to Echelon Form On Augmented Matrices. Paul A. Trogdon Cary High School Cary, North Carolina Solving Sstems of Linear Equations With Ro Reductions to Echelon Form On Augmented Matrices Paul A. Trogdon Car High School Car, North Carolina There is no more efficient a to solve a sstem of linear equations

More information

Mechanics 1: Motion in a Central Force Field

Mechanics 1: Motion in a Central Force Field Mechanics : Motion in a Cental Foce Field We now stud the popeties of a paticle of (constant) ass oving in a paticula tpe of foce field, a cental foce field. Cental foces ae ve ipotant in phsics and engineeing.

More information

Ethernet-based and function-independent vehicle control-platform

Ethernet-based and function-independent vehicle control-platform Ethenet-baed and -independent vehicle contol-platfom motivation, idea and technical concept fulfilling quantitative afety-equiement fom ISO26262 Andea Zikle, Michael Ambute, Ludge Fiege, Gunte Feitag,

More information

Transmittal 47 Date: FEBRUARY 24, 2006

Transmittal 47 Date: FEBRUARY 24, 2006 anual ystem Pub 100-03 edicae National oveage Deteminations Depatment of Health & Human evices (DHH) ente fo edicae & edicaid evices () Tansmittal 47 Date: EBUAY 24, 2006 hange equest 4257 UBJET: hanges

More information

Episode 401: Newton s law of universal gravitation

Episode 401: Newton s law of universal gravitation Episode 401: Newton s law of univesal gavitation This episode intoduces Newton s law of univesal gavitation fo point masses, and fo spheical masses, and gets students pactising calculations of the foce

More information

Continuous Compounding and Annualization

Continuous Compounding and Annualization Continuous Compounding and Annualization Philip A. Viton Januay 11, 2006 Contents 1 Intoduction 1 2 Continuous Compounding 2 3 Pesent Value with Continuous Compounding 4 4 Annualization 5 5 A Special Poblem

More information

DNS: Domain Name System

DNS: Domain Name System DNS: Domain Name System People: many identifies: m SSN, name, Passpot # Intenet hosts, outes: m IP addess (32 bit) - used fo addessing datagams (in IPv4) m name, e.g., gaia.cs.umass.edu - used by humans

More information

Gauss Law. Physics 231 Lecture 2-1

Gauss Law. Physics 231 Lecture 2-1 Gauss Law Physics 31 Lectue -1 lectic Field Lines The numbe of field lines, also known as lines of foce, ae elated to stength of the electic field Moe appopiately it is the numbe of field lines cossing

More information

CHAPTER 10 Aggregate Demand I

CHAPTER 10 Aggregate Demand I CHAPTR 10 Aggegate Demand I Questions fo Review 1. The Keynesian coss tells us that fiscal policy has a multiplied effect on income. The eason is that accoding to the consumption function, highe income

More information

Lab #7: Energy Conservation

Lab #7: Energy Conservation Lab #7: Enegy Consevation Photo by Kallin http://www.bungeezone.com/pics/kallin.shtml Reading Assignment: Chapte 7 Sections 1,, 3, 5, 6 Chapte 8 Sections 1-4 Intoduction: Pehaps one of the most unusual

More information

The University of Toledo Soil Mechanics Laboratory

The University of Toledo Soil Mechanics Laboratory The University of Toledo Soil Mechanics Laboratory 1 Soil Moisture-Density Relationship Standard and Modified Proctor Tests Introduction For earthork construction it is important to compact soils to a

More information

P/ACE MDQ Basic Training Workbook

P/ACE MDQ Basic Training Workbook P/ACE MDQ Basic Taining Wokbook 32 Kaat 8.0 A33116AB Novembe 2009 Beckman Coulte, Inc. 250 S. Kaeme Blvd., Bea, CA 92821 Copyight 2009 Beckman Coulte, Inc. Copyight, Licenses and Tademaks Copyight Beckman

More information

PAN STABILITY TESTING OF DC CIRCUITS USING VARIATIONAL METHODS XVIII - SPETO - 1995. pod patronatem. Summary

PAN STABILITY TESTING OF DC CIRCUITS USING VARIATIONAL METHODS XVIII - SPETO - 1995. pod patronatem. Summary PCE SEMINIUM Z PODSTW ELEKTOTECHNIKI I TEOII OBWODÓW 8 - TH SEMIN ON FUNDMENTLS OF ELECTOTECHNICS ND CICUIT THEOY ZDENĚK BIOLEK SPŠE OŽNO P.., CZECH EPUBLIC DLIBO BIOLEK MILITY CDEMY, BNO, CZECH EPUBLIC

More information

SOLUTIONS TO CONCEPTS CHAPTER 16

SOLUTIONS TO CONCEPTS CHAPTER 16 . air = 30 m/. = 500 m/. Here S = 7 m So, t = t t = 330 500 SOLUIONS O CONCEPS CHPER 6 =.75 0 3 ec =.75 m.. Here gien S = 80 m = 60 m. = 30 m/ So the maximum time interal will be t = 5/ = 60/30 = 0.5 econd.

More information

SUPPLY CHAIN STRUCTURES ON THE INTERNET and the role of marketing-operations interaction 1

SUPPLY CHAIN STRUCTURES ON THE INTERNET and the role of marketing-operations interaction 1 Chapte 19 SUPPLY CHAIN STRUCTURES ON THE INTERNET and the ole of maketing-opeations inteaction 1 Seguei Netessine Univesity of Pennsylvania Philadelphia, PA 19104 netessine@haton.upenn.edu Nils Rudi Univesity

More information

The force between electric charges. Comparing gravity and the interaction between charges. Coulomb s Law. Forces between two charges

The force between electric charges. Comparing gravity and the interaction between charges. Coulomb s Law. Forces between two charges The foce between electic chages Coulomb s Law Two chaged objects, of chage q and Q, sepaated by a distance, exet a foce on one anothe. The magnitude of this foce is given by: kqq Coulomb s Law: F whee

More information

Coordinate Systems L. M. Kalnins, March 2009

Coordinate Systems L. M. Kalnins, March 2009 Coodinate Sstems L. M. Kalnins, Mach 2009 Pupose of a Coodinate Sstem The pupose of a coodinate sstem is to uniquel detemine the position of an object o data point in space. B space we ma liteall mean

More information

4a 4ab b 4 2 4 2 5 5 16 40 25. 5.6 10 6 (count number of places from first non-zero digit to

4a 4ab b 4 2 4 2 5 5 16 40 25. 5.6 10 6 (count number of places from first non-zero digit to . Simplify: 0 4 ( 8) 0 64 ( 8) 0 ( 8) = (Ode of opeations fom left to ight: Paenthesis, Exponents, Multiplication, Division, Addition Subtaction). Simplify: (a 4) + (a ) (a+) = a 4 + a 0 a = a 7. Evaluate

More information