Solutions 3. February 2, Apply composite Simpson s rule with m = 1, 2, 4 panels to approximate the integrals:

Μέγεθος: px
Εμφάνιση ξεκινά από τη σελίδα:

Download "Solutions 3. February 2, Apply composite Simpson s rule with m = 1, 2, 4 panels to approximate the integrals:"

Transcript

1 s Februry 2, Exercise 5.2. Apply composite Simpson s rule with m = 1, 2, 4 pnels to pproximte the integrls: () x 2 dx = 1 π/2, (b) cos(x) dx = 1, (c) e x dx = e 1, nd report the errors. () f(x) = x 2. For m = 1 we put h = (1 )/2 = 1/2, x =, x 1 = 1/2, x 2 = 1; y = f(x ) =, y 1 = f(x 1 ) = 1/4, y 2 = f(x 2 ) = 1. The pproximtion is then I h/(y + 4y 1 + y 2 ) = ( + 4 1/4 + 1)/6 = 1/. The error is thus. For m = 2 we hve h = (1 )/4 = 1/4, (x, x 1,..., x 4 ) = (, 1/4, 1/2, /4, 1), (y, y 1,..., y 4 ) = (, 1/16, 1/4, 9/16, 1). The pproximtion is then I h/(y + 4y 1 + 2y 2 + 4y + y 4 ) = ( + 4 1/ / /16 + 1)/12 = (1/4 + 2/4 + 9/4 + 4/4)/12 = 16/( 4 4) = 1/. The error is thus. One could continue with m =, but the error hs to be zero. Indeed, Simpson s rule is bsed on qudrtic interpoltion polynomils, which mens tht x 2 will be represented exctly by the interpolting polynomil nd the qudrture will be exct. (b) f(x) = cos(x) For m = 1 we put h = (π/2 )/2 = π/4, x =, x 1 = π/4, x 2 = π/2; y = f(x ) = 1, y 1 = f(x 1 ) = 1/ 2, y 2 = f(x 2 ) =. The pproximtion is then I h/(y + 4y 1 + y 2 ) = (1 + 4/ 2 + ) π/ The error is thus.227. For m = 2, h = π/8, (x,..., x 4 ) = (, π/8, π/4, π/8, π/2), (y,..., y 4 ) (1, , 1/ 2,.82684, ). I h/(y + 4y 1 + 2y 2 + 4y + y 4 ) 1.15, giving the error.15. For m =, h = π/6, I 1.261, errror.261. (c) f(x) = exp(x) For m = 1 we put h = (1 )/2 = 1/2, x =, x 1 = 1/2, x 2 = 1; y = f(x ) = 1, y 1 = f(x 1 ) = e 1/2, y 2 = f(x 2 ) = e. The pproximtion is then I h/(y + 4y 1 + y 2 ) = (1 + 4 e + e)/ The error is thus e For m = 2, h = 1/4, (x,..., x 4 ) = (, 1/4, 1/2, /4, 1),... I h/(y + 4y 1 + 2y 2 + 4y + y 4 ) , giving the error For m =, h = 1/6, I , errror Exercise Find the degree of precision of the following pproximtion for f(x) dx: First of ll, let us evlute the integrl of monomil x n, n : [ ] { x x n n+1 x=1, for odd n, dx = = n + 1 2/(n + 1), for even n. x= 1

2 () f(1) + f(): Let us pply the qudrture to the monomil x n, n : { 1 n + () n, for odd n, = 2, for even n, Therefore the qudrture grees with the integrl for n =, 1 (nd ll odd n), nd its degree of precision is 1. (One could lso observe tht this is trpezoid qudrture on [, 1], which is known to be exct for polynomils up to degree 1.) (b) 2/[f(-1) + f() + f(1)]. We check the qudrture on monomils of incresing degree: 2, for n =, 2/[() n + n + () n ] =, for odd n, 4/, for even n >, which grees with the integrl for n =, 1 (nd odd n). Thus degree of precision is 1. (c) We check the qudrture on monomils of incresing degree: [(/ ) n + (1/ { ) n, for odd n, ] = 2/ n/2, for even n, which grees with the integrl for n =, 1, 2, (nd odd n). Thus degree of precision is. (This is n exmple of Gussin qudrture, which re exct for polynomils of degree up to 2n 1 when n points re used.) Exercise Use the fct tht the error term of Boole s Rule (see Exercise ) is proportionl to f (6) (c) to find the exct error term. We pply the qudrture to the monomil x 6, for which f (6) (c) 6!, for ll c. Thus 4h [ x x 6 7 dx = 7 ] x=4h x= = 47 h 7 7 nd we re interested in finding C. = 2h 45 ( h (2h) (h) (4h) 6 ) + C6! In [1]: from sympy import * init_printing() h,c=symbols( h C ) integrl = (4*h)**7/7 qudrture = 2*h/45*(2*h**6 + 12*(2*h)**6 + 2*(*h)**6 + 7*(4*h)**6) simplify(integrl-qudrture) Out[1]: Thus C = 28h 7 /(21 6!) = 8h 7 / h7 21 2

3 4 Exercise Apply Adptive Qudrture by hnd, using the Trpezoid Rule with tolernce T OL =.5 to pproximte the integrls. Find the pproximtion error. () In this cse, f(x) = x 2, =, b = 1. We begin with n = 1 intervl, =, b = b. We will use S[, b] to denote the Trpezoid qudrture pplied on the intervl [, b]. c = (+b)/2, S[, b] = ( )/2 = 1/2, S[, c] = ( 2 +(1/2) 2 )/4 = 1/16, S[c, b] = ((1/2) )/4 = 5/16. S[, b] S[, c] S[c, b] = 1/8 =.125 <.5 ((b )/(b )) =.15. Thus we stop with the pproximtion S[, c] + S[c, b] = /8 =.75 nd n error estimte (S[, b] S[, c] S[c, b])/ = / The ctul integrtion error is x2 /8 = 1/ /8 = /24. Our estimte is exct becuse f is constnt in this cse, thus the pproximte eqution (5.8) in the book is ctully exct. (b) f(x) = cos(x), =, b = π/2. S[, π/2] = (π/2) (1 + )/2 = π/ , S[, π/4] = (π/4) (1 + 1/ 2)/2.7854, S[π/4, π, 2] = (π/4) (1/ 2 + )/ S[, b] S[, c] S[c, b] (π/2)/(π/2) =.15. Thus we need to split the intervl nd pply the dptive lgorithm recursively. S[, π/4] = (π/4) (1 + 1/ 2)/2.7854, S[, π/8] = (π/8) (1 + cos(π/8))/2.7775, S[π/8, π/4] = (π/8) (cos(π/8) + cos(π/4))/2.224, S[, π/4] S[, π/8] S[π/8, π/4] (π/4)/(π/2) =.75. Thus we need to split this intervl gin pply the dptive lgorithm recursively. S[, π/8] = (π/8) (1 + cos(π/8))/2.7775, S[, π/16] = (π/16) (1 + cos(π/16))/ , S[π/16, π/8] = (π/16) (cos(π/16) +cos(π/8))/ , S[, π/8] S[, π/16] S[π/16, π/8].7 <.5 (π/8)/(π/2) =.75. Thus we re done on the intervl [, π/8] with the pproximtion S[, π/16] + S[π/16, π/8] Let us look t the intervl [π/8, π/4] now. S[π/8, π/4] = (π/8) (cos(π/8) + cos(pi/4))/2.224, S[π/8, π/16] = (π/16) (cos(π/8) + cos(π/16))/2.172, S[π/16, π/4] = (π/16) (cos(π/16) + cos(π/4))/2.1515, S[π/8, π/4] S[π/8, π/16] S[π/16, π/4].14 <.5 (π/8)/(π/2) =.75. Thus we re done on the intervl [π/8, π/4] with the pproximtion S[π/8, π/16] + S[π/16, π/4].28. Let us look t the intervl [π/4, π/2] now. S[π/4, π/2] = (π/4) (cos(π/4) + cos(pi/2))/ , S[π/4, π/8] = (π/8) (cos(π/4)+cos(π/8))/2.2198, S[π/8, π/2] = (π/8) (cos(π/8)+cos(π/2))/2.7514, S[π/4, π/2] S[π/4, π/8] S[π/8, π/2].1144 <.5 (π/4)/(π/2) =.75. Thus we re done on the intervl [π/4, π/2] with the pproximtion S[π/4, π/8]+s[π/8, π/2] There re no intervls left, nd therefore the finl pproximtion is =.9995 wheres the exct integrl is π/2 cos(x) = 1. Thus the error is <.5. (c) In this cse, f(x) = exp(x), =, b = 1. S[, 1] = (1 + e)/ , S[,.5] = (1 + exp(.5))/ , S[.5, 1] = (exp(.5) + exp(1))/ S[, b] S[, c] S[c, b].152 <.5 ((b )/(b )) =.15. Thus we stop with the pproximtion S[, c] + S[c, b] nd n error estimte (S[, b] S[, c] S[c, b])/.5. The ctul integrtion error is exp(x) (S[, c] + S[c, b]).6. Our estimte is quite good in this cse. 5 Exercise Develop n Adptive Qudrture method for rule (5.28). Let c = ( + b)/2, h = b nd pply the qudrture on [, b], [, c], nd [c, b] (we use the sme nottion s in the book):

4 c f(x) dx + c f(x) dx = S[, b] + 14h5 45 f (4) (c 1 ), c 1 [, b], f(x) dx = S[, c] + S[c, b] + 14(h/2)5 45 f (4) (c 2 ) + 14(h/2)5 f (4) (c ), 45 c 2 [, c], c [c, b]. Further ssuming tht f (4) (c 1 ) f (4) (c 2 ) f (4) (c ) we obtin: c f(x) dx + c f(x) dx = S[, b] + 14h5 45 f (4) (c 1 ), f(x) dx S[, c] + S[c, b] h f (4) (c 1 ). We cn now subtrct the second eqution from the first to obtin: S[, b] S[, c] S[c, b] h f (4) (c 1 ). Thus the number S[, b] S[, c] S[c, b] gives n pproximtion to 15 times the error of the qudrture S[, c] + S[c, b]. The rest is exctly the sme s for other qudrtures; one stops subdividing the intervl when S[, b] S[, c] S[c, b] < 15 T OL (b )/(b orig orig ) nd returns S[, c] + S[c, b] s the pproximtion of the integrl over the intervl [,b]. 6 Exercise Approximte the integrls using n = 2 Gussin Qudrture. Compre with the correct vlue nd give the pproximtion error. Gussin Qudrture with n = 2 is defined by the points x 1,2 = ±1/, w 1,2 = 1. In [2]: x1 = -1/sqrt() x2 = 1/sqrt() w1 = 1 w2 = 1 () In []: from sympy import * init_printing() x=symbols( x ) f=lmbd(x,x**+2*x) Out[]: integrte(f(x),(x,-1,1)) In [4]: # Numericl qudrture 4

5 Out[4]: Thus the error is, which grees with the theory for Gussin Qudrtures being exct for polynomils up to degree 2n 1. (b) In [5]: f=lmbd(x,x**4) Out[5]: integrte(f(x),(x,-1,1)) In [6]: # Numericl qudrture 2 5 Out[6]: In [7]: # Approximtion error 2/5-2/9 2 9 Out[7]: (c) In [8]: f=lmbd(x,exp(x)) Out[8]: integrte(f(x),(x,-1,1)) 1 e + e In [9]: # Numericl qudrture Out[9]: e + e In [1]: # Approximtion error N(integrte(f(x),(x,-1,1))-()) Out[1]: (d)

6 In [11]: f=lmbd(x,cos(pi*x)) Out[11]: integrte(f(x),(x,-1,1)) In [12]: # Numericl qudrture Out[12]: 2 cos ( ) π In [1]: # Approximtion error N(-2*cos(sqrt()*pi/)) Out[1]: Exercise Show tht the Legendre polynomils p 1 (x) = x nd p 2 (x) = x 2 1/ re orthogonl on [, 1]. p 1(x)p 2 (x) dx = (x x/) dx = becuse x x/ is n odd function. 8 Exercise Compute Legendre polynomils up to degree. Legendre polynomils re given by the expression Thus p i (x) = 1 d 2 i i! dx i [(x2 1) i ]. p (x) = 1, p 1 (x) = 1/2[(x 2 1)] = x, p 2 (x) = 1/(4 2)[(x 2 1) 2 ] = 1/8[x 4 2x 2 + 1] = 1/8[12x 2 4] = /2(x 2 ), p (x) = 1/(8 6)[(x 2 1) ] = 1/48[x 6 x 4 + x 2 1] = 1/48[12x 72x] = 5/2[x /5x]. 9 Exercise Verify the coefficients c i nd x i in Tble 5.1 for degree n =. We hve computed p (x) = 5/2x(x 2 /5) in Exercise This immeditly implies tht p () = p (± /5) = confirming the roots listed in Tble 5.1. The coefficients c i re obtined by integrting the Lgrnge polynomils. For exmple, 6

7 nd therefore Similrly nd therefore L 2 (x) = (x x 1)(x x ) (x 2 x 1 )(x 2 x ) = (x + /5)(x /5) ( + /5)( /5) = 1 5 x2, c 2 = [1 5/x 2 ] dx = [x 5/9x ] x=1 x= = 2 1/9 = 8/9. (x )(x /5) L 1, (x) = ( /5 )( /5 /5) = x(x /5), 2 /5 c 1, = Computer exercise Answers: () (b) (c) Computer exercise [x 2 x /5] dx = 5 6 [x / /5x 2 /2] x=1 x= = = 5 9. See the file uniform refinement.m vilble on the wiki. Adpt the code to use Simpson s rule insted of Trpezoid. 7

Solutions_3. 1 Exercise Exercise January 26, 2017

Solutions_3. 1 Exercise Exercise January 26, 2017 s_3 Jnury 26, 217 1 Exercise 5.2.3 Apply composite Simpson s rule with m = 1, 2, 4 pnels to pproximte the integrls: () x 2 dx = 1 π/2 3, (b) cos(x) dx = 1, (c) e x dx = e 1, nd report the errors. () f(x)

Διαβάστε περισσότερα

Lecture 5: Numerical Integration

Lecture 5: Numerical Integration Lecture notes on Vritionl nd Approximte Metods in Applied Mtemtics - A Peirce UBC 1 Lecture 5: Numericl Integrtion Compiled 15 September 1 In tis lecture we introduce tecniques for numericl integrtion,

Διαβάστε περισσότερα

Review-2 and Practice problems. sin 2 (x) cos 2 (x)(sin(x)dx) (1 cos 2 (x)) cos 2 (x)(sin(x)dx) let u = cos(x), du = sin(x)dx. = (1 u 2 )u 2 ( du)

Review-2 and Practice problems. sin 2 (x) cos 2 (x)(sin(x)dx) (1 cos 2 (x)) cos 2 (x)(sin(x)dx) let u = cos(x), du = sin(x)dx. = (1 u 2 )u 2 ( du) . Trigonometric Integrls. ( sin m (x cos n (x Cse-: m is odd let u cos(x Exmple: sin 3 (x cos (x Review- nd Prctice problems sin 3 (x cos (x Cse-: n is odd let u sin(x Exmple: cos 5 (x cos 5 (x sin (x

Διαβάστε περισσότερα

Oscillatory integrals

Oscillatory integrals Oscilltory integrls Jordn Bell jordn.bell@gmil.com Deprtment of Mthemtics, University of Toronto August, 0 Oscilltory integrls Suppose tht Φ C R d ), ψ DR d ), nd tht Φ is rel-vlued. I : 0, ) C by Iλ)

Διαβάστε περισσότερα

ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΜΗΧΑΝΙΚΩΝ ΥΠΟΛΟΓΙΣΤΩΝ

ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΜΗΧΑΝΙΚΩΝ ΥΠΟΛΟΓΙΣΤΩΝ ΗΜΥ ΔΙΑΚΡΙΤΗ ΑΝΑΛΥΣΗ ΚΑΙ ΔΟΜΕΣ ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΜΗΧΑΝΙΚΩΝ ΥΠΟΛΟΓΙΣΤΩΝ ΗΜΥ Διακριτή Ανάλυση και Δομές Χειμερινό Εξάμηνο 6 Σειρά Ασκήσεων Ακέραιοι και Διαίρεση, Πρώτοι Αριθμοί, GCD/LC, Συστήματα

Διαβάστε περισσότερα

CHAPTER 25 SOLVING EQUATIONS BY ITERATIVE METHODS

CHAPTER 25 SOLVING EQUATIONS BY ITERATIVE METHODS CHAPTER 5 SOLVING EQUATIONS BY ITERATIVE METHODS EXERCISE 104 Page 8 1. Find the positive root of the equation x + 3x 5 = 0, correct to 3 significant figures, using the method of bisection. Let f(x) =

Διαβάστε περισσότερα

Math221: HW# 1 solutions

Math221: HW# 1 solutions Math: HW# solutions Andy Royston October, 5 7.5.7, 3 rd Ed. We have a n = b n = a = fxdx = xdx =, x cos nxdx = x sin nx n sin nxdx n = cos nx n = n n, x sin nxdx = x cos nx n + cos nxdx n cos n = + sin

Διαβάστε περισσότερα

Section 7.6 Double and Half Angle Formulas

Section 7.6 Double and Half Angle Formulas 09 Section 7. Double and Half Angle Fmulas To derive the double-angles fmulas, we will use the sum of two angles fmulas that we developed in the last section. We will let α θ and β θ: cos(θ) cos(θ + θ)

Διαβάστε περισσότερα

Example Sheet 3 Solutions

Example Sheet 3 Solutions Example Sheet 3 Solutions. i Regular Sturm-Liouville. ii Singular Sturm-Liouville mixed boundary conditions. iii Not Sturm-Liouville ODE is not in Sturm-Liouville form. iv Regular Sturm-Liouville note

Διαβάστε περισσότερα

2 Composition. Invertible Mappings

2 Composition. Invertible Mappings Arkansas Tech University MATH 4033: Elementary Modern Algebra Dr. Marcel B. Finan Composition. Invertible Mappings In this section we discuss two procedures for creating new mappings from old ones, namely,

Διαβάστε περισσότερα

Practice Exam 2. Conceptual Questions. 1. State a Basic identity and then verify it. (a) Identity: Solution: One identity is csc(θ) = 1

Practice Exam 2. Conceptual Questions. 1. State a Basic identity and then verify it. (a) Identity: Solution: One identity is csc(θ) = 1 Conceptual Questions. State a Basic identity and then verify it. a) Identity: Solution: One identity is cscθ) = sinθ) Practice Exam b) Verification: Solution: Given the point of intersection x, y) of the

Διαβάστε περισσότερα

Σχολή Εφαρμοσμένων Μαθηματικών και Φυσικών Επιστημών. Εθνικό Μετσόβιο Πολυτεχνείο. Thales Workshop, 1-3 July 2015.

Σχολή Εφαρμοσμένων Μαθηματικών και Φυσικών Επιστημών. Εθνικό Μετσόβιο Πολυτεχνείο. Thales Workshop, 1-3 July 2015. Σχολή Εφαρμοσμένων Μαθηματικών και Φυσικών Επιστημών Εθνικό Μετσόβιο Πολυτεχνείο Thles Worksho, 1-3 July 015 The isomorhism function from S3(L(,1)) to the free module Boštjn Gbrovšek Άδεια Χρήσης Το παρόν

Διαβάστε περισσότερα

3.4 SUM AND DIFFERENCE FORMULAS. NOTE: cos(α+β) cos α + cos β cos(α-β) cos α -cos β

3.4 SUM AND DIFFERENCE FORMULAS. NOTE: cos(α+β) cos α + cos β cos(α-β) cos α -cos β 3.4 SUM AND DIFFERENCE FORMULAS Page Theorem cos(αβ cos α cos β -sin α cos(α-β cos α cos β sin α NOTE: cos(αβ cos α cos β cos(α-β cos α -cos β Proof of cos(α-β cos α cos β sin α Let s use a unit circle

Διαβάστε περισσότερα

Section 8.3 Trigonometric Equations

Section 8.3 Trigonometric Equations 99 Section 8. Trigonometric Equations Objective 1: Solve Equations Involving One Trigonometric Function. In this section and the next, we will exple how to solving equations involving trigonometric functions.

Διαβάστε περισσότερα

AMS 212B Perturbation Methods Lecture 14 Copyright by Hongyun Wang, UCSC. Example: Eigenvalue problem with a turning point inside the interval

AMS 212B Perturbation Methods Lecture 14 Copyright by Hongyun Wang, UCSC. Example: Eigenvalue problem with a turning point inside the interval AMS B Perturbtion Methods Lecture 4 Copyright by Hongyun Wng, UCSC Emple: Eigenvlue problem with turning point inside the intervl y + λ y y = =, y( ) = The ODE for y() hs the form y () + λ f() y() = with

Διαβάστε περισσότερα

EE512: Error Control Coding

EE512: Error Control Coding EE512: Error Control Coding Solution for Assignment on Finite Fields February 16, 2007 1. (a) Addition and Multiplication tables for GF (5) and GF (7) are shown in Tables 1 and 2. + 0 1 2 3 4 0 0 1 2 3

Διαβάστε περισσότερα

Homework 3 Solutions

Homework 3 Solutions Homework 3 Solutions Igor Yanovsky (Math 151A TA) Problem 1: Compute the absolute error and relative error in approximations of p by p. (Use calculator!) a) p π, p 22/7; b) p π, p 3.141. Solution: For

Διαβάστε περισσότερα

Areas and Lengths in Polar Coordinates

Areas and Lengths in Polar Coordinates Kiryl Tsishchanka Areas and Lengths in Polar Coordinates In this section we develop the formula for the area of a region whose boundary is given by a polar equation. We need to use the formula for the

Διαβάστε περισσότερα

To find the relationships between the coefficients in the original equation and the roots, we have to use a different technique.

To find the relationships between the coefficients in the original equation and the roots, we have to use a different technique. Further Conepts for Avne Mthemtis - FP1 Unit Ientities n Roots of Equtions Cui, Qurti n Quinti Equtions Cui Equtions The three roots of the ui eqution x + x + x + 0 re lle α, β n γ (lph, et n gmm). The

Διαβάστε περισσότερα

Απόκριση σε Μοναδιαία Ωστική Δύναμη (Unit Impulse) Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο. Απόστολος Σ.

Απόκριση σε Μοναδιαία Ωστική Δύναμη (Unit Impulse) Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο. Απόστολος Σ. Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο The time integral of a force is referred to as impulse, is determined by and is obtained from: Newton s 2 nd Law of motion states that the action

Διαβάστε περισσότερα

Areas and Lengths in Polar Coordinates

Areas and Lengths in Polar Coordinates Kiryl Tsishchanka Areas and Lengths in Polar Coordinates In this section we develop the formula for the area of a region whose boundary is given by a polar equation. We need to use the formula for the

Διαβάστε περισσότερα

2. THEORY OF EQUATIONS. PREVIOUS EAMCET Bits.

2. THEORY OF EQUATIONS. PREVIOUS EAMCET Bits. EAMCET-. THEORY OF EQUATIONS PREVIOUS EAMCET Bits. Each of the roots of the equation x 6x + 6x 5= are increased by k so that the new transformed equation does not contain term. Then k =... - 4. - Sol.

Διαβάστε περισσότερα

INTEGRAL INEQUALITY REGARDING r-convex AND

INTEGRAL INEQUALITY REGARDING r-convex AND J Koren Mth Soc 47, No, pp 373 383 DOI 434/JKMS47373 INTEGRAL INEQUALITY REGARDING r-convex AND r-concave FUNCTIONS WdAllh T Sulimn Astrct New integrl inequlities concerning r-conve nd r-concve functions

Διαβάστε περισσότερα

C.S. 430 Assignment 6, Sample Solutions

C.S. 430 Assignment 6, Sample Solutions C.S. 430 Assignment 6, Sample Solutions Paul Liu November 15, 2007 Note that these are sample solutions only; in many cases there were many acceptable answers. 1 Reynolds Problem 10.1 1.1 Normal-order

Διαβάστε περισσότερα

Srednicki Chapter 55

Srednicki Chapter 55 Srednicki Chapter 55 QFT Problems & Solutions A. George August 3, 03 Srednicki 55.. Use equations 55.3-55.0 and A i, A j ] = Π i, Π j ] = 0 (at equal times) to verify equations 55.-55.3. This is our third

Διαβάστε περισσότερα

Finite Field Problems: Solutions

Finite Field Problems: Solutions Finite Field Problems: Solutions 1. Let f = x 2 +1 Z 11 [x] and let F = Z 11 [x]/(f), a field. Let Solution: F =11 2 = 121, so F = 121 1 = 120. The possible orders are the divisors of 120. Solution: The

Διαβάστε περισσότερα

Problem Set 3: Solutions

Problem Set 3: Solutions CMPSCI 69GG Applied Information Theory Fall 006 Problem Set 3: Solutions. [Cover and Thomas 7.] a Define the following notation, C I p xx; Y max X; Y C I p xx; Ỹ max I X; Ỹ We would like to show that C

Διαβάστε περισσότερα

CHAPTER 48 APPLICATIONS OF MATRICES AND DETERMINANTS

CHAPTER 48 APPLICATIONS OF MATRICES AND DETERMINANTS CHAPTER 48 APPLICATIONS OF MATRICES AND DETERMINANTS EXERCISE 01 Page 545 1. Use matrices to solve: 3x + 4y x + 5y + 7 3x + 4y x + 5y 7 Hence, 3 4 x 0 5 y 7 The inverse of 3 4 5 is: 1 5 4 1 5 4 15 8 3

Διαβάστε περισσότερα

CHAPTER 101 FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD

CHAPTER 101 FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD CHAPTER FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD EXERCISE 36 Page 66. Determine the Fourier series for the periodic function: f(x), when x +, when x which is periodic outside this rge of period.

Διαβάστε περισσότερα

Electromagnetic Waves I

Electromagnetic Waves I Electromgnetic Wves I Jnury, 03. Derivtion of wve eqution of string. Derivtion of EM wve Eqution in time domin 3. Derivtion of the EM wve Eqution in phsor domin 4. The complex propgtion constnt 5. The

Διαβάστε περισσότερα

Fourier Series. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics

Fourier Series. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics Fourier Series MATH 211, Calculus II J. Robert Buchanan Department of Mathematics Spring 2018 Introduction Not all functions can be represented by Taylor series. f (k) (c) A Taylor series f (x) = (x c)

Διαβάστε περισσότερα

ST5224: Advanced Statistical Theory II

ST5224: Advanced Statistical Theory II ST5224: Advanced Statistical Theory II 2014/2015: Semester II Tutorial 7 1. Let X be a sample from a population P and consider testing hypotheses H 0 : P = P 0 versus H 1 : P = P 1, where P j is a known

Διαβάστε περισσότερα

Some definite integrals connected with Gauss s sums

Some definite integrals connected with Gauss s sums Some definite integrls connected with Guss s sums Messenger of Mthemtics XLIV 95 75 85. If n is rel nd positive nd I(t where I(t is the imginry prt of t is less thn either n or we hve cos πtx coshπx e

Διαβάστε περισσότερα

Approximation of distance between locations on earth given by latitude and longitude

Approximation of distance between locations on earth given by latitude and longitude Approximation of distance between locations on earth given by latitude and longitude Jan Behrens 2012-12-31 In this paper we shall provide a method to approximate distances between two points on earth

Διαβάστε περισσότερα

forms This gives Remark 1. How to remember the above formulas: Substituting these into the equation we obtain with

forms This gives Remark 1. How to remember the above formulas: Substituting these into the equation we obtain with Week 03: C lassification of S econd- Order L inear Equations In last week s lectures we have illustrated how to obtain the general solutions of first order PDEs using the method of characteristics. We

Διαβάστε περισσότερα

b. Use the parametrization from (a) to compute the area of S a as S a ds. Be sure to substitute for ds!

b. Use the parametrization from (a) to compute the area of S a as S a ds. Be sure to substitute for ds! MTH U341 urface Integrals, tokes theorem, the divergence theorem To be turned in Wed., Dec. 1. 1. Let be the sphere of radius a, x 2 + y 2 + z 2 a 2. a. Use spherical coordinates (with ρ a) to parametrize.

Διαβάστε περισσότερα

SOLUTIONS TO PROBLEMS IN LIE ALGEBRAS IN PARTICLE PHYSICS BY HOWARD GEORGI STEPHEN HANCOCK

SOLUTIONS TO PROBLEMS IN LIE ALGEBRAS IN PARTICLE PHYSICS BY HOWARD GEORGI STEPHEN HANCOCK SOLUTIONS TO PROBLEMS IN LIE ALGEBRAS IN PARTICLE PHYSICS BY HOWARD GEORGI STEPHEN HANCOCK STEPHEN HANCOCK Chpter 6 Solutions 6.A. Clerly NE α+β hs root vector α+β since H i NE α+β = NH i E α+β = N(α+β)

Διαβάστε περισσότερα

Inverse trigonometric functions & General Solution of Trigonometric Equations. ------------------ ----------------------------- -----------------

Inverse trigonometric functions & General Solution of Trigonometric Equations. ------------------ ----------------------------- ----------------- Inverse trigonometric functions & General Solution of Trigonometric Equations. 1. Sin ( ) = a) b) c) d) Ans b. Solution : Method 1. Ans a: 17 > 1 a) is rejected. w.k.t Sin ( sin ) = d is rejected. If sin

Διαβάστε περισσότερα

derivation of the Laplacian from rectangular to spherical coordinates

derivation of the Laplacian from rectangular to spherical coordinates derivation of the Laplacian from rectangular to spherical coordinates swapnizzle 03-03- :5:43 We begin by recognizing the familiar conversion from rectangular to spherical coordinates (note that φ is used

Διαβάστε περισσότερα

Solution Series 9. i=1 x i and i=1 x i.

Solution Series 9. i=1 x i and i=1 x i. Lecturer: Prof. Dr. Mete SONER Coordinator: Yilin WANG Solution Series 9 Q1. Let α, β >, the p.d.f. of a beta distribution with parameters α and β is { Γ(α+β) Γ(α)Γ(β) f(x α, β) xα 1 (1 x) β 1 for < x

Διαβάστε περισσότερα

Second Order Partial Differential Equations

Second Order Partial Differential Equations Chapter 7 Second Order Partial Differential Equations 7.1 Introduction A second order linear PDE in two independent variables (x, y Ω can be written as A(x, y u x + B(x, y u xy + C(x, y u u u + D(x, y

Διαβάστε περισσότερα

MathCity.org Merging man and maths

MathCity.org Merging man and maths MathCity.org Merging man and maths Exercise 10. (s) Page Textbook of Algebra and Trigonometry for Class XI Available online @, Version:.0 Question # 1 Find the values of sin, and tan when: 1 π (i) (ii)

Διαβάστε περισσότερα

SCHOOL OF MATHEMATICAL SCIENCES G11LMA Linear Mathematics Examination Solutions

SCHOOL OF MATHEMATICAL SCIENCES G11LMA Linear Mathematics Examination Solutions SCHOOL OF MATHEMATICAL SCIENCES GLMA Linear Mathematics 00- Examination Solutions. (a) i. ( + 5i)( i) = (6 + 5) + (5 )i = + i. Real part is, imaginary part is. (b) ii. + 5i i ( + 5i)( + i) = ( i)( + i)

Διαβάστε περισσότερα

Homework 8 Model Solution Section

Homework 8 Model Solution Section MATH 004 Homework Solution Homework 8 Model Solution Section 14.5 14.6. 14.5. Use the Chain Rule to find dz where z cosx + 4y), x 5t 4, y 1 t. dz dx + dy y sinx + 4y)0t + 4) sinx + 4y) 1t ) 0t + 4t ) sinx

Διαβάστε περισσότερα

Concrete Mathematics Exercises from 30 September 2016

Concrete Mathematics Exercises from 30 September 2016 Concrete Mathematics Exercises from 30 September 2016 Silvio Capobianco Exercise 1.7 Let H(n) = J(n + 1) J(n). Equation (1.8) tells us that H(2n) = 2, and H(2n+1) = J(2n+2) J(2n+1) = (2J(n+1) 1) (2J(n)+1)

Διαβάστε περισσότερα

Exercises 10. Find a fundamental matrix of the given system of equations. Also find the fundamental matrix Φ(t) satisfying Φ(0) = I. 1.

Exercises 10. Find a fundamental matrix of the given system of equations. Also find the fundamental matrix Φ(t) satisfying Φ(0) = I. 1. Exercises 0 More exercises are available in Elementary Differential Equations. If you have a problem to solve any of them, feel free to come to office hour. Problem Find a fundamental matrix of the given

Διαβάστε περισσότερα

CRASH COURSE IN PRECALCULUS

CRASH COURSE IN PRECALCULUS CRASH COURSE IN PRECALCULUS Shiah-Sen Wang The graphs are prepared by Chien-Lun Lai Based on : Precalculus: Mathematics for Calculus by J. Stuwart, L. Redin & S. Watson, 6th edition, 01, Brooks/Cole Chapter

Διαβάστε περισσότερα

Section 9.2 Polar Equations and Graphs

Section 9.2 Polar Equations and Graphs 180 Section 9. Polar Equations and Graphs In this section, we will be graphing polar equations on a polar grid. In the first few examples, we will write the polar equation in rectangular form to help identify

Διαβάστε περισσότερα

HOMEWORK 4 = G. In order to plot the stress versus the stretch we define a normalized stretch:

HOMEWORK 4 = G. In order to plot the stress versus the stretch we define a normalized stretch: HOMEWORK 4 Problem a For the fast loading case, we want to derive the relationship between P zz and λ z. We know that the nominal stress is expressed as: P zz = ψ λ z where λ z = λ λ z. Therefore, applying

Διαβάστε περισσότερα

Jesse Maassen and Mark Lundstrom Purdue University November 25, 2013

Jesse Maassen and Mark Lundstrom Purdue University November 25, 2013 Notes on Average Scattering imes and Hall Factors Jesse Maassen and Mar Lundstrom Purdue University November 5, 13 I. Introduction 1 II. Solution of the BE 1 III. Exercises: Woring out average scattering

Διαβάστε περισσότερα

Matrices and Determinants

Matrices and Determinants Matrices and Determinants SUBJECTIVE PROBLEMS: Q 1. For what value of k do the following system of equations possess a non-trivial (i.e., not all zero) solution over the set of rationals Q? x + ky + 3z

Διαβάστε περισσότερα

Variational Wavefunction for the Helium Atom

Variational Wavefunction for the Helium Atom Technische Universität Graz Institut für Festkörperphysik Student project Variational Wavefunction for the Helium Atom Molecular and Solid State Physics 53. submitted on: 3. November 9 by: Markus Krammer

Διαβάστε περισσότερα

Solutions to Exercise Sheet 5

Solutions to Exercise Sheet 5 Solutions to Eercise Sheet 5 jacques@ucsd.edu. Let X and Y be random variables with joint pdf f(, y) = 3y( + y) where and y. Determine each of the following probabilities. Solutions. a. P (X ). b. P (X

Διαβάστε περισσότερα

PARTIAL NOTES for 6.1 Trigonometric Identities

PARTIAL NOTES for 6.1 Trigonometric Identities PARTIAL NOTES for 6.1 Trigonometric Identities tanθ = sinθ cosθ cotθ = cosθ sinθ BASIC IDENTITIES cscθ = 1 sinθ secθ = 1 cosθ cotθ = 1 tanθ PYTHAGOREAN IDENTITIES sin θ + cos θ =1 tan θ +1= sec θ 1 + cot

Διαβάστε περισσότερα

6.3 Forecasting ARMA processes

6.3 Forecasting ARMA processes 122 CHAPTER 6. ARMA MODELS 6.3 Forecasting ARMA processes The purpose of forecasting is to predict future values of a TS based on the data collected to the present. In this section we will discuss a linear

Διαβάστε περισσότερα

Notes on the Open Economy

Notes on the Open Economy Notes on the Open Econom Ben J. Heijdra Universit of Groningen April 24 Introduction In this note we stud the two-countr model of Table.4 in more detail. restated here for convenience. The model is Table.4.

Διαβάστε περισσότερα

Pg The perimeter is P = 3x The area of a triangle is. where b is the base, h is the height. In our case b = x, then the area is

Pg The perimeter is P = 3x The area of a triangle is. where b is the base, h is the height. In our case b = x, then the area is Pg. 9. The perimeter is P = The area of a triangle is A = bh where b is the base, h is the height 0 h= btan 60 = b = b In our case b =, then the area is A = = 0. By Pythagorean theorem a + a = d a a =

Διαβάστε περισσότερα

ANSWERSHEET (TOPIC = DIFFERENTIAL CALCULUS) COLLECTION #2. h 0 h h 0 h h 0 ( ) g k = g 0 + g 1 + g g 2009 =?

ANSWERSHEET (TOPIC = DIFFERENTIAL CALCULUS) COLLECTION #2. h 0 h h 0 h h 0 ( ) g k = g 0 + g 1 + g g 2009 =? Teko Classes IITJEE/AIEEE Maths by SUHAAG SIR, Bhopal, Ph (0755) 3 00 000 www.tekoclasses.com ANSWERSHEET (TOPIC DIFFERENTIAL CALCULUS) COLLECTION # Question Type A.Single Correct Type Q. (A) Sol least

Διαβάστε περισσότερα

The Simply Typed Lambda Calculus

The Simply Typed Lambda Calculus Type Inference Instead of writing type annotations, can we use an algorithm to infer what the type annotations should be? That depends on the type system. For simple type systems the answer is yes, and

Διαβάστε περισσότερα

Econ 2110: Fall 2008 Suggested Solutions to Problem Set 8 questions or comments to Dan Fetter 1

Econ 2110: Fall 2008 Suggested Solutions to Problem Set 8  questions or comments to Dan Fetter 1 Eon : Fall 8 Suggested Solutions to Problem Set 8 Email questions or omments to Dan Fetter Problem. Let X be a salar with density f(x, θ) (θx + θ) [ x ] with θ. (a) Find the most powerful level α test

Διαβάστε περισσότερα

Second Order RLC Filters

Second Order RLC Filters ECEN 60 Circuits/Electronics Spring 007-0-07 P. Mathys Second Order RLC Filters RLC Lowpass Filter A passive RLC lowpass filter (LPF) circuit is shown in the following schematic. R L C v O (t) Using phasor

Διαβάστε περισσότερα

Trigonometric Formula Sheet

Trigonometric Formula Sheet Trigonometric Formula Sheet Definition of the Trig Functions Right Triangle Definition Assume that: 0 < θ < or 0 < θ < 90 Unit Circle Definition Assume θ can be any angle. y x, y hypotenuse opposite θ

Διαβάστε περισσότερα

Other Test Constructions: Likelihood Ratio & Bayes Tests

Other Test Constructions: Likelihood Ratio & Bayes Tests Other Test Constructions: Likelihood Ratio & Bayes Tests Side-Note: So far we have seen a few approaches for creating tests such as Neyman-Pearson Lemma ( most powerful tests of H 0 : θ = θ 0 vs H 1 :

Διαβάστε περισσότερα

6.1. Dirac Equation. Hamiltonian. Dirac Eq.

6.1. Dirac Equation. Hamiltonian. Dirac Eq. 6.1. Dirac Equation Ref: M.Kaku, Quantum Field Theory, Oxford Univ Press (1993) η μν = η μν = diag(1, -1, -1, -1) p 0 = p 0 p = p i = -p i p μ p μ = p 0 p 0 + p i p i = E c 2 - p 2 = (m c) 2 H = c p 2

Διαβάστε περισσότερα

Ordinal Arithmetic: Addition, Multiplication, Exponentiation and Limit

Ordinal Arithmetic: Addition, Multiplication, Exponentiation and Limit Ordinal Arithmetic: Addition, Multiplication, Exponentiation and Limit Ting Zhang Stanford May 11, 2001 Stanford, 5/11/2001 1 Outline Ordinal Classification Ordinal Addition Ordinal Multiplication Ordinal

Διαβάστε περισσότερα

CHAPTER (2) Electric Charges, Electric Charge Densities and Electric Field Intensity

CHAPTER (2) Electric Charges, Electric Charge Densities and Electric Field Intensity CHAPTE () Electric Chrges, Electric Chrge Densities nd Electric Field Intensity Chrge Configurtion ) Point Chrge: The concept of the point chrge is used when the dimensions of n electric chrge distriution

Διαβάστε περισσότερα

Notes on Tobin s. Liquidity Preference as Behavior toward Risk

Notes on Tobin s. Liquidity Preference as Behavior toward Risk otes on Tobin s Liquidity Preference s Behvior towrd Risk By Richrd McMinn Revised June 987 Revised subsequently Tobin (Tobin 958 considers portfolio model in which there is one sfe nd one risky sset.

Διαβάστε περισσότερα

9.09. # 1. Area inside the oval limaçon r = cos θ. To graph, start with θ = 0 so r = 6. Compute dr

9.09. # 1. Area inside the oval limaçon r = cos θ. To graph, start with θ = 0 so r = 6. Compute dr 9.9 #. Area inside the oval limaçon r = + cos. To graph, start with = so r =. Compute d = sin. Interesting points are where d vanishes, or at =,,, etc. For these values of we compute r:,,, and the values

Διαβάστε περισσότερα

Orbital angular momentum and the spherical harmonics

Orbital angular momentum and the spherical harmonics Orbital angular momentum and the spherical harmonics March 8, 03 Orbital angular momentum We compare our result on representations of rotations with our previous experience of angular momentum, defined

Διαβάστε περισσότερα

Nowhere-zero flows Let be a digraph, Abelian group. A Γ-circulation in is a mapping : such that, where, and : tail in X, head in

Nowhere-zero flows Let be a digraph, Abelian group. A Γ-circulation in is a mapping : such that, where, and : tail in X, head in Nowhere-zero flows Let be a digraph, Abelian group. A Γ-circulation in is a mapping : such that, where, and : tail in X, head in : tail in X, head in A nowhere-zero Γ-flow is a Γ-circulation such that

Διαβάστε περισσότερα

k A = [k, k]( )[a 1, a 2 ] = [ka 1,ka 2 ] 4For the division of two intervals of confidence in R +

k A = [k, k]( )[a 1, a 2 ] = [ka 1,ka 2 ] 4For the division of two intervals of confidence in R + Chapter 3. Fuzzy Arithmetic 3- Fuzzy arithmetic: ~Addition(+) and subtraction (-): Let A = [a and B = [b, b in R If x [a and y [b, b than x+y [a +b +b Symbolically,we write A(+)B = [a (+)[b, b = [a +b

Διαβάστε περισσότερα

Problem Set 9 Solutions. θ + 1. θ 2 + cotθ ( ) sinθ e iφ is an eigenfunction of the ˆ L 2 operator. / θ 2. φ 2. sin 2 θ φ 2. ( ) = e iφ. = e iφ cosθ.

Problem Set 9 Solutions. θ + 1. θ 2 + cotθ ( ) sinθ e iφ is an eigenfunction of the ˆ L 2 operator. / θ 2. φ 2. sin 2 θ φ 2. ( ) = e iφ. = e iφ cosθ. Chemistry 362 Dr Jean M Standard Problem Set 9 Solutions The ˆ L 2 operator is defined as Verify that the angular wavefunction Y θ,φ) Also verify that the eigenvalue is given by 2! 2 & L ˆ 2! 2 2 θ 2 +

Διαβάστε περισσότερα

Lecture 2. Soundness and completeness of propositional logic

Lecture 2. Soundness and completeness of propositional logic Lecture 2 Soundness and completeness of propositional logic February 9, 2004 1 Overview Review of natural deduction. Soundness and completeness. Semantics of propositional formulas. Soundness proof. Completeness

Διαβάστε περισσότερα

Self and Mutual Inductances for Fundamental Harmonic in Synchronous Machine with Round Rotor (Cont.) Double Layer Lap Winding on Stator

Self and Mutual Inductances for Fundamental Harmonic in Synchronous Machine with Round Rotor (Cont.) Double Layer Lap Winding on Stator Sel nd Mutul Inductnces or Fundmentl Hrmonc n Synchronous Mchne wth Round Rotor (Cont.) Double yer p Wndng on Sttor Round Rotor Feld Wndng (1) d xs s r n even r Dene S r s the number o rotor slots. Dene

Διαβάστε περισσότερα

Uniform Convergence of Fourier Series Michael Taylor

Uniform Convergence of Fourier Series Michael Taylor Uniform Convergence of Fourier Series Michael Taylor Given f L 1 T 1 ), we consider the partial sums of the Fourier series of f: N 1) S N fθ) = ˆfk)e ikθ. k= N A calculation gives the Dirichlet formula

Διαβάστε περισσότερα

Section 7.7 Product-to-Sum and Sum-to-Product Formulas

Section 7.7 Product-to-Sum and Sum-to-Product Formulas Section 7.7 Product-to-Sum and Sum-to-Product Fmulas Objective 1: Express Products as Sums To derive the Product-to-Sum Fmulas will begin by writing down the difference and sum fmulas of the cosine function:

Διαβάστε περισσότερα

MATH423 String Theory Solutions 4. = 0 τ = f(s). (1) dτ ds = dxµ dτ f (s) (2) dτ 2 [f (s)] 2 + dxµ. dτ f (s) (3)

MATH423 String Theory Solutions 4. = 0 τ = f(s). (1) dτ ds = dxµ dτ f (s) (2) dτ 2 [f (s)] 2 + dxµ. dτ f (s) (3) 1. MATH43 String Theory Solutions 4 x = 0 τ = fs). 1) = = f s) ) x = x [f s)] + f s) 3) equation of motion is x = 0 if an only if f s) = 0 i.e. fs) = As + B with A, B constants. i.e. allowe reparametrisations

Διαβάστε περισσότερα

1. For each of the following power series, find the interval of convergence and the radius of convergence:

1. For each of the following power series, find the interval of convergence and the radius of convergence: Math 6 Practice Problems Solutios Power Series ad Taylor Series 1. For each of the followig power series, fid the iterval of covergece ad the radius of covergece: (a ( 1 x Notice that = ( 1 +1 ( x +1.

Διαβάστε περισσότερα

Statistical Inference I Locally most powerful tests

Statistical Inference I Locally most powerful tests Statistical Inference I Locally most powerful tests Shirsendu Mukherjee Department of Statistics, Asutosh College, Kolkata, India. shirsendu st@yahoo.co.in So far we have treated the testing of one-sided

Διαβάστε περισσότερα

Parametrized Surfaces

Parametrized Surfaces Parametrized Surfaces Recall from our unit on vector-valued functions at the beginning of the semester that an R 3 -valued function c(t) in one parameter is a mapping of the form c : I R 3 where I is some

Διαβάστε περισσότερα

w o = R 1 p. (1) R = p =. = 1

w o = R 1 p. (1) R = p =. = 1 Πανεπιστήµιο Κρήτης - Τµήµα Επιστήµης Υπολογιστών ΗΥ-570: Στατιστική Επεξεργασία Σήµατος 205 ιδάσκων : Α. Μουχτάρης Τριτη Σειρά Ασκήσεων Λύσεις Ασκηση 3. 5.2 (a) From the Wiener-Hopf equation we have:

Διαβάστε περισσότερα

If ABC is any oblique triangle with sides a, b, and c, the following equations are valid. 2bc. (a) a 2 b 2 c 2 2bc cos A or cos A b2 c 2 a 2.

If ABC is any oblique triangle with sides a, b, and c, the following equations are valid. 2bc. (a) a 2 b 2 c 2 2bc cos A or cos A b2 c 2 a 2. etion 6. Lw of osines 59 etion 6. Lw of osines If is ny oblique tringle with sides, b, nd, the following equtions re vlid. () b b os or os b b (b) b os or os b () b b os or os b b You should be ble to

Διαβάστε περισσότερα

1 String with massive end-points

1 String with massive end-points 1 String with massive end-points Πρόβλημα 5.11:Θεωρείστε μια χορδή μήκους, τάσης T, με δύο σημειακά σωματίδια στα άκρα της, το ένα μάζας m, και το άλλο μάζας m. α) Μελετώντας την κίνηση των άκρων βρείτε

Διαβάστε περισσότερα

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required)

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required) Phys460.nb 81 ψ n (t) is still the (same) eigenstate of H But for tdependent H. The answer is NO. 5.5.5. Solution for the tdependent Schrodinger s equation If we assume that at time t 0, the electron starts

Διαβάστε περισσότερα

Math 6 SL Probability Distributions Practice Test Mark Scheme

Math 6 SL Probability Distributions Practice Test Mark Scheme Math 6 SL Probability Distributions Practice Test Mark Scheme. (a) Note: Award A for vertical line to right of mean, A for shading to right of their vertical line. AA N (b) evidence of recognizing symmetry

Διαβάστε περισσότερα

Solution to Review Problems for Midterm III

Solution to Review Problems for Midterm III Solution to Review Problems for Mierm III Mierm III: Friday, November 19 in class Topics:.8-.11, 4.1,4. 1. Find the derivative of the following functions and simplify your answers. (a) x(ln(4x)) +ln(5

Διαβάστε περισσότερα

Every set of first-order formulas is equivalent to an independent set

Every set of first-order formulas is equivalent to an independent set Every set of first-order formulas is equivalent to an independent set May 6, 2008 Abstract A set of first-order formulas, whatever the cardinality of the set of symbols, is equivalent to an independent

Διαβάστε περισσότερα

Written Examination. Antennas and Propagation (AA ) April 26, 2017.

Written Examination. Antennas and Propagation (AA ) April 26, 2017. Written Examination Antennas and Propagation (AA. 6-7) April 6, 7. Problem ( points) Let us consider a wire antenna as in Fig. characterized by a z-oriented linear filamentary current I(z) = I cos(kz)ẑ

Διαβάστε περισσότερα

Review Test 3. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

Review Test 3. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Review Test MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Find the exact value of the expression. 1) sin - 11π 1 1) + - + - - ) sin 11π 1 ) ( -

Διαβάστε περισσότερα

Probability theory STATISTICAL METHODS FOR SAFETY ANALYSIS FMS065 TABLE OF FORMULÆ (2016) Basic probability theory. One-dimensional random variables

Probability theory STATISTICAL METHODS FOR SAFETY ANALYSIS FMS065 TABLE OF FORMULÆ (2016) Basic probability theory. One-dimensional random variables Lund University Centre for Mthemticl Sciences Mthemticl Sttistics STATISTICAL METHODS FOR SAFETY ANALYSIS FMS065 TABLE OF FORMULÆ (06) Probbility theory Bsic probbility theory Let S be smple spce, nd let

Διαβάστε περισσότερα

4.6 Autoregressive Moving Average Model ARMA(1,1)

4.6 Autoregressive Moving Average Model ARMA(1,1) 84 CHAPTER 4. STATIONARY TS MODELS 4.6 Autoregressive Moving Average Model ARMA(,) This section is an introduction to a wide class of models ARMA(p,q) which we will consider in more detail later in this

Διαβάστε περισσότερα

Περιβαλλοντική Βιοτεχνολογία- Environmental Biotechnology

Περιβαλλοντική Βιοτεχνολογία- Environmental Biotechnology Περιβαλλοντική Βιοτεχνολογία- Environmentl Biotechnology Ενότητα 4: Rectors Κορνάρος Μιχαήλ Πολυτεχνική Σχολή Τμήμα Χημικών Μηχανικών Types of rectors Suspended-floc Dispersed growth Fixed-film Attched

Διαβάστε περισσότερα

Tridiagonal matrices. Gérard MEURANT. October, 2008

Tridiagonal matrices. Gérard MEURANT. October, 2008 Tridiagonal matrices Gérard MEURANT October, 2008 1 Similarity 2 Cholesy factorizations 3 Eigenvalues 4 Inverse Similarity Let α 1 ω 1 β 1 α 2 ω 2 T =......... β 2 α 1 ω 1 β 1 α and β i ω i, i = 1,...,

Διαβάστε περισσότερα

Econ Spring 2004 Instructor: Prof. Kiefer Solution to Problem set # 5. γ (0)

Econ Spring 2004 Instructor: Prof. Kiefer Solution to Problem set # 5. γ (0) Cornell University Department of Economics Econ 60 - Spring 004 Instructor: Prof. Kiefer Solution to Problem set # 5. Autocorrelation function is defined as ρ h = γ h γ 0 where γ h =Cov X t,x t h =E[X

Διαβάστε περισσότερα

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0.

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0. DESIGN OF MACHINERY SOLUTION MANUAL -7-1! PROBLEM -7 Statement: Design a double-dwell cam to move a follower from to 25 6, dwell for 12, fall 25 and dwell for the remader The total cycle must take 4 sec

Διαβάστε περισσότερα

DiracDelta. Notations. Primary definition. Specific values. General characteristics. Traditional name. Traditional notation

DiracDelta. Notations. Primary definition. Specific values. General characteristics. Traditional name. Traditional notation DiracDelta Notations Traditional name Dirac delta function Traditional notation x Mathematica StandardForm notation DiracDeltax Primary definition 4.03.02.000.0 x Π lim ε ; x ε0 x 2 2 ε Specific values

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 19/5/2007

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 19/5/2007 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Αν κάπου κάνετε κάποιες υποθέσεις να αναφερθούν στη σχετική ερώτηση. Όλα τα αρχεία που αναφέρονται στα προβλήματα βρίσκονται στον ίδιο φάκελο με το εκτελέσιμο

Διαβάστε περισσότερα

Numerical Analysis FMN011

Numerical Analysis FMN011 Numerical Analysis FMN011 Carmen Arévalo Lund University carmen@maths.lth.se Lecture 12 Periodic data A function g has period P if g(x + P ) = g(x) Model: Trigonometric polynomial of order M T M (x) =

Διαβάστε περισσότερα

Lecture 2: Dirac notation and a review of linear algebra Read Sakurai chapter 1, Baym chatper 3

Lecture 2: Dirac notation and a review of linear algebra Read Sakurai chapter 1, Baym chatper 3 Lecture 2: Dirac notation and a review of linear algebra Read Sakurai chapter 1, Baym chatper 3 1 State vector space and the dual space Space of wavefunctions The space of wavefunctions is the set of all

Διαβάστε περισσότερα