MATH ASSIGNMENT 06 SOLUTIONS

Size: px
Start display at page:

Download "MATH ASSIGNMENT 06 SOLUTIONS"

Transcription

1 MATH ASSIGNMENT 06 SOLUTIONS 7.14 Find the polynomial of degree 10 that best fits the function b(t) = cos(4t) at 50 equally spaced points t between 0 and 1. Set up the matrix A and right-hand side vector b and determine the polynomial coefficients in two different ways: (a) By using the Matlab command x = A\b (which uses a QR decomposition). (b) By solving the normal equations A T Ax = A T b. This can be done in Matlab by typing x = (A *A)\(A *b). Print the results to 16 digits (using format long e) and comment on the diffferences you see. [Note you can compute the condition number of A or of A T A using the Matlab function cond.] Solution. The following Matlab code can be used to complete the exercise: t = linspace(0, 1, 50).'; A = vander(t); A = A(:,end-10:end); b = cos(4*t); xqr = A\b; xne = (A'*A)\(A'*b); format long e table(xqr, xne, 'Var', {'xqr', 'xne'}) % Display the relative difference in the coefficients table(abs(xqr-xne)./abs(xqr), 'Var', {'RelDiff'}) The above generates the followinng output: ans = xqr e e e e e e e e e e e+00 xne e e e e e e e e e e e+00 1

2 ans = RelDiff e e e e e e e e e e e-09 The difference between coefficients is explained by the squaring of the condition number of A when solving the normal equations. Once squared, the condition of A is so large as to ensure that one can only expect about two correct digits in the solution to the normal equations In the inclined plane experiment of Galileo, described in Example 7.6.2, if one knows the horizontal speed v of the ball when it leaves the table and enters free fall, then one can determine the time T that it takes for the ball to fall to the ground due to the force of gravity and therefore the horizontal distance vt that it travels before hitting the ground. Assume that the acceleration of the ball on the inclined plane is constant in the direction of the incline: a(t) = C, where C will depend on gravity and on the angle of the inclined plane. Then the velocity v(t) will be proportional to t: v(t) = Ct, since v(0) = 0. The distance s(t) that the ball has moved along the inclined plane is therefore s(t) = 1 2 Ct2, since s(0) = 0. The ball reaches the bottom of the inclined plane when s(t) = h/ sin(θ), where θ is the angle of incline. (a) Write down an expression in terms of C, h, and θ for the time t h at which the ball reaches the bottom of the inclined plane and for its velocity v(t h ) at that time. Show that the velocity is proportional to h. Solution. As noted above, the ball reaches the bottom of the inclined plane when s(t) = h, which implies that t sin(θ) h is a solution to A little algebra establishes that 1 2 Ct2 = h sin(θ). t h = 2 h C sin(θ) 2

3 and thus the velocity at t h is given by 2 2 v(t h ) = C h = h C sin(θ) sin(θ) which is proportional to h. (b) Upon hitting the table, the ball is deflected so that what was its velocity along the incline now becomes its horizontal velocity as it flies off the table. From this observation and part (a), one would expect Galileo s measured distances to be proportional to h. Modify the Matlab code in Example to do a least squares fit of the given distances d in table 7.5 to a function of the form c 0 + c 1 h. Determine the best coefficients c0 and c 1 and the residual norm 4 i=1 (d i (c 0 + c 1 h))2. Solution. The following Matlab code can be used to complete this exercise: % Set up data h = [0.282; 0.564; 0.752; 0.940]; d = [0.752; 1.102; 1.248; 1.410]; % Form the 4-by-2 matrix A and solve for the coefficient vector c. A = zeros(size(h,1), 2); A(:,1) = sqrt(h); A(:,2) = 1; c = A\d % Plot the data points. plot(h, d, 'b*'); title('least Squares Fit'); xlabel('release Height'); ylabel('horizontal Distance'); % Plot the best fit function of the form f(x) = c(1)*sqrt(h) + c(2) pts = linspace(min(h), max(h), 101); f c(1)*sqrt(x)+c(2); hold on; plot(pts, f(pts), 'r'); axis tight; hold off % Compute residual resid = norm(d - f(h)) The following output is generated: c = resid =

4 The following plot is generated: 7.16 Consider the following least squares approach for ranking sports teams. Suppose we have four college football teams, called simply T1, T2, T3, and T4. These four teams play each other with the following outcomes: T1 beats T2 by 4 points: 21 to 17. T3 beats T1 by 9 points: 27 to 18. T1 beats T4 by 6 points: 16 to 10. T3 beats T4 by 3 points: 10 to 7. T2 beats T4 by 7 points: 17 to 10. To determine ranking points r 1,..., r 4 for each team, we do a least squares fit to the overdetermined linear system: r 1 r 2 = 4 r 3 r 1 = 9 r 1 r 4 = 6 r 3 r 4 = 3 r 2 r 4 = 7. 4

5 This system does not have a unique least squares solution, however, since if (r 1,..., r 4 ) T is one solution and we add to it any constant vector, such as the vector (1, 1, 1, 1) T, then we obtain another vector for which the residual is exactly the same. Show that if (r 1,..., r 4 ) T solves the least squares problem above then so does (r 1 +c,..., r 4 +c) T for any constant c. To make the solution unique, we can fix the total number of ranking points, say, at 20. To do this, we add the following equation to those listed above: r 1 + r 2 + r 3 + r 4 = 20. Note that this equation will be satisfied exactly since it will not affect how well the other equalities can be approximated. Use Matlab to determine the values r 1, r 2, r 3, r 4 that most closely satisfy these equations, and based on your results, rank the four teams. Solution. The system generated by the ranking problem has coefficient matrix A given by A = With e being the vector of all ones, note that Ae = = Therefore, for any r and any constant c we have that b A(r + ce) = b Ar cae = b Ar. That is, if r solves the least squares poblem, r + ce also solves the least squares problem for any choice of constant c. We can therefore impose the constraint that r 1 + r 2 + r 3 + r 4 = K for some choice of K, say K = 20. The least squares problem to solve, then, is min b Ar A = The following Matlab code solves this problem: b = A = zeros(6,4); b = zeros(6,1); 5

6 % T1 beats T2 by 4 A(1, [1 2]) = [1-1]; b(1) = 4; % T3 beats T1 by 9 A(2, [3 1]) = [1-1]; b(2) = 9; % T1 beats T4 by 6 A(3, [1 4]) = [1-1]; b(3) = 6; % T3 beats T4 by 3 A(4, [3 4]) = [1-1]; b(4) = 3; % T2 beats T4 by 7 A(5, [2 4]) = [1-1]; b(5) = 7; % Fix number of ranking points at 20. A(6, :) = 1; b(6) = 20; r = A\b And it generates this output: r = Based on these results, we arrive at the ranking T3, T1, T2, T4. (2) Let u, v be two n-vectors and let P = uv T. (a) Under what conditions is P a projector? Solution. P is a projector if P 2 = P. That is, uv T uv = uv T must be the case. This occurs when v T u = 1. (b) Under what conditions is P an orthogonal projector? Solution. In order for P to be an orthogonal projector, P T = P must be the case. This occurs only when v = u and u T u = 1. (3) Let P be a nonzero projector. Show that P 2 1 with equality if and only if P is an orthogonal projector. Solution. Whenever P is a projector, it follows that whenever y col(p ), y = P y and so P y 2 = y 2 and thus P 2 = max y 0 P y 2 y 2 1. Now, suppose that P 2 = 1. We must show that this implies that P is orthogonal. Recall that the definition of orthogonal projector is that null(p ) = col(p ). So, let x null(p ) and let y = P x x. As P is a projector, P y = P x P x = 0 and so y null(p ). As a result, x T y = 0 and so x + y 2 2 = x y

7 Now then x 2 2 x y 2 2 = x + y 2 2 = P x 2 2 x 2 2. It follows, then that y = 0 and so P x = x and thus x col(p ). We have established that null(p ) col(p ). On the other hand, let z col(p ) so that P z = z. Also, let x null(p ) and y null(p ) such that z = x + y. Thus P z = P x + P y = P y = y with the last equality following from the fact that null(p ) col(p ). As z = y, it follows that col(p ) null(p ) and so null(p ) = col(p ). Therefore, P is an orthogonal projector. Now, when P is orthogonal, P x 2 2 = x T P T P x = x T P x x 2 P x 2 by Cauchy-Schwarz. It follows then, for all x, P x 2 x 2 and so P 2 1. Since for any projector P 2 1, it follows that P 2 = 1 whenever P is an orthogonal projector. 7

Applied Linear Algebra in Geoscience Using MATLAB

Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots Programming in

More information

MATH 235: Inner Product Spaces, Assignment 7

MATH 235: Inner Product Spaces, Assignment 7 MATH 235: Inner Product Spaces, Assignment 7 Hand in questions 3,4,5,6,9, by 9:3 am on Wednesday March 26, 28. Contents Orthogonal Basis for Inner Product Space 2 2 Inner-Product Function Space 2 3 Weighted

More information

Applied Linear Algebra in Geoscience Using MATLAB

Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots Programming in

More information

LAB 2: Orthogonal Projections, the Four Fundamental Subspaces, QR Factorization, and Inconsistent Linear Systems

LAB 2: Orthogonal Projections, the Four Fundamental Subspaces, QR Factorization, and Inconsistent Linear Systems Math 550A MATLAB Assignment #2 1 Revised 8/14/10 LAB 2: Orthogonal Projections, the Four Fundamental Subspaces, QR Factorization, and Inconsistent Linear Systems In this lab you will use Matlab to study

More information

Functional Analysis Review

Functional Analysis Review Outline 9.520: Statistical Learning Theory and Applications February 8, 2010 Outline 1 2 3 4 Vector Space Outline A vector space is a set V with binary operations +: V V V and : R V V such that for all

More information

v v y = v sinθ Component Vectors:

v v y = v sinθ Component Vectors: Component Vectors: Recall that in order to simplify vector calculations we change a complex vector into two simple horizontal (x) and vertical (y) vectors v v y = v sinθ v x = v cosθ 1 Component Vectors:

More information

Math 307: Problems for section 3.1

Math 307: Problems for section 3.1 Math 307: Problems for section 3.. Show that if P is an orthogonal projection matrix, then P x x for every x. Use this inequality to prove the Cauchy Schwarz inequality x y x y. If P is an orthogonal projection

More information

Numerical Methods. Elena loli Piccolomini. Civil Engeneering. piccolom. Metodi Numerici M p. 1/??

Numerical Methods. Elena loli Piccolomini. Civil Engeneering.  piccolom. Metodi Numerici M p. 1/?? Metodi Numerici M p. 1/?? Numerical Methods Elena loli Piccolomini Civil Engeneering http://www.dm.unibo.it/ piccolom elena.loli@unibo.it Metodi Numerici M p. 2/?? Least Squares Data Fitting Measurement

More information

Math 343 Lab 7: Line and Curve Fitting

Math 343 Lab 7: Line and Curve Fitting Objective Math 343 Lab 7: Line and Curve Fitting In this lab, we explore another use of linear algebra in statistics. Specifically, we discuss the notion of least squares as a way to fit lines and curves

More information

Projectile Motion. Chin- Sung Lin STEM GARAGE SCIENCE PHYSICS

Projectile Motion. Chin- Sung Lin STEM GARAGE SCIENCE PHYSICS Projectile Motion Chin- Sung Lin Introduction to Projectile Motion q What is Projectile Motion? q Trajectory of a Projectile q Calculation of Projectile Motion Introduction to Projectile Motion q What

More information

Chapter 3 Kinematics in Two Dimensions; Vectors

Chapter 3 Kinematics in Two Dimensions; Vectors Chapter 3 Kinematics in Two Dimensions; Vectors Vectors and Scalars Addition of Vectors Graphical Methods (One and Two- Dimension) Multiplication of a Vector by a Scalar Subtraction of Vectors Graphical

More information

Designing Information Devices and Systems I Spring 2018 Homework 5

Designing Information Devices and Systems I Spring 2018 Homework 5 EECS 16A Designing Information Devices and Systems I Spring 2018 Homework All problems on this homework are practice, however all concepts covered here are fair game for the exam. 1. Sports Rank Every

More information

Linear Algebra Massoud Malek

Linear Algebra Massoud Malek CSUEB Linear Algebra Massoud Malek Inner Product and Normed Space In all that follows, the n n identity matrix is denoted by I n, the n n zero matrix by Z n, and the zero vector by θ n An inner product

More information

May 9, 2014 MATH 408 MIDTERM EXAM OUTLINE. Sample Questions

May 9, 2014 MATH 408 MIDTERM EXAM OUTLINE. Sample Questions May 9, 24 MATH 48 MIDTERM EXAM OUTLINE This exam will consist of two parts and each part will have multipart questions. Each of the 6 questions is worth 5 points for a total of points. The two part of

More information

PH 1110 Summary Homework 1

PH 1110 Summary Homework 1 PH 111 Summary Homework 1 Name Section Number These exercises assess your readiness for Exam 1. Solutions will be available on line. 1a. During orientation a new student is given instructions for a treasure

More information

Properties of Linear Transformations from R n to R m

Properties of Linear Transformations from R n to R m Properties of Linear Transformations from R n to R m MATH 322, Linear Algebra I J. Robert Buchanan Department of Mathematics Spring 2015 Topic Overview Relationship between the properties of a matrix transformation

More information

3.2 Projectile Motion

3.2 Projectile Motion Motion in 2-D: Last class we were analyzing the distance in two-dimensional motion and revisited the concept of vectors, and unit-vector notation. We had our receiver run up the field then slant Northwest.

More information

Introduction to Matrix Algebra

Introduction to Matrix Algebra Introduction to Matrix Algebra August 18, 2010 1 Vectors 1.1 Notations A p-dimensional vector is p numbers put together. Written as x 1 x =. x p. When p = 1, this represents a point in the line. When p

More information

1 Cricket chirps: an example

1 Cricket chirps: an example Notes for 2016-09-26 1 Cricket chirps: an example Did you know that you can estimate the temperature by listening to the rate of chirps? The data set in Table 1 1. represents measurements of the number

More information

Applied Linear Algebra in Geoscience Using MATLAB

Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots Programming in

More information

General Physics I. Lecture 2: Motion in High Dimensions. Prof. WAN, Xin ( 万歆 )

General Physics I. Lecture 2: Motion in High Dimensions. Prof. WAN, Xin ( 万歆 ) General Physics I Lecture 2: Motion in High Dimensions Prof. WAN, Xin ( 万歆 ) xinwan@zju.edu.cn http://zimp.zju.edu.cn/~xinwan/ Motion in 2D at Discrete Time Do It the High School Way Along x direction,

More information

(Linear equations) Applied Linear Algebra in Geoscience Using MATLAB

(Linear equations) Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB (Linear equations) Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots

More information

Inner Product Spaces 6.1 Length and Dot Product in R n

Inner Product Spaces 6.1 Length and Dot Product in R n Inner Product Spaces 6.1 Length and Dot Product in R n Summer 2017 Goals We imitate the concept of length and angle between two vectors in R 2, R 3 to define the same in the n space R n. Main topics are:

More information

MATH Final Review

MATH Final Review MATH 1592 - Final Review 1 Chapter 7 1.1 Main Topics 1. Integration techniques: Fitting integrands to basic rules on page 485. Integration by parts, Theorem 7.1 on page 488. Guidelines for trigonometric

More information

Math 504 (Fall 2011) 1. (*) Consider the matrices

Math 504 (Fall 2011) 1. (*) Consider the matrices Math 504 (Fall 2011) Instructor: Emre Mengi Study Guide for Weeks 11-14 This homework concerns the following topics. Basic definitions and facts about eigenvalues and eigenvectors (Trefethen&Bau, Lecture

More information

Unit 1: Mechanical Equilibrium

Unit 1: Mechanical Equilibrium Unit 1: Mechanical Equilibrium Chapter: Two Mechanical Equilibrium Big Idea / Key Concepts Student Outcomes 2.1: Force 2.2: Mechanical Equilibrium 2.3: Support Force 2.4: Equilibrium for Moving Objects

More information

Ir O D = D = ( ) Section 2.6 Example 1. (Bottom of page 119) dim(v ) = dim(l(v, W )) = dim(v ) dim(f ) = dim(v )

Ir O D = D = ( ) Section 2.6 Example 1. (Bottom of page 119) dim(v ) = dim(l(v, W )) = dim(v ) dim(f ) = dim(v ) Section 3.2 Theorem 3.6. Let A be an m n matrix of rank r. Then r m, r n, and, by means of a finite number of elementary row and column operations, A can be transformed into the matrix ( ) Ir O D = 1 O

More information

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB (Mathematical Operations with Arrays) Contents Getting Started Matrices Creating Arrays Linear equations Mathematical Operations with Arrays Using Script

More information

Chapter 2 Physics in Action Sample Problem 1 A weightlifter uses a force of 325 N to lift a set of weights 2.00 m off the ground. How much work did th

Chapter 2 Physics in Action Sample Problem 1 A weightlifter uses a force of 325 N to lift a set of weights 2.00 m off the ground. How much work did th Chapter Physics in Action Sample Problem 1 A weightlifter uses a force of 35 N to lift a set of weights.00 m off the ground. How much work did the weightlifter do? Strategy: You can use the following equation

More information

Part 1a: Inner product, Orthogonality, Vector/Matrix norm

Part 1a: Inner product, Orthogonality, Vector/Matrix norm Part 1a: Inner product, Orthogonality, Vector/Matrix norm September 19, 2018 Numerical Linear Algebra Part 1a September 19, 2018 1 / 16 1. Inner product on a linear space V over the number field F A map,

More information

Preliminary Examination, Numerical Analysis, August 2016

Preliminary Examination, Numerical Analysis, August 2016 Preliminary Examination, Numerical Analysis, August 2016 Instructions: This exam is closed books and notes. The time allowed is three hours and you need to work on any three out of questions 1-4 and any

More information

ENGG5781 Matrix Analysis and Computations Lecture 8: QR Decomposition

ENGG5781 Matrix Analysis and Computations Lecture 8: QR Decomposition ENGG5781 Matrix Analysis and Computations Lecture 8: QR Decomposition Wing-Kin (Ken) Ma 2017 2018 Term 2 Department of Electronic Engineering The Chinese University of Hong Kong Lecture 8: QR Decomposition

More information

a k 0, then k + 1 = 2 lim 1 + 1

a k 0, then k + 1 = 2 lim 1 + 1 Math 7 - Midterm - Form A - Page From the desk of C. Davis Buenger. https://people.math.osu.edu/buenger.8/ Problem a) [3 pts] If lim a k = then a k converges. False: The divergence test states that if

More information

be a Householder matrix. Then prove the followings H = I 2 uut Hu = (I 2 uu u T u )u = u 2 uut u

be a Householder matrix. Then prove the followings H = I 2 uut Hu = (I 2 uu u T u )u = u 2 uut u MATH 434/534 Theoretical Assignment 7 Solution Chapter 7 (71) Let H = I 2uuT Hu = u (ii) Hv = v if = 0 be a Householder matrix Then prove the followings H = I 2 uut Hu = (I 2 uu )u = u 2 uut u = u 2u =

More information

Solution to Homework 8, Math 2568

Solution to Homework 8, Math 2568 Solution to Homework 8, Math 568 S 5.4: No. 0. Use property of heorem 5 to test for linear independence in P 3 for the following set of cubic polynomials S = { x 3 x, x x, x, x 3 }. Solution: If we use

More information

Orthonormal Bases; Gram-Schmidt Process; QR-Decomposition

Orthonormal Bases; Gram-Schmidt Process; QR-Decomposition Orthonormal Bases; Gram-Schmidt Process; QR-Decomposition MATH 322, Linear Algebra I J. Robert Buchanan Department of Mathematics Spring 205 Motivation When working with an inner product space, the most

More information

x+1 e 2t dt. h(x) := Find the equation of the tangent line to y = h(x) at x = 0.

x+1 e 2t dt. h(x) := Find the equation of the tangent line to y = h(x) at x = 0. Math Sample final problems Here are some problems that appeared on past Math exams. Note that you will be given a table of Z-scores for the standard normal distribution on the test. Don t forget to have

More information

Least squares: the big idea

Least squares: the big idea Notes for 2016-02-22 Least squares: the big idea Least squares problems are a special sort of minimization problem. Suppose A R m n where m > n. In general, we cannot solve the overdetermined system Ax

More information

Equations in Quadratic Form

Equations in Quadratic Form Equations in Quadratic Form MATH 101 College Algebra J. Robert Buchanan Department of Mathematics Summer 2012 Objectives In this lesson we will learn to: make substitutions that allow equations to be written

More information

Math 307 Learning Goals. March 23, 2010

Math 307 Learning Goals. March 23, 2010 Math 307 Learning Goals March 23, 2010 Course Description The course presents core concepts of linear algebra by focusing on applications in Science and Engineering. Examples of applications from recent

More information

Math 1314 Lesson 7 Applications of the Derivative

Math 1314 Lesson 7 Applications of the Derivative Math 1314 Lesson 7 Applications of the Derivative Recall from Lesson 6 that the derivative gives a formula for finding the slope of the tangent line to a function at any point on that function. Example

More information

Math Fall Final Exam

Math Fall Final Exam Math 104 - Fall 2008 - Final Exam Name: Student ID: Signature: Instructions: Print your name and student ID number, write your signature to indicate that you accept the honor code. During the test, you

More information

Some definitions. Math 1080: Numerical Linear Algebra Chapter 5, Solving Ax = b by Optimization. A-inner product. Important facts

Some definitions. Math 1080: Numerical Linear Algebra Chapter 5, Solving Ax = b by Optimization. A-inner product. Important facts Some definitions Math 1080: Numerical Linear Algebra Chapter 5, Solving Ax = b by Optimization M. M. Sussman sussmanm@math.pitt.edu Office Hours: MW 1:45PM-2:45PM, Thack 622 A matrix A is SPD (Symmetric

More information

Recall that any inner product space V has an associated norm defined by

Recall that any inner product space V has an associated norm defined by Hilbert Spaces Recall that any inner product space V has an associated norm defined by v = v v. Thus an inner product space can be viewed as a special kind of normed vector space. In particular every inner

More information

σ 11 σ 22 σ pp 0 with p = min(n, m) The σ ii s are the singular values. Notation change σ ii A 1 σ 2

σ 11 σ 22 σ pp 0 with p = min(n, m) The σ ii s are the singular values. Notation change σ ii A 1 σ 2 HE SINGULAR VALUE DECOMPOSIION he SVD existence - properties. Pseudo-inverses and the SVD Use of SVD for least-squares problems Applications of the SVD he Singular Value Decomposition (SVD) heorem For

More information

Linear Algebra Review. Vectors

Linear Algebra Review. Vectors Linear Algebra Review 9/4/7 Linear Algebra Review By Tim K. Marks UCSD Borrows heavily from: Jana Kosecka http://cs.gmu.edu/~kosecka/cs682.html Virginia de Sa (UCSD) Cogsci 8F Linear Algebra review Vectors

More information

AMS526: Numerical Analysis I (Numerical Linear Algebra)

AMS526: Numerical Analysis I (Numerical Linear Algebra) AMS526: Numerical Analysis I (Numerical Linear Algebra) Lecture 5: Projectors and QR Factorization Xiangmin Jiao SUNY Stony Brook Xiangmin Jiao Numerical Analysis I 1 / 14 Outline 1 Projectors 2 QR Factorization

More information

HIGHER SCHOOL CERTIFICATE EXAMINATION MATHEMATICS 3 UNIT (ADDITIONAL) AND 3/4 UNIT (COMMON) Time allowed Two hours (Plus 5 minutes reading time)

HIGHER SCHOOL CERTIFICATE EXAMINATION MATHEMATICS 3 UNIT (ADDITIONAL) AND 3/4 UNIT (COMMON) Time allowed Two hours (Plus 5 minutes reading time) HIGHER SCHOOL CERTIFICATE EXAMINATION 000 MATHEMATICS UNIT (ADDITIONAL) AND /4 UNIT (COMMON) Time allowed Two hours (Plus 5 minutes reading time) DIRECTIONS TO CANDIDATES Attempt ALL questions. ALL questions

More information

University of Colorado Denver Department of Mathematical and Statistical Sciences Applied Linear Algebra Ph.D. Preliminary Exam June 13, 2014

University of Colorado Denver Department of Mathematical and Statistical Sciences Applied Linear Algebra Ph.D. Preliminary Exam June 13, 2014 University of Colorado Denver Department of Mathematical and Statistical Sciences Applied Linear Algebra PhD Preliminary Exam June 3, 24 Name: Exam Rules: This is a closed book exam Once the exam begins,

More information

MATH 12 CLASS 2 NOTES, SEP Contents. 2. Dot product: determining the angle between two vectors 2

MATH 12 CLASS 2 NOTES, SEP Contents. 2. Dot product: determining the angle between two vectors 2 MATH 12 CLASS 2 NOTES, SEP 23 2011 Contents 1. Dot product: definition, basic properties 1 2. Dot product: determining the angle between two vectors 2 Quick links to definitions/theorems Dot product definition

More information

Exercises on Newton s Laws of Motion

Exercises on Newton s Laws of Motion Exercises on Newton s Laws of Motion Problems created by: Raditya 1. A pendulum is hanging on a ceiling of a plane which is initially at rest. When the plane prepares to take off, it accelerates with a

More information

Trial 1 Trial 2 Trial 3. From your results, how many seconds would it take the car to travel 1.50 meters? (3 significant digits)

Trial 1 Trial 2 Trial 3. From your results, how many seconds would it take the car to travel 1.50 meters? (3 significant digits) SPEED & ACCELERATION PART I: A DISTANCE-TIME STUDY AT CONSTANT SPEED Speed is composed of two fundamental concepts, namely, distance and time. In this part of the experiment you will take measurements

More information

MATH 350: Introduction to Computational Mathematics

MATH 350: Introduction to Computational Mathematics MATH 350: Introduction to Computational Mathematics Chapter V: Least Squares Problems Greg Fasshauer Department of Applied Mathematics Illinois Institute of Technology Spring 2011 fasshauer@iit.edu MATH

More information

Chap 3. Linear Algebra

Chap 3. Linear Algebra Chap 3. Linear Algebra Outlines 1. Introduction 2. Basis, Representation, and Orthonormalization 3. Linear Algebraic Equations 4. Similarity Transformation 5. Diagonal Form and Jordan Form 6. Functions

More information

Functions of Several Variables

Functions of Several Variables Jim Lambers MAT 419/519 Summer Session 2011-12 Lecture 2 Notes These notes correspond to Section 1.2 in the text. Functions of Several Variables We now generalize the results from the previous section,

More information

Problem 1. CS205 Homework #2 Solutions. Solution

Problem 1. CS205 Homework #2 Solutions. Solution CS205 Homework #2 s Problem 1 [Heath 3.29, page 152] Let v be a nonzero n-vector. The hyperplane normal to v is the (n-1)-dimensional subspace of all vectors z such that v T z = 0. A reflector is a linear

More information

Math 102, Winter Final Exam Review. Chapter 1. Matrices and Gaussian Elimination

Math 102, Winter Final Exam Review. Chapter 1. Matrices and Gaussian Elimination Math 0, Winter 07 Final Exam Review Chapter. Matrices and Gaussian Elimination { x + x =,. Different forms of a system of linear equations. Example: The x + 4x = 4. [ ] [ ] [ ] vector form (or the column

More information

Math 307 Learning Goals

Math 307 Learning Goals Math 307 Learning Goals May 14, 2018 Chapter 1 Linear Equations 1.1 Solving Linear Equations Write a system of linear equations using matrix notation. Use Gaussian elimination to bring a system of linear

More information

r r 30 y 20y 8 7y x 6x x 5x x 8x m m t 9t 12 n 4n r 17r x 9x m 7m x 7x t t 18 x 2x U3L1 - Review of Distributive Law and Factoring

r r 30 y 20y 8 7y x 6x x 5x x 8x m m t 9t 12 n 4n r 17r x 9x m 7m x 7x t t 18 x 2x U3L1 - Review of Distributive Law and Factoring UL - Review of Distributive Law and Factoring. Expand and simplify. a) (6mn )(-5m 4 n 6 ) b) -6x 4 y 5 z 7 (-x 7 y 4 z) c) (x 4) - (x 5) d) (y 9y + 5) 5(y 4) e) 5(x 4y) (x 5y) + 7 f) 4(a b c) 6(4a + b

More information

Orthogonal Transformations

Orthogonal Transformations Orthogonal Transformations Tom Lyche University of Oslo Norway Orthogonal Transformations p. 1/3 Applications of Qx with Q T Q = I 1. solving least squares problems (today) 2. solving linear equations

More information

Chapter 3 Acceleration

Chapter 3 Acceleration Chapter 3 Acceleration Slide 3-1 Chapter 3: Acceleration Chapter Goal: To extend the description of motion in one dimension to include changes in velocity. This type of motion is called acceleration. Slide

More information

Physics I Exam 1 Spring 2015 (version A)

Physics I Exam 1 Spring 2015 (version A) 95.141 Physics I Exam 1 Spring 015 (version A) Section Number Section instructor Last/First Name (PRINT) / Last 3 Digits of Student ID Number: Answer all questions, beginning each new question in the space

More information

PhysicsAndMathsTutor.com 1

PhysicsAndMathsTutor.com 1 PhysicsAndMathsTutor.com 1 Q1. An apple and a leaf fall from a tree at the same instant. Both apple and leaf start at the same height above the ground but the apple hits the ground first. You may be awarded

More information

MIDTERM. b) [2 points] Compute the LU Decomposition A = LU or explain why one does not exist.

