Reminder: Affine Transformations. Viewing and Projection. Shear Transformations. Transformation Matrices in OpenGL. Specification via Ratios

Size: px
Start display at page:

Download "Reminder: Affine Transformations. Viewing and Projection. Shear Transformations. Transformation Matrices in OpenGL. Specification via Ratios"

Transcription

1 CSCI 420 Comptr Graphics Lctr 5 Viwing and Projction Jrnj Barbic Univrsity o Sothrn Caliornia Shar Transormation Camra Positioning Simpl Paralll Projctions Simpl Prspctiv Projctions [Angl, Ch. 5] Rmindr: Ain Transormations Givn a point [x y z], orm homognos coordinats [x y z 1]. Th transormd point is [x y z ]. 1 2 Transormation Matrics in OpnGL Transormation matrics in OpnGL ar vctors o 16 vals (colmn-major matrics) In glloadmatrix(glloat *m); Shar Transormations x-shar scals x proportional to y Lavs y and z vals ixd m = {m 1, m 2,..., m 16 } rprsnts Som books transpos all matrics! 3 4 Spciication via Shar Angl Spciication via Ratios cot(θ) = (x -x) / y x = x + y cot(θ) y = y z = z y (x,y) (x,y ) x -x θ y θ = shar angl For xampl, shar in both x and z dirction Lav y ixd Slop α or x-shar, γ or z-shar Solv Yilds θ x 5 6 1

2 Composing Transormations Lt p = A q, and q = B s. Thn p = (A B) s. s q p B A Composing Transormations Fact: Evry ain transormation is a composition o rotations, scalings, and translations So, how do w compos ths to orm an x-shar? Exrcis! AB matrix mltiplication 7 8 Otlin Shar Transormation Camra Positioning Simpl Paralll Projctions Simpl Prspctiv Projctions Transorm Camra = Transorm Scn Camra position is idntiid with a ram Eithr mov and rotat th objcts Or mov and rotat th camra Initially, camra at origin, pointing in ngativ z-dirction 9 10 Th Look-At Fnction Convnint way to position camra gllookat(x, y, z, x, y, z, x, y, z); = y point = ocs point = p vctor OpnGL cod void display() { glclar (GL_COLOR_BUFFER_BIT GL_DEPTH_BUFFER_BIT); glmatrixmod (GL_MODELVIEW); glloadidntity(); gllookat ( x, y, z, x, y, z, x, y, z ); gltranslat(x, y, z);... rndrbnny(); 11 gltswapbrs(); } 12 2

3 Implmnting th Look-At Fnction Plan: 1. Transorm world ram to camra ram Compos a rotation R with translation T W = T R 2. Invrt W to obtain viwing transormation V V = W -1 = (T R) -1 = R -1 T -1 Driv R, thn T, thn R -1 T -1 World Fram to Camra Fram I Camra points in ngativ z dirction n = ( ) / is nit normal to Thror, R maps [0 0-1] T to [n x n y n z ] T n World Fram to Camra Fram II R maps [0,1,0] T to projction o onto This projction v qals: α = ( n) / n = n v 0 = α n v = v 0 / v 0 World Fram to Camra Fram III St w to b orthogonal to n and v w = n x v (w, v, -n) is right-handd V 0 α n w v n Smmary o Rotation gllookat( x, y, z, x, y, z, x, y, z ); n = ( ) / v = ( ( n) n) / ( n) n w = n x v Rotation mst map: (1,0,0) to w (0,1,0) to v (0,0,-1) to n World Fram to Camra Fram IV Translation o origin to = [ x y z 1] T

4 Camra Fram to Rndring Fram V = W -1 = (T R) -1 = R -1 T -1 R is rotation, so R -1 = R T Ptting it Togthr Calclat V = R -1 T -1 T is translation, so T -1 ngats displacmnt This is dirnt rom book [Angl, Ch ] Thr,, v, n ar right-handd (hr:, v, -n) Othr Viwing Fnctions Roll (abot z), pitch (abot x), yaw (abot y) Otlin Shar Transormation Camra Positioning Simpl Paralll Projctions Simpl Prspctiv Projctions Assignmnt 2 poss a rlatd problm Projction Matrics Rcall gomtric piplin Projction taks 3D to 2D Projctions ar not invrtibl Projctions ar dscribd by a 4x4 matrix Homognos coordinats crcial Paralll and prspctiv projctions Paralll Projction Projct 3D objct to 2D via paralll lins Th lins ar not ncssarily orthogonal to projction plan 23 sorc: Wikipdia 24 4

5 Paralll Projction Problm: objcts ar away do not appar smallr Can lad to impossibl objcts : Orthographic Projction A spcial kind o paralll projction: projctors prpndiclar to projction plan Simpl, bt not ralistic Usd in blprints (mltiviw projctions) Pnros stairs sorc: Wikipdia Orthographic Projction Matrix Projct onto z = 0 x p = x, y p = y, z p = 0 In homognos coordinats Prspctiv Prspctiv charactrizd by orshortning Mor distant objcts appar smallr Paralll lins appar to convrg Rdimntary prspctiv in cav drawings: Lascax, Franc sorc: Wikipdia Discovry o Prspctiv Fondation in gomtry (Eclid) Mral rom Pompii, Italy Middl Ags Art in th srvic o rligion Prspctiv abandond or orgottn Ottonian manscript, ca

6 Rnaissanc Rdiscovry, systmatic stdy o prspctiv Filippo Brnllschi Flornc, 1415 Projction (Viwing) in OpnGL Rmmbr: camra is pointing in th ngativ z dirction Orthographic Viwing in OpnGL glortho(xmin, xmax, ymin, ymax, nar, ar) Prspctiv Viwing in OpnGL Two intracs: glfrstm and glprspctiv glfrstm(xmin, xmax, ymin, ymax, nar, ar); z min = nar, z max = ar z min = nar, z max = ar Fild o Viw Intrac glprspctiv(ovy, aspctratio, nar, ar); nar and ar as bor aspctratio = w / h Fovy spciis ild o viw as hight (y) angl OpnGL cod void rshap(int x, int y) { glviwport(0, 0, x, y); glmatrixmod(gl_projection); glloadidntity(); glprspctiv(60.0, 1.0 * x / y, 0.01, 10.0); glmatrixmod(gl_modelview); }

7 Prspctiv Viwing Mathmatically Exploiting th 4 th Dimnsion Prspctiv projction is not ain: d has no soltion or M d = ocal lngth y/z = y p /d so y p = y/(z/d) = y d / z Not that y p is non-linar in th dpth z! Ida: xploit homognos coordinats or arbitrary w Prspctiv Projction Matrix Us mltipl o point Projction Algorithm Inpt: 3D point (x,y,z) to projct Solv with 1. Form [x y z 1] T 2. Mltiply M with [x y z 1] T ; obtaining [X Y Z W] T 3. Prorm prspctiv division: X / W, Y / W, Z / W Otpt: (X / W, Y / W, Z / W) (last coordinat will b d) Prspctiv Division Normaliz [x y z w] T to [(x/w) (y/w) (z/w) 1] T Prorm prspctiv division atr projction Projction in OpnGL is mor complx (inclds clipping) 41 7

That is, we start with a general matrix: And end with a simpler matrix:

That is, we start with a general matrix: And end with a simpler matrix: DIAGON ALIZATION OF THE STR ESS TEN SOR INTRO DUCTIO N By th us of Cauchy s thorm w ar abl to rduc th numbr of strss componnts in th strss tnsor to only nin valus. An additional simplification of th strss

More information

Multi-linear Systems and Invariant Theory. in the Context of Computer Vision and Graphics. Class 5: Self Calibration. CS329 Stanford University

Multi-linear Systems and Invariant Theory. in the Context of Computer Vision and Graphics. Class 5: Self Calibration. CS329 Stanford University Mlti-linar Systms and Invariant hory in th ontt of omtr Vision and Grahics lass 5: Slf alibration S39 Stanford Univrsity Amnon Shasha lass 5 Matrial W Will ovr oday h basic qations and conting argmnts

More information

Sundials and Linear Algebra

Sundials and Linear Algebra Sundials and Linar Algbra M. Scot Swan July 2, 25 Most txts on crating sundials ar dirctd towards thos who ar solly intrstd in making and using sundials and usually assums minimal mathmatical background.

More information

Partial Derivatives: Suppose that z = f(x, y) is a function of two variables.

Partial Derivatives: Suppose that z = f(x, y) is a function of two variables. Chaptr Functions o Two Variabls Applid Calculus 61 Sction : Calculus o Functions o Two Variabls Now that ou hav som amiliarit with unctions o two variabls it s tim to start appling calculus to hlp us solv

More information

Section 11.6: Directional Derivatives and the Gradient Vector

Section 11.6: Directional Derivatives and the Gradient Vector Sction.6: Dirctional Drivativs and th Gradint Vctor Practic HW rom Stwart Ttbook not to hand in p. 778 # -4 p. 799 # 4-5 7 9 9 35 37 odd Th Dirctional Drivativ Rcall that a b Slop o th tangnt lin to th

More information

2008 AP Calculus BC Multiple Choice Exam

2008 AP Calculus BC Multiple Choice Exam 008 AP Multipl Choic Eam Nam 008 AP Calculus BC Multipl Choic Eam Sction No Calculator Activ AP Calculus 008 BC Multipl Choic. At tim t 0, a particl moving in th -plan is th acclration vctor of th particl

More information

The Matrix Exponential

The Matrix Exponential Th Matrix Exponntial (with xrciss) by D. Klain Vrsion 207.0.05 Corrctions and commnts ar wlcom. Th Matrix Exponntial For ach n n complx matrix A, dfin th xponntial of A to b th matrix A A k I + A + k!

More information

First derivative analysis

First derivative analysis Robrto s Nots on Dirntial Calculus Chaptr 8: Graphical analysis Sction First drivativ analysis What you nd to know alrady: How to us drivativs to idntiy th critical valus o a unction and its trm points

More information

ECE 650 1/8. Homework Set 4 - Solutions