MIDTERM. b) [2 points] Compute the LU Decomposition A = LU or explain why one does not exist. MAE 9A / FALL 3 Maurício de Oliveira MIDTERM Instructions: You have 75 minutes This exam is open notes, books No computers, calculators, phones, etc There are 3 questions for a total of 45 points and bonus

More information

Math Linear Algebra

Math Linear Algebra Math 220 - Linear Algebra (Summer 208) Solutions to Homework #7 Exercise 6..20 (a) TRUE. u v v u = 0 is equivalent to u v = v u. The latter identity is true due to the commutative property of the inner

More information

Span and Linear Independence

Span and Linear Independence Span and Linear Independence It is common to confuse span and linear independence, because although they are different concepts, they are related. To see their relationship, let s revisit the previous

More information

Math 290, Midterm II-key

Math 290, Midterm II-key Math 290, Midterm II-key Name (Print): (first) Signature: (last) The following rules apply: There are a total of 20 points on this 50 minutes exam. This contains 7 pages (including this cover page) and

More information

Particle Motion Problems

Particle Motion Problems Particle Motion Problems Particle motion problems deal with particles that are moving along the x or y axis. Thus, we are speaking of horizontal or vertical movement. The position, velocity, or acceleration

More information

Week Quadratic forms. Principal axes theorem. Text reference: this material corresponds to parts of sections 5.5, 8.2,