ECE 650 1/8. Homework Set 4 - Solutions ECE 65 /8 Homwork St - Solutions. (Stark & Woods #.) X: zro-man, C X Find G such that Y = GX will b lt. whit. (Will us: G = -/ E T ) Finding -valus for CX: dt = (-) (-) = Finding corrsponding -vctors for

More information

The Matrix Exponential

The Matrix Exponential Th Matrix Exponntial (with xrciss) by Dan Klain Vrsion 28928 Corrctions and commnts ar wlcom Th Matrix Exponntial For ach n n complx matrix A, dfin th xponntial of A to b th matrix () A A k I + A + k!

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 401 Digital Signal Procssing Prof. Mark Fowlr Dtails of th ot St #19 Rading Assignmnt: Sct. 7.1.2, 7.1.3, & 7.2 of Proakis & Manolakis Dfinition of th So Givn signal data points x[n] for n = 0,, -1

More information

Lenses & Prism Consider light entering a prism At the plane surface perpendicular light is unrefracted Moving from the glass to the slope side light

Lenses & Prism Consider light entering a prism At the plane surface perpendicular light is unrefracted Moving from the glass to the slope side light Lnss & Prism Considr light ntring a prism At th plan surac prpndicular light is unrractd Moving rom th glass to th slop sid light is bnt away rom th normal o th slop Using Snll's law n sin( ϕ ) = n sin(

More information

Direct Approach for Discrete Systems One-Dimensional Elements

Direct Approach for Discrete Systems One-Dimensional Elements CONTINUUM & FINITE ELEMENT METHOD Dirct Approach or Discrt Systms On-Dimnsional Elmnts Pro. Song Jin Par Mchanical Enginring, POSTECH Dirct Approach or Discrt Systms Dirct approach has th ollowing aturs:

More information

Self-Adjointness and Its Relationship to Quantum Mechanics. Ronald I. Frank 2016

Self-Adjointness and Its Relationship to Quantum Mechanics. Ronald I. Frank 2016 Ronald I. Frank 06 Adjoint https://n.wikipdia.org/wiki/adjoint In gnral thr is an oprator and a procss that dfin its adjoint *. It is thn slf-adjoint if *. Innr product spac https://n.wikipdia.org/wiki/innr_product_spac

More information

Addition of angular momentum

Addition of angular momentum Addition of angular momntum April, 07 Oftn w nd to combin diffrnt sourcs of angular momntum to charactriz th total angular momntum of a systm, or to divid th total angular momntum into parts to valuat

More information

Lecture 08 Multiple View Geometry 2. Prof. Dr. Davide Scaramuzza

Lecture 08 Multiple View Geometry 2. Prof. Dr. Davide Scaramuzza Lctr 8 Mltpl V Gomtry Prof. Dr. Dad Scaramzza sdad@f.zh.ch Cors opcs Prncpls of mag formaton Imag fltrng Fatr dtcton Mlt- gomtry 3D Rconstrcton Rcognton Mltpl V Gomtry San Marco sqar, Vnc 4,79 mags, 4,55,57

More information

1 Isoparametric Concept

1 Isoparametric Concept UNIVERSITY OF CALIFORNIA BERKELEY Dpartmnt of Civil Enginring Spring 06 Structural Enginring, Mchanics and Matrials Profssor: S. Govindj Nots on D isoparamtric lmnts Isoparamtric Concpt Th isoparamtric

More information

Electromagnetic scattering. Graduate Course Electrical Engineering (Communications) 1 st Semester, Sharif University of Technology

Electromagnetic scattering. Graduate Course Electrical Engineering (Communications) 1 st Semester, Sharif University of Technology Elctromagntic scattring Graduat Cours Elctrical Enginring (Communications) 1 st Smstr, 1388-1389 Sharif Univrsity of Tchnology Contnts of lctur 8 Contnts of lctur 8: Scattring from small dilctric objcts

More information

CHAPTER 1. Introductory Concepts Elements of Vector Analysis Newton s Laws Units The basis of Newtonian Mechanics D Alembert s Principle

CHAPTER 1. Introductory Concepts Elements of Vector Analysis Newton s Laws Units The basis of Newtonian Mechanics D Alembert s Principle CHPTER 1 Introductory Concpts Elmnts of Vctor nalysis Nwton s Laws Units Th basis of Nwtonian Mchanics D lmbrt s Principl 1 Scinc of Mchanics: It is concrnd with th motion of matrial bodis. odis hav diffrnt

More information

Chapter 5. Introduction. Introduction. Introduction. Finite Element Modelling. Finite Element Modelling

Chapter 5. Introduction. Introduction. Introduction. Finite Element Modelling. Finite Element Modelling Chaptr 5 wo-dimnsional problms using Constant Strain riangls (CS) Lctur Nots Dr Mohd Andi Univrsiti Malasia Prlis EN7 Finit Elmnt Analsis Introction wo-dimnsional init lmnt ormulation ollows th stps usd

More information

u 3 = u 3 (x 1, x 2, x 3 )

u 3 = u 3 (x 1, x 2, x 3 ) Lctur 23: Curvilinar Coordinats (RHB 8.0 It is oftn convnint to work with variabls othr than th Cartsian coordinats x i ( = x, y, z. For xampl in Lctur 5 w mt sphrical polar and cylindrical polar coordinats.

More information

surface of a dielectric-metal interface. It is commonly used today for discovering the ways in

surface of a dielectric-metal interface. It is commonly used today for discovering the ways in Surfac plasmon rsonanc is snsitiv mchanism for obsrving slight changs nar th surfac of a dilctric-mtal intrfac. It is commonl usd toda for discovring th was in which protins intract with thir nvironmnt,

More information

Higher order derivatives

Higher order derivatives Robrto s Nots on Diffrntial Calculus Chaptr 4: Basic diffrntiation ruls Sction 7 Highr ordr drivativs What you nd to know alrady: Basic diffrntiation ruls. What you can larn hr: How to rpat th procss of

More information

PROBLEM SET Problem 1.

PROBLEM SET Problem 1. PROLEM SET 1 PROFESSOR PETER JOHNSTONE 1. Problm 1. 1.1. Th catgory Mat L. OK, I m not amiliar with th trminology o partially orr sts, so lt s go ovr that irst. Dinition 1.1. partial orr is a binary rlation

More information

Math 102. Rumbos Spring Solutions to Assignment #8. Solution: The matrix, A, corresponding to the system in (1) is

Math 102. Rumbos Spring Solutions to Assignment #8. Solution: The matrix, A, corresponding to the system in (1) is Math 12. Rumbos Spring 218 1 Solutions to Assignmnt #8 1. Construct a fundamntal matrix for th systm { ẋ 2y ẏ x + y. (1 Solution: Th matrix, A, corrsponding to th systm in (1 is 2 A. (2 1 1 Th charactristic

More information

Multiple-Choice Test Introduction to Partial Differential Equations COMPLETE SOLUTION SET

Multiple-Choice Test Introduction to Partial Differential Equations COMPLETE SOLUTION SET Mltipl-Choic Tst Introdction to Partial Diffrntial Eqations COMPLETE SOLUTION SET 1. A partial diffrntial qation has (A on indpndnt variabl (B two or mor indpndnt variabls (C mor than on dpndnt variabl

More information

MATHEMATICS PAPER IB COORDINATE GEOMETRY(2D &3D) AND CALCULUS. Note: This question paper consists of three sections A,B and C.

MATHEMATICS PAPER IB COORDINATE GEOMETRY(2D &3D) AND CALCULUS. Note: This question paper consists of three sections A,B and C. MATHEMATICS PAPER IB COORDINATE GEOMETRY(D &D) AND CALCULUS. TIME : hrs Ma. Marks.75 Not: This qustion papr consists of thr sctions A,B and C. SECTION A VERY SHORT ANSWER TYPE QUESTIONS. 0X =0.If th portion

More information

Objective Mathematics

Objective Mathematics x. Lt 'P' b a point on th curv y and tangnt x drawn at P to th curv has gratst slop in magnitud, thn point 'P' is,, (0, 0),. Th quation of common tangnt to th curvs y = 6 x x and xy = x + is : x y = 8

More information

Need to understand interaction of macroscopic measures

Need to understand interaction of macroscopic measures CE 322 Transportation Enginring Dr. Ahmd Abdl-Rahim, h. D.,.E. Nd to undrstand intraction o macroscopic masurs Spd vs Dnsity Flow vs Dnsity Spd vs Flow Equation 5.14 hlps gnraliz Thr ar svral dirnt orms

More information

Pipe flow friction, small vs. big pipes

Pipe flow friction, small vs. big pipes Friction actor (t/0 t o pip) Friction small vs larg pips J. Chaurtt May 016 It is an intrsting act that riction is highr in small pips than largr pips or th sam vlocity o low and th sam lngth. Friction

More information

Complex Powers and Logs (5A) Young Won Lim 10/17/13

Complex Powers and Logs (5A) Young Won Lim 10/17/13 Complx Powrs and Logs (5A) Copyright (c) 202, 203 Young W. Lim. Prmission is grantd to copy, distribut and/or modify this documnt undr th trms of th GNU Fr Documntation Licns, Vrsion.2 or any latr vrsion

More information

Einstein Equations for Tetrad Fields

Einstein Equations for Tetrad Fields Apiron, Vol 13, No, Octobr 006 6 Einstin Equations for Ttrad Filds Ali Rıza ŞAHİN, R T L Istanbul (Turky) Evry mtric tnsor can b xprssd by th innr product of ttrad filds W prov that Einstin quations for

More information

Lecture Aberrations. Cameras, Chromatic aberration. correct. n blue > n red. Spherical aberration. Parabolic mirrror.

Lecture Aberrations. Cameras, Chromatic aberration. correct. n blue > n red. Spherical aberration. Parabolic mirrror. Lctur 25-1 Abrrations Chromatic abrration Camras, corrct n blu > n rd Sphrical abrration Parabolic mirrror Larg tlscops, Lctur 25-2 Th Human Ey (1) Rraction at th corna and lns suracs producs an invrtd

More information

Addition of angular momentum

Addition of angular momentum Addition of angular momntum April, 0 Oftn w nd to combin diffrnt sourcs of angular momntum to charactriz th total angular momntum of a systm, or to divid th total angular momntum into parts to valuat th

More information

Epipolar Geometry and the Fundamental Matrix

Epipolar Geometry and the Fundamental Matrix 9 Epipolar Gomtry and th Fundamntal Matrix Th pipolar gomtry is th intrinsic projctiv gomtry btwn two viws. It is indpndnt of scn structur, and only dpnds on th camras intrnal paramtrs and rlativ pos.

More information

a 1and x is any real number.

a 1and x is any real number. Calcls Nots Eponnts an Logarithms Eponntial Fnction: Has th form y a, whr a 0, a an is any ral nmbr. Graph y, Graph y ln y y Th Natral Bas (Elr s nmbr): An irrational nmbr, symboliz by th lttr, appars

More information

SECTION where P (cos θ, sin θ) and Q(cos θ, sin θ) are polynomials in cos θ and sin θ, provided Q is never equal to zero.

SECTION where P (cos θ, sin θ) and Q(cos θ, sin θ) are polynomials in cos θ and sin θ, provided Q is never equal to zero. SETION 6. 57 6. Evaluation of Dfinit Intgrals Exampl 6.6 W hav usd dfinit intgrals to valuat contour intgrals. It may com as a surpris to larn that contour intgrals and rsidus can b usd to valuat crtain

More information

Computer Vision. Fourier Analysis. Computer Science Tripos Part II. Dr Christopher Town. Fourier Analysis. Fourier Analysis

Computer Vision. Fourier Analysis. Computer Science Tripos Part II. Dr Christopher Town. Fourier Analysis. Fourier Analysis Comptr Vision Comptr Scinc Tripos Part II Dr Christophr Town orir Analsis An imag can b rprsntd b a linar combination of basis fnctions: In th cas of 2D orir analsis: orir Analsis orir Analsis Th transform

More information

Homework 5 Solutions

Homework 5 Solutions Q Homework Soltions We know that the colmn space is the same as span{a & a ( a * } bt we want the basis Ths we need to make a & a ( a * linearly independent So in each of the following problems we row

More information

Solution: APPM 1360 Final (150 pts) Spring (60 pts total) The following parts are not related, justify your answers:

Solution: APPM 1360 Final (150 pts) Spring (60 pts total) The following parts are not related, justify your answers: APPM 6 Final 5 pts) Spring 4. 6 pts total) Th following parts ar not rlatd, justify your answrs: a) Considr th curv rprsntd by th paramtric quations, t and y t + for t. i) 6 pts) Writ down th corrsponding

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 401 Digital Signal Procssing Prof. Mark Fowlr ot St #18 Introduction to DFT (via th DTFT) Rading Assignmnt: Sct. 7.1 of Proakis & Manolakis 1/24 Discrt Fourir Transform (DFT) W v sn that th DTFT is

More information

ECE602 Exam 1 April 5, You must show ALL of your work for full credit.

ECE602 Exam 1 April 5, You must show ALL of your work for full credit. ECE62 Exam April 5, 27 Nam: Solution Scor: / This xam is closd-book. You must show ALL of your work for full crdit. Plas rad th qustions carfully. Plas chck your answrs carfully. Calculators may NOT b

More information

Differentiation of Exponential Functions

Differentiation of Exponential Functions Calculus Modul C Diffrntiation of Eponntial Functions Copyright This publication Th Northrn Albrta Institut of Tchnology 007. All Rights Rsrvd. LAST REVISED March, 009 Introduction to Diffrntiation of

More information

Function Spaces. a x 3. (Letting x = 1 =)) a(0) + b + c (1) = 0. Row reducing the matrix. b 1. e 4 3. e 9. >: (x = 1 =)) a(0) + b + c (1) = 0

Function Spaces. a x 3. (Letting x = 1 =)) a(0) + b + c (1) = 0. Row reducing the matrix. b 1. e 4 3. e 9. >: (x = 1 =)) a(0) + b + c (1) = 0 unction Spacs Prrquisit: Sction 4.7, Coordinatization n this sction, w apply th tchniqus of Chaptr 4 to vctor spacs whos lmnts ar functions. Th vctor spacs P n and P ar familiar xampls of such spacs. Othr

More information

Gabor window grid (900 samples) dual window (grid) dual window (quincunx) quincunx (800 samples)

Gabor window grid (900 samples) dual window (grid) dual window (quincunx) quincunx (800 samples) alclating th dal Gabor window for gnral sampling sts Ptr Prinz Univrsitat Win, Institt f Mathmatik, U H A G Strdlhofgass 4 tl: ++43 / / 448 695 fax: ++43 / / 448 697 -mail: prinztychmatniviacat Abstract

More information

BSc Engineering Sciences A. Y. 2017/18 Written exam of the course Mathematical Analysis 2 August 30, x n, ) n 2

BSc Engineering Sciences A. Y. 2017/18 Written exam of the course Mathematical Analysis 2 August 30, x n, ) n 2 BSc Enginring Scincs A. Y. 27/8 Writtn xam of th cours Mathmatical Analysis 2 August, 28. Givn th powr sris + n + n 2 x n, n n dtrmin its radius of convrgnc r, and study th convrgnc for x ±r. By th root

More information

2. Background Material

2. Background Material S. Blair Sptmbr 3, 003 4. Background Matrial Th rst of this cours dals with th gnration, modulation, propagation, and ction of optical radiation. As such, bic background in lctromagntics and optics nds

More information

ELECTRON-MUON SCATTERING

ELECTRON-MUON SCATTERING ELECTRON-MUON SCATTERING ABSTRACT Th lctron charg is considrd to b distributd or xtndd in spac. Th diffrntial of th lctron charg is st qual to a function of lctron charg coordinats multiplid by a four-dimnsional

More information

Image Filtering: Noise Removal, Sharpening, Deblurring. Yao Wang Polytechnic University, Brooklyn, NY11201

Image Filtering: Noise Removal, Sharpening, Deblurring. Yao Wang Polytechnic University, Brooklyn, NY11201 Imag Filtring: Nois Rmoval, Sharpning, Dblurring Yao Wang Polytchnic Univrsity, Brooklyn, NY http://wb.poly.du/~yao Outlin Nois rmoval by avraging iltr Nois rmoval by mdian iltr Sharpning Edg nhancmnt

More information

Roadmap. XML Indexing. DataGuide example. DataGuides. Strong DataGuides. Multiple DataGuides for same data. CPS Topics in Database Systems

Roadmap. XML Indexing. DataGuide example. DataGuides. Strong DataGuides. Multiple DataGuides for same data. CPS Topics in Database Systems Roadmap XML Indxing CPS 296.1 Topics in Databas Systms Indx fabric Coopr t al. A Fast Indx for Smistructurd Data. VLDB, 2001 DataGuid Goldman and Widom. DataGuids: Enabling Qury Formulation and Optimization

More information

Brief Introduction to Statistical Mechanics

Brief Introduction to Statistical Mechanics Brif Introduction to Statistical Mchanics. Purpos: Ths nots ar intndd to provid a vry quick introduction to Statistical Mchanics. Th fild is of cours far mor vast than could b containd in ths fw pags.

More information

Fourier Transforms and the Wave Equation. Key Mathematics: More Fourier transform theory, especially as applied to solving the wave equation.

Fourier Transforms and the Wave Equation. Key Mathematics: More Fourier transform theory, especially as applied to solving the wave equation. Lur 7 Fourir Transforms and th Wav Euation Ovrviw and Motivation: W first discuss a fw faturs of th Fourir transform (FT), and thn w solv th initial-valu problm for th wav uation using th Fourir transform

More information

EECE 301 Signals & Systems Prof. Mark Fowler

EECE 301 Signals & Systems Prof. Mark Fowler EECE 301 Signals & Systms Prof. Mark Fowlr ot St #21 D-T Signals: Rlation btwn DFT, DTFT, & CTFT 1/16 W can us th DFT to implmnt numrical FT procssing This nabls us to numrically analyz a signal to find

More information

MATHEMATICS (B) 2 log (D) ( 1) = where z =

MATHEMATICS (B) 2 log (D) ( 1) = where z = MATHEMATICS SECTION- I STRAIGHT OBJECTIVE TYPE This sction contains 9 multipl choic qustions numbrd to 9. Each qustion has choic (A), (B), (C) and (D), out of which ONLY-ONE is corrct. Lt I d + +, J +

More information

Abstract Interpretation: concrete and abstract semantics

Abstract Interpretation: concrete and abstract semantics Abstract Intrprtation: concrt and abstract smantics Concrt smantics W considr a vry tiny languag that manags arithmtic oprations on intgrs valus. Th (concrt) smantics of th languags cab b dfind by th funzcion

More information

NEW APPLICATIONS OF THE ABEL-LIOUVILLE FORMULA

NEW APPLICATIONS OF THE ABEL-LIOUVILLE FORMULA NE APPLICATIONS OF THE ABEL-LIOUVILLE FORMULA Mirca I CÎRNU Ph Dp o Mathmatics III Faculty o Applid Scincs Univrsity Polithnica o Bucharst Cirnumirca @yahoocom Abstract In a rcnt papr [] 5 th indinit intgrals

More information

Where k is either given or determined from the data and c is an arbitrary constant.

Where k is either given or determined from the data and c is an arbitrary constant. Exponntial growth and dcay applications W wish to solv an quation that has a drivativ. dy ky k > dx This quation says that th rat of chang of th function is proportional to th function. Th solution is

More information

GEOMETRICAL PHENOMENA IN THE PHYSICS OF SUBATOMIC PARTICLES. Eduard N. Klenov* Rostov-on-Don, Russia

GEOMETRICAL PHENOMENA IN THE PHYSICS OF SUBATOMIC PARTICLES. Eduard N. Klenov* Rostov-on-Don, Russia GEOMETRICAL PHENOMENA IN THE PHYSICS OF SUBATOMIC PARTICLES Eduard N. Klnov* Rostov-on-Don, Russia Th articl considrs phnomnal gomtry figurs bing th carrirs of valu spctra for th pairs of th rmaining additiv

More information

Content Skills Assessments Lessons. Identify, classify, and apply properties of negative and positive angles.

Content Skills Assessments Lessons. Identify, classify, and apply properties of negative and positive angles. Tachr: CORE TRIGONOMETRY Yar: 2012-13 Cours: TRIGONOMETRY Month: All Months S p t m b r Angls Essntial Qustions Can I idntify draw ngativ positiv angls in stard position? Do I hav a working knowldg of

More information

Potential energy of a structure. Vforce. joints j

Potential energy of a structure. Vforce. joints j Potntial nrgy of a strctr P y P x y x P y P x ij ij ij V K ( ) Vforc P V ij ij j j K ( ) P [ K] r Elastic Potntial nrgy of mmbr ij Potntial nrgy of applid forc at joint i i i i mmbrs joints j Find th st

More information

MA 262, Spring 2018, Final exam Version 01 (Green)

MA 262, Spring 2018, Final exam Version 01 (Green) MA 262, Spring 218, Final xam Vrsion 1 (Grn) INSTRUCTIONS 1. Switch off your phon upon ntring th xam room. 2. Do not opn th xam booklt until you ar instructd to do so. 3. Bfor you opn th booklt, fill in

More information

DSP-First, 2/e. LECTURE # CH2-3 Complex Exponentials & Complex Numbers TLH MODIFIED. Aug , JH McClellan & RW Schafer

DSP-First, 2/e. LECTURE # CH2-3 Complex Exponentials & Complex Numbers TLH MODIFIED. Aug , JH McClellan & RW Schafer DSP-First, / TLH MODIFIED LECTURE # CH-3 Complx Exponntials & Complx Numbrs Aug 016 1 READING ASSIGNMENTS This Lctur: Chaptr, Scts. -3 to -5 Appndix A: Complx Numbrs Complx Exponntials Aug 016 LECTURE

More information

Ch. 24 Molecular Reaction Dynamics 1. Collision Theory

Ch. 24 Molecular Reaction Dynamics 1. Collision Theory Ch. 4 Molcular Raction Dynamics 1. Collision Thory Lctur 16. Diffusion-Controlld Raction 3. Th Matrial Balanc Equation 4. Transition Stat Thory: Th Eyring Equation 5. Transition Stat Thory: Thrmodynamic

More information

TMMI37, vt2, Lecture 8; Introductory 2-dimensional elastostatics; cont.

TMMI37, vt2, Lecture 8; Introductory 2-dimensional elastostatics; cont. Lctr 8; ntrodctor 2-dimnsional lastostatics; cont. (modifid 23--3) ntrodctor 2-dimnsional lastostatics; cont. W will now contin or std of 2-dim. lastostatics, and focs on a somwhat mor adancd lmnt thn

More information

A Propagating Wave Packet Group Velocity Dispersion

A Propagating Wave Packet Group Velocity Dispersion Lctur 8 Phys 375 A Propagating Wav Packt Group Vlocity Disprsion Ovrviw and Motivation: In th last lctur w lookd at a localizd solution t) to th 1D fr-particl Schrödingr quation (SE) that corrsponds to

More information

L 1 = L G 1 F-matrix: too many F ij s even at quadratic-only level

L 1 = L G 1 F-matrix: too many F ij s even at quadratic-only level 5.76 Lctur #6 //94 Pag of 8 pag Lctur #6: Polyatomic Vibration III: -Vctor and H O Lat tim: I got tuck on L G L mut b L L L G F-matrix: too many F ij vn at quadratic-only lvl It obviou! Intrnal coordinat:

More information

1.2 Faraday s law A changing magnetic field induces an electric field. Their relation is given by:

1.2 Faraday s law A changing magnetic field induces an electric field. Their relation is given by: Elctromagntic Induction. Lorntz forc on moving charg Point charg moving at vlocity v, F qv B () For a sction of lctric currnt I in a thin wir dl is Idl, th forc is df Idl B () Elctromotiv forc f s any

More information

There is an arbitrary overall complex phase that could be added to A, but since this makes no difference we set it to zero and choose A real.

There is an arbitrary overall complex phase that could be added to A, but since this makes no difference we set it to zero and choose A real. Midtrm #, Physics 37A, Spring 07. Writ your rsponss blow or on xtra pags. Show your work, and tak car to xplain what you ar doing; partial crdit will b givn for incomplt answrs that dmonstrat som concptual

More information

3 Finite Element Parametric Geometry

3 Finite Element Parametric Geometry 3 Finit Elmnt Paramtric Gomtry 3. Introduction Th intgral of a matrix is th matrix containing th intgral of ach and vry on of its original componnts. Practical finit lmnt analysis rquirs intgrating matrics,

More information

Chapter 6 Folding. Folding

Chapter 6 Folding. Folding Chaptr 6 Folding Wintr 1 Mokhtar Abolaz Folding Th folding transformation is usd to systmatically dtrmin th control circuits in DSP architctur whr multipl algorithm oprations ar tim-multiplxd to a singl

More information

Division of Mechanics Lund University MULTIBODY DYNAMICS. Examination Name (write in block letters):.

Division of Mechanics Lund University MULTIBODY DYNAMICS. Examination Name (write in block letters):. Division of Mchanics Lund Univrsity MULTIBODY DYNMICS Examination 7033 Nam (writ in block lttrs):. Id.-numbr: Writtn xamination with fiv tasks. Plas chck that all tasks ar includd. clan copy of th solutions

More information

Assignment 4 Biophys 4322/5322

Assignment 4 Biophys 4322/5322 Assignmnt 4 Biophys 4322/5322 Tylr Shndruk Fbruary 28, 202 Problm Phillips 7.3. Part a R-onsidr dimoglobin utilizing th anonial nsmbl maning rdriv Eq. 3 from Phillips Chaptr 7. For a anonial nsmbl p E

More information

Contemporary, atomic, nuclear, and particle physics

Contemporary, atomic, nuclear, and particle physics Contmporary, atomic, nuclar, and particl physics 1 Blackbody radiation as a thrmal quilibrium condition (in vacuum this is th only hat loss) Exampl-1 black plan surfac at a constant high tmpratur T h is

More information

Calculus II (MAC )

Calculus II (MAC ) Calculus II (MAC232-2) Tst 2 (25/6/25) Nam (PRINT): Plas show your work. An answr with no work rcivs no crdit. You may us th back of a pag if you nd mor spac for a problm. You may not us any calculators.

More information

Massachusetts Institute of Technology Department of Mechanical Engineering

Massachusetts Institute of Technology Department of Mechanical Engineering Massachustts Institut of Tchnolog Dpartmnt of Mchanical Enginring. Introduction to Robotics Mid-Trm Eamination Novmbr, 005 :0 pm 4:0 pm Clos-Book. Two shts of nots ar allowd. Show how ou arrivd at our

More information

11: Echo formation and spatial encoding

11: Echo formation and spatial encoding 11: Echo formation and spatial ncoding 1. What maks th magntic rsonanc signal spatiall dpndnt? 2. How is th position of an R signal idntifid? Slic slction 3. What is cho formation and how is it achivd?

More information

A. Limits and Horizontal Asymptotes ( ) f x f x. f x. x "±# ( ).

A. Limits and Horizontal Asymptotes ( ) f x f x. f x. x ±# ( ). A. Limits and Horizontal Asymptots What you ar finding: You can b askd to find lim x "a H.A.) problm is asking you find lim x "# and lim x "$#. or lim x "±#. Typically, a horizontal asymptot algbraically,

More information

The van der Waals interaction 1 D. E. Soper 2 University of Oregon 20 April 2012

The van der Waals interaction 1 D. E. Soper 2 University of Oregon 20 April 2012 Th van dr Waals intraction D. E. Sopr 2 Univrsity of Orgon 20 pril 202 Th van dr Waals intraction is discussd in Chaptr 5 of J. J. Sakurai, Modrn Quantum Mchanics. Hr I tak a look at it in a littl mor

More information

Recounting the Rationals

Recounting the Rationals Rconting th Rationals Nil Calkin and Hrbrt S. Wilf pril, 000 It is wll known (indd, as Pal Erd}os might hav said, vry child knows) that th rationals ar contabl. Howvr, th standard prsntations of this fact

More information

MCE503: Modeling and Simulation of Mechatronic Systems Discussion on Bond Graph Sign Conventions for Electrical Systems

MCE503: Modeling and Simulation of Mechatronic Systems Discussion on Bond Graph Sign Conventions for Electrical Systems MCE503: Modling and Simulation o Mchatronic Systms Discussion on Bond Graph Sign Convntions or Elctrical Systms Hanz ichtr, PhD Clvland Stat Univrsity, Dpt o Mchanical Enginring 1 Basic Assumption In a

More information

Outline. Why speech processing? Speech signal processing. Advanced Multimedia Signal Processing #5:Speech Signal Processing 2 -Processing-

Outline. Why speech processing? Speech signal processing. Advanced Multimedia Signal Processing #5:Speech Signal Processing 2 -Processing- Outlin Advancd Multimdia Signal Procssing #5:Spch Signal Procssing -Procssing- Intllignt Elctronic Systms Group Dpt. of Elctronic Enginring, UEC Basis of Spch Procssing Nois Rmoval Spctral Subtraction

More information

Curl, Divergence, Gradient, and Laplacian in Cylindrical and Spherical Coordinate Systems

Curl, Divergence, Gradient, and Laplacian in Cylindrical and Spherical Coordinate Systems A P P E N D I X B Curl, Divrgnc, Gradint, and Laplacian in Cylindrical and Sphrical Coordinat Systms 788 In Chaptr 3, w introducd th curl, divrgnc, gradint, and Laplacian and drivd th xprssions or thm

More information

Application of MS-Excel Solver to Non-linear Beam Analysis

Application of MS-Excel Solver to Non-linear Beam Analysis / Application of S-cl Solr to Non-linar Bam Analysis Toshimi Taki arch 4, 007 April 8, 007, R. A. ntroction Sprasht softwar in crrnt prsonal comptrs is high prformanc an th softwar has nogh fnctions for

More information

Lecture 6.4: Galois groups

Lecture 6.4: Galois groups Lctur 6.4: Galois groups Matthw Macauly Dpartmnt of Mathmatical Scincs Clmson Univrsity http://www.math.clmson.du/~macaul/ Math 4120, Modrn Algbra M. Macauly (Clmson) Lctur 6.4: Galois groups Math 4120,

More information

Introduction to Multicopter Design and Control

Introduction to Multicopter Design and Control Introduction to Multicoptr Dsign and Control Lsson 05 Coordinat Systm and Attitud Rprsntation Quan Quan, Associat Profssor _uaa@uaa.du.cn BUAA Rlial Flight Control Group, http://rfly.uaa.du.cn/ Bihang

More information

Construction of asymmetric orthogonal arrays of strength three via a replacement method

Construction of asymmetric orthogonal arrays of strength three via a replacement method isid/ms/26/2 Fbruary, 26 http://www.isid.ac.in/ statmath/indx.php?modul=prprint Construction of asymmtric orthogonal arrays of strngth thr via a rplacmnt mthod Tian-fang Zhang, Qiaoling Dng and Alok Dy

More information

Homogeneous Constant Matrix Systems, Part I

Homogeneous Constant Matrix Systems, Part I 39 Homognous Constant Matrix Systms, Part I Finally, w can start discussing mthods for solving a vry important class of diffrntial quation systms of diffrntial quations: homognous constant matrix systms

More information

As the matrix of operator B is Hermitian so its eigenvalues must be real. It only remains to diagonalize the minor M 11 of matrix B.

As the matrix of operator B is Hermitian so its eigenvalues must be real. It only remains to diagonalize the minor M 11 of matrix B. 7636S ADVANCED QUANTUM MECHANICS Solutions Spring. Considr a thr dimnsional kt spac. If a crtain st of orthonormal kts, say, and 3 ar usd as th bas kts, thn th oprators A and B ar rprsntd by a b A a and

More information

Y 0. Standing Wave Interference between the incident & reflected waves Standing wave. A string with one end fixed on a wall

Y 0. Standing Wave Interference between the incident & reflected waves Standing wave. A string with one end fixed on a wall Staning Wav Intrfrnc btwn th incint & rflct wavs Staning wav A string with on n fix on a wall Incint: y, t) Y cos( t ) 1( Y 1 ( ) Y (St th incint wav s phas to b, i.., Y + ral & positiv.) Rflct: y, t)

More information

Calculus II Solutions review final problems

Calculus II Solutions review final problems Calculus II Solutions rviw final problms MTH 5 Dcmbr 9, 007. B abl to utiliz all tchniqus of intgration to solv both dfinit and indfinit intgrals. Hr ar som intgrals for practic. Good luck stuing!!! (a)

More information

SCALING OF SYNCHROTRON RADIATION WITH MULTIPOLE ORDER. J. C. Sprott

SCALING OF SYNCHROTRON RADIATION WITH MULTIPOLE ORDER. J. C. Sprott SCALING OF SYNCHROTRON RADIATION WITH MULTIPOLE ORDER J. C. Sprott PLP 821 Novmbr 1979 Plasma Studis Univrsity of Wisconsin Ths PLP Rports ar informal and prliminary and as such may contain rrors not yt

More information

Lie Groups HW7. Wang Shuai. November 2015

Lie Groups HW7. Wang Shuai. November 2015 Li roups HW7 Wang Shuai Novmbr 015 1 Lt (π, V b a complx rprsntation of a compact group, show that V has an invariant non-dgnratd Hrmitian form. For any givn Hrmitian form on V, (for xampl (u, v = i u

More information

Derivation of Electron-Electron Interaction Terms in the Multi-Electron Hamiltonian

Derivation of Electron-Electron Interaction Terms in the Multi-Electron Hamiltonian Drivation of Elctron-Elctron Intraction Trms in th Multi-Elctron Hamiltonian Erica Smith Octobr 1, 010 1 Introduction Th Hamiltonian for a multi-lctron atom with n lctrons is drivd by Itoh (1965) by accounting

More information

On spanning trees and cycles of multicolored point sets with few intersections

On spanning trees and cycles of multicolored point sets with few intersections On spanning trs and cycls of multicolord point sts with fw intrsctions M. Kano, C. Mrino, and J. Urrutia April, 00 Abstract Lt P 1,..., P k b a collction of disjoint point sts in R in gnral position. W

More information

Schematic of a mixed flow reactor (both advection and dispersion must be accounted for)

Schematic of a mixed flow reactor (both advection and dispersion must be accounted for) Cas stuy 6.1, R: Chapra an Canal, p. 769. Th quation scribin th concntration o any tracr in an lonat ractor is known as th avction-isprsion quation an may b writtn as: Schmatic o a mi low ractor (both

More information

SPH4U Electric Charges and Electric Fields Mr. LoRusso

SPH4U Electric Charges and Electric Fields Mr. LoRusso SPH4U lctric Chargs an lctric Fils Mr. LoRusso lctricity is th flow of lctric charg. Th Grks first obsrv lctrical forcs whn arly scintists rubb ambr with fur. Th notic thy coul attract small bits of straw

More information

Continuous probability distributions

Continuous probability distributions Continuous probability distributions Many continuous probability distributions, including: Uniform Normal Gamma Eponntial Chi-Squard Lognormal Wibull EGR 5 Ch. 6 Uniform distribution Simplst charactrizd

More information

ME242 MECHANICAL ENGINEERING SYSTEMS LECTURE 27: Ideal Machines: Transformers and Gyrators 2.4 IDEAL MACHINES. Machine

ME242 MECHANICAL ENGINEERING SYSTEMS LECTURE 27: Ideal Machines: Transformers and Gyrators 2.4 IDEAL MACHINES. Machine E4 ECHANICAL ENGINEERING SYSES LECURE 7: Idal achins: ransformrs and Gyrators.4 E4 - Spring 005 - Eugnio Schustr 343 1 Idal IDEAL ACHINES achin An idal machin is a two port dvic that transmits work from

More information

FEA Solution Procedure

FEA Solution Procedure EA Soltion Procedre (demonstrated with a -D bar element problem) EA Procedre for Static Analysis. Prepare the E model a. discretize (mesh) the strctre b. prescribe loads c. prescribe spports. Perform calclations

More information

Thus, because if either [G : H] or [H : K] is infinite, then [G : K] is infinite, then [G : K] = [G : H][H : K] for all infinite cases.

Thus, because if either [G : H] or [H : K] is infinite, then [G : K] is infinite, then [G : K] = [G : H][H : K] for all infinite cases. Homwork 5 M 373K Solutions Mark Lindbrg and Travis Schdlr 1. Prov that th ring Z/mZ (for m 0) is a fild if and only if m is prim. ( ) Proof by Contrapositiv: Hr, thr ar thr cass for m not prim. m 0: Whn

More information