Week Quadratic forms. Principal axes theorem. Text reference: this material corresponds to parts of sections 5.5, 8.2, Math 051 W008 Margo Kondratieva Week 10-11 Quadratic forms Principal axes theorem Text reference: this material corresponds to parts of sections 55, 8, 83 89 Section 41 Motivation and introduction Consider

More information

Introduction. Math Calculus 1 section 2.1 and 2.2. Julian Chan. Department of Mathematics Weber State University

Introduction. Math Calculus 1 section 2.1 and 2.2. Julian Chan. Department of Mathematics Weber State University Math 1210 Calculus 1 section 2.1 and 2.2 Julian Chan Department of Mathematics Weber State University 2013 Objectives Objectives: to tangent lines to limits What is velocity and how to obtain it from the

More information

ECE 204 Numerical Methods for Computer Engineers MIDTERM EXAMINATION /8:00-9:30

ECE 204 Numerical Methods for Computer Engineers MIDTERM EXAMINATION /8:00-9:30 ECE 204 Numerical Methods for Computer Engineers MIDTERM EXAMINATION 2007-10-23/8:00-9:30 The examination is out of 67 marks. Instructions: No aides. Write your name and student ID number on each booklet.

More information

Typical Problem: Compute.

Typical Problem: Compute. Math 2040 Chapter 6 Orhtogonality and Least Squares 6.1 and some of 6.7: Inner Product, Length and Orthogonality. Definition: If x, y R n, then x y = x 1 y 1 +... + x n y n is the dot product of x and

More information

Linear Algebra. Alvin Lin. August December 2017

Linear Algebra. Alvin Lin. August December 2017 Linear Algebra Alvin Lin August 207 - December 207 Linear Algebra The study of linear algebra is about two basic things. We study vector spaces and structure preserving maps between vector spaces. A vector

More information

Math 128A: Homework 2 Solutions

Math 128A: Homework 2 Solutions Math 128A: Homework 2 Solutions Due: June 28 1. In problems where high precision is not needed, the IEEE standard provides a specification for single precision numbers, which occupy 32 bits of storage.

More information

Quantum Computing Lecture 2. Review of Linear Algebra

Quantum Computing Lecture 2. Review of Linear Algebra Quantum Computing Lecture 2 Review of Linear Algebra Maris Ozols Linear algebra States of a quantum system form a vector space and their transformations are described by linear operators Vector spaces

More information

Math 54: Mock Final. December 11, y y 2y = cos(x) sin(2x). The auxiliary equation for the corresponding homogeneous problem is

Math 54: Mock Final. December 11, y y 2y = cos(x) sin(2x). The auxiliary equation for the corresponding homogeneous problem is Name: Solutions Math 54: Mock Final December, 25 Find the general solution of y y 2y = cos(x) sin(2x) The auxiliary equation for the corresponding homogeneous problem is r 2 r 2 = (r 2)(r + ) = r = 2,

More information

Solving Quadratic Equations

Solving Quadratic Equations Solving Quadratic Equations MATH 101 College Algebra J. Robert Buchanan Department of Mathematics Summer 2012 Objectives In this lesson we will learn to: solve quadratic equations by factoring, solve quadratic

More information

CS137 Introduction to Scientific Computing Winter Quarter 2004 Solutions to Homework #3

CS137 Introduction to Scientific Computing Winter Quarter 2004 Solutions to Homework #3 CS137 Introduction to Scientific Computing Winter Quarter 2004 Solutions to Homework #3 Felix Kwok February 27, 2004 Written Problems 1. (Heath E3.10) Let B be an n n matrix, and assume that B is both

More information

MATH 425-Spring 2010 HOMEWORK ASSIGNMENTS

MATH 425-Spring 2010 HOMEWORK ASSIGNMENTS MATH 425-Spring 2010 HOMEWORK ASSIGNMENTS Instructor: Shmuel Friedland Department of Mathematics, Statistics and Computer Science email: friedlan@uic.edu Last update April 18, 2010 1 HOMEWORK ASSIGNMENT

More information

Fall 2016 Math 2B Suggested Homework Problems Solutions

Fall 2016 Math 2B Suggested Homework Problems Solutions Fall 016 Math B Suggested Homework Problems Solutions Antiderivatives Exercise : For all x ], + [, the most general antiderivative of f is given by : ( x ( x F(x = + x + C = 1 x x + x + C. Exercise 4 :

More information

Written Homework # 4 Solution

Written Homework # 4 Solution Math 516 Fall 2006 Radford Written Homework # 4 Solution 12/10/06 You may use results form the book in Chapters 1 6 of the text, from notes found on our course web page, and results of the previous homework.

More information

Projectile Motion and 2-D Dynamics

Projectile Motion and 2-D Dynamics Projectile Motion and 2-D Dynamics Vector Notation Vectors vs. Scalars In Physics 11, you learned the difference between vectors and scalars. A vector is a quantity that includes both direction and magnitude

More information

Math Bootcamp An p-dimensional vector is p numbers put together. Written as. x 1 x =. x p

Math Bootcamp An p-dimensional vector is p numbers put together. Written as. x 1 x =. x p Math Bootcamp 2012 1 Review of matrix algebra 1.1 Vectors and rules of operations An p-dimensional vector is p numbers put together. Written as x 1 x =. x p. When p = 1, this represents a point in the

More information

Lab 5: Projectile Motion

Lab 5: Projectile Motion Concepts to explore Scalars vs. vectors Projectiles Parabolic trajectory As you learned in Lab 4, a quantity that conveys information about magnitude only is called a scalar. However, when a quantity,

More information

EECS 275 Matrix Computation

EECS 275 Matrix Computation EECS 275 Matrix Computation Ming-Hsuan Yang Electrical Engineering and Computer Science University of California at Merced Merced, CA 95344 http://faculty.ucmerced.edu/mhyang Lecture 9 1 / 23 Overview

More information

y = 5 x. Which statement is true? x 2 6x 25 = 0 by completing the square?

y = 5 x. Which statement is true? x 2 6x 25 = 0 by completing the square? Algebra /Trigonometry Regents Exam 064 www.jmap.org 064a Which survey is least likely to contain bias? ) surveying a sample of people leaving a movie theater to determine which flavor of ice cream is the

More information

EXAM. Exam 1. Math 5316, Fall December 2, 2012

EXAM. Exam 1. Math 5316, Fall December 2, 2012 EXAM Exam Math 536, Fall 22 December 2, 22 Write all of your answers on separate sheets of paper. You can keep the exam questions. This is a takehome exam, to be worked individually. You can use your notes.

More information

AP Physics C: Mechanics Practice (Newton s Laws including friction, resistive forces, and centripetal force).

AP Physics C: Mechanics Practice (Newton s Laws including friction, resistive forces, and centripetal force). AP Physics C: Mechanics Practice (Newton s Laws including friction, resistive forces, and centripetal force). 1981M1. A block of mass m, acted on by a force of magnitude F directed horizontally to the

More information

0615AI Common Core State Standards

0615AI Common Core State Standards 0615AI Common Core State Standards 1 The cost of airing a commercial on television is modeled by the function C(n) = 110n + 900, where n is the number of times the commercial is aired. Based on this model,

More information

Applied Numerical Linear Algebra. Lecture 8

Applied Numerical Linear Algebra. Lecture 8 Applied Numerical Linear Algebra. Lecture 8 1/ 45 Perturbation Theory for the Least Squares Problem When A is not square, we define its condition number with respect to the 2-norm to be k 2 (A) σ max (A)/σ

More information

Physics 11 Chapter 3: Kinematics in Two Dimensions. Problem Solving

Physics 11 Chapter 3: Kinematics in Two Dimensions. Problem Solving Physics 11 Chapter 3: Kinematics in Two Dimensions The only thing in life that is achieved without effort is failure. Source unknown "We are what we repeatedly do. Excellence, therefore, is not an act,

More information

Polynomial Functions. Cumulative Test. Select the best answer. 1. If g(x) is a horizontal compression by a factor of 1 followed by a translation of

Polynomial Functions. Cumulative Test. Select the best answer. 1. If g(x) is a horizontal compression by a factor of 1 followed by a translation of Polynomial unctions Cumulative Test Select the best answer.. If g(x) is a horizontal compression by a factor of followed by a translation of units down of f(x) = x 5, what is the rule for g(x)? A g(x)

More information

x 1. x n i + x 2 j (x 1, x 2, x 3 ) = x 1 j + x 3

x 1. x n i + x 2 j (x 1, x 2, x 3 ) = x 1 j + x 3 Version: 4/1/06. Note: These notes are mostly from my 5B course, with the addition of the part on components and projections. Look them over to make sure that we are on the same page as regards inner-products,

More information

Math Linear Algebra II. 1. Inner Products and Norms

Math Linear Algebra II. 1. Inner Products and Norms Math 342 - Linear Algebra II Notes 1. Inner Products and Norms One knows from a basic introduction to vectors in R n Math 254 at OSU) that the length of a vector x = x 1 x 2... x n ) T R n, denoted x,

More information

Math 233. Directional Derivatives and Gradients Basics

Math 233. Directional Derivatives and Gradients Basics Math 233. Directional Derivatives and Gradients Basics Given a function f(x, y) and a unit vector u = a, b we define the directional derivative of f at (x 0, y 0 ) in the direction u by f(x 0 + ta, y 0

More information

Linear Algebra Using MATLAB

Linear Algebra Using MATLAB Linear Algebra Using MATLAB MATH 5331 1 May 12, 2010 1 Selected material from the text Linear Algebra and Differential Equations Using MATLAB by Martin Golubitsky and Michael Dellnitz Contents 1 Preliminaries

More information

Math/Phys/Engr 428, Math 529/Phys 528 Numerical Methods - Summer Homework 3 Due: Tuesday, July 3, 2018

Math/Phys/Engr 428, Math 529/Phys 528 Numerical Methods - Summer Homework 3 Due: Tuesday, July 3, 2018 Math/Phys/Engr 428, Math 529/Phys 528 Numerical Methods - Summer 28. (Vector and Matrix Norms) Homework 3 Due: Tuesday, July 3, 28 Show that the l vector norm satisfies the three properties (a) x for x

More information

Constants: Acceleration due to gravity = 9.81 m/s 2

Constants: Acceleration due to gravity = 9.81 m/s 2 Constants: Acceleration due to gravity = 9.81 m/s 2 PROBLEMS: 1. In an experiment, it is found that the time t required for an object to travel a distance x is given by the equation = where is the acceleration

More information

Constants: Acceleration due to gravity = 9.81 m/s 2

Constants: Acceleration due to gravity = 9.81 m/s 2 Constants: Acceleration due to gravity = 9.81 m/s 2 PROBLEMS: 1. In an experiment, it is found that the time t required for an object to travel a distance x is given by the equation = where is the acceleration

More information

Understanding. 28. Given:! d inital. = 1750 m [W];! d final Required:!! d T Analysis:!! d T. Solution:!! d T

Understanding. 28. Given:! d inital. = 1750 m [W];! d final Required:!! d T Analysis:!! d T. Solution:!! d T Unit 1 Review, pages 100 107 Knowledge 1. (c). (c) 3. (b) 4. (d) 5. (b) 6. (c) 7. (d) 8. (b) 9. (d) 10. (b) 11. (b) 1. True 13. True 14. False. The average velocity of an object is the change in displacement

More information