ICME Linear Algebra Refresher Course Lecture 1: Preliminaries

Total Page:16

File Type:pdf, Size:1020Kb

ICME Linear Algebra Refresher Course Lecture 1: Preliminaries ICME Linear Algebra Refresher Course Lecture 1: Preliminaries Ron Estrin September 20, 2016 1/47 Ron Estrin Lecture 1: Preliminaries Introduction This course: A short refresher on linear algebra, meant to prepare you for CME 302, CME 200, or other courses involving linear algebra. Prerequisites: Some level of exposure to linear algebra in your undergrad career. Hopefully most of what you'll see is review, but if we're ever going too fast (or slow), ask a question! When: Tues/Wed/Thurs, 10:30am - 11:45am. Slides and material accessible at: http://stanford.edu/~tym1/refresher/index.html. Much of the material is shamelessly re-used from offerings of previous years (in particular, Victor Minden's slides 2014 slides). 2/47 Ron Estrin Lecture 1: Preliminaries Useful Resources Matrix Computations 3ed by Golub and Van Loan. There's also a 4th ed available. An encyclopedia of nearly everything you need to know, but not particularly light-reading material. Numerical Linear Algebra by Trefethen and Bau. Easier to read book with many useful exercises and a more 'conversational' tone. A First Course in Numerical Methods by Chen Greif and Uri Ascher. Broader focus than just numerical linear algebra, but good for first-time exposure to computational aspects of linear algebra. 3/47 Ron Estrin Lecture 1: Preliminaries Introduction A little about me: I'm a third-year ICME PhD student working in linear algebra and optimization. Email: [email protected]. Webpage: http://stanford.edu/~restrin. Let's begin! 4/47 Ron Estrin Lecture 1: Preliminaries Vector Spaces Definition A vector space is a set V and field F with a binary operation addition (u + v = w 2 V for all u; v 2 V ), and scalar multiplication (αu = v 2 V for all u 2 V , α 2 F) such that the following axioms hold: Commutativity: u + v = v + u Associativity: (u + v) + w = u + (v + w) Additive identity: There exists 0 2 V s.t. v + 0 = v, 8v 2 V Additive inverse: 8v 2 V there exists w 2 V s.t. v + w = 0 Multiplicative identity: There exists 1 2 F s.t. 1v = v, 8v 2 V Distributativity: α(u + v) = αu + αv and (α + β)v = αv + βv 5/47 Ron Estrin Lecture 1: Preliminaries Subspaces Definition A subspace U of a vector space V (with the field F) is a subset U ⊆ V such that 0 2 U and Closed under addition: u + v 2 U for all u; v 2 U Closed under scalar multiplication: αv 2 U for all v 2 U Important: A subspace is itself a vector space. 6/47 Ron Estrin Lecture 1: Preliminaries Examples of vector spaces n n Euclidean space: (Everyone's favourite) R or C (columns of numbers). Example subspace: Choose set αi 2 R, then n Pn U = fx 2 R j i=n αi xi = 0g is a subspace. n n Generally we'll discuss Euclidean space with either R or C . Continuous real-valued functions on [0,1]. Example subspaces: Polynomials of degree ≤ n (Pn(x)), U = ff 2 C[0; 1] j f (0) = f (1) = 0g. 7/47 Ron Estrin Lecture 1: Preliminaries Span of vectors Definition The span of a set of vectors is the subspace of all linear linear combinations of those vectors ( n ) X span fv1;:::; vk g = w j w = αi vi : i=1 Examples: 80 1 0 19 80 1 9 < 1 1 = < α1 = span @0A ; @ 0 A = @ 0 A j α1; α2 2 R : : 1 −1 ; : α2 ; n 2k o span fx j k 2 Ng = fPolynomials with even degree termsg 8/47 Ron Estrin Lecture 1: Preliminaries Linear independence/dependence Definition n A set of vectors fvi gi=1 is linearly independent if n X αi vi = 0 =) αi = 0; i = 1;:::; n: i=1 Otherwise, the set is linearly dependent. Linearly dependent sets are redundant, since we can represent any vector (if αj 6= 0) as 1 X vj = αi vi : αj i6=j 9/47 Ron Estrin Lecture 1: Preliminaries Linear independence/dependence Examples: 80 1 0 1 0 19 < 1 1 2 = The set fv1; v2; v3g = @2A ; @ 1 A ; @3A is linearly : 1 −1 0 ; dependent since v1 + v2 − v3 = 0. 80 1 0 1 0 19 < 2 1 2 = The set fv1; v2; v3g = @2A ; @ 1 A ; @3A is linearly : 1 −1 0 ; independent. 10/47 Ron Estrin Lecture 1: Preliminaries Bases Definition n A set of vectors fvi gi=1 generates a vector space U if span fvi g = U. Definition n A set of vectors fvi gi=1 is a basis for a vector space U if n span fvi g = U and the set fvi gi=1 is linearly independent. n With a basis, we can express any u 2 U in the basis fvi gi=1 as n X u = αi vi ; i=1 for some coefficients αi . 11/47 Ron Estrin Lecture 1: Preliminaries Dimension of a vector space Definition The dimension of a vector space V is the number of vectors in any fixed basis of V , dim(V ) = jvectors in basis of V j : Remember: The dimension depends only on the vector space, not on the basis! Not all vector spaces are finite dimensional (e.g. space of continuous functions), but for numerical linear algebra, we'll generally only care about the finite-dimensional ones. 12/47 Ron Estrin Lecture 1: Preliminaries Example bases 2 n One basis for Pn(x) is the set of monomials f1; x; x ;:::; x g. Another basis for the same space is the set of Chebyshev polynomials of the first kind, fP0; P1;:::; Png: P0(x) = 1 P1(x) = x Pn(x) = 2xPn−1(x) − Pn−2(x): In both cases, the cardinality of the basis sets is n + 1, so the dimension of the space is n + 1. Although they span the same space, these bases have very different properties! 13/47 Ron Estrin Lecture 1: Preliminaries Inner product space Definition An inner product space is a vector space V with a defined inner product h·; ·i : V × V ! F; such that the following properties hold: Conjugate symmetry: hu; vi = hv; ui Linearity in first argument: hαu + v; wi = α hu; wi + hv; wi : Positive-Definiteness: hu; ui ≥ 0 with equality iff u = 0. Formal definition for `products of vectors'. 14/47 Ron Estrin Lecture 1: Preliminaries Inner product space Examples: n Dot-product for C : (Everyone's favourite) Defined as n X ∗ hu; vi = u¯i vi = v u: i=1 Also known as the `2 inner product. L2 inner product for functions on [0; 1]. Defined as Z 1 hf ; giL2 = f (x)g(x)dx: 0 15/47 Ron Estrin Lecture 1: Preliminaries Norms Definition A norm on a vector space V is a function k·k : V ! R+ [ 0 such that the following properties hold: Absolute homogeneity: kαvk = jαj kvk for all α 2 F and v 2 V Sub-additivity (triangle inequality): ku + vk ≤ kuk + kvk Nondegeneracy: kvk = 0 iff v = 0 Norms generalize the idea \length" of vectors. All norms are convex functions. 16/47 Ron Estrin Lecture 1: Preliminaries Norms Examples: Euclidean norm: Defined as 1 n ! 2 X 2 ∗ kuk2 = jui j = u u: i=1 Also called the `2-norm. An example of a norm defined by an inner product. `p-norm: Defined as 1 n ! p X p kukp = jui j : i=1 `1-norm: Define as kuk1 = max jui j: 1≤i≤n 17/47 Ron Estrin Lecture 1: Preliminaries Euclidean inner product and geometry Let u and v be two vectors, with angle θ in between. The Euclidean norm is exactly the usual notion of `length' of a vector, and the inner product satisfies hu; vi2 = kuk2 kvk2 cos θ: 18/47 Ron Estrin Lecture 1: Preliminaries Exercises 1 Prove that every inner product defines a norm. That is, show that 1 kuk = (hu; ui) 2 ; is a norm. 2 Prove the cosine law. If a, b, c are the sides of the triangle, and θ is the angle between a and b, then jcj2 = jaj2 + jbj2 − 2jajjbj cos θ: 19/47 Ron Estrin Lecture 1: Preliminaries Important inequalities Triangle Inequality: ku + vk ≤ kuk + kvk : Reverse Triangle Inequality: ku − vk ≥ jkuk − kvkj : 20/47 Ron Estrin Lecture 1: Preliminaries Recall that for the Euclidean inner product, hu; vi2 = kuk2 kvk2 cos θ: Since 0 ≤ j cos θj ≤ 1, Cauchy-Schwarz clearly holds, and we can observe when sharpness occurs: when θ = 0. Important inequalities Cauchy-Schwarz Inequality: Let the norm k·k be induced by the inner product h·; ·i. Then j hu; vi j ≤ kuk kvk : It basically says that the size of the inner product is bounded by the product of the size of the vectors themselves. 21/47 Ron Estrin Lecture 1: Preliminaries Important inequalities Cauchy-Schwarz Inequality: Let the norm k·k be induced by the inner product h·; ·i. Then j hu; vi j ≤ kuk kvk : It basically says that the size of the inner product is bounded by the product of the size of the vectors themselves. Recall that for the Euclidean inner product, hu; vi2 = kuk2 kvk2 cos θ: Since 0 ≤ j cos θj ≤ 1, Cauchy-Schwarz clearly holds, and we can observe when sharpness occurs: when θ = 0. 21/47 Ron Estrin Lecture 1: Preliminaries Definition Vectors u, v are orthogonal with respect to an inner product if hu; vi = 0: For the Euclidean inner product, this is the usual notion of orthogonality, i.e. two vectors are orthogonal if θ = π=2 since hu; vi2 = kuk2 kvk2 cos θ: 22/47 Ron Estrin Lecture 1: Preliminaries Definition n An orthogonal basis is a basis fvi gi=1 such that hvi ; vj i = 0 for i 6= j.
Recommended publications
  • Learning Geometric Algebra by Modeling Motions of the Earth and Shadows of Gnomons to Predict Solar Azimuths and Altitudes
    Learning Geometric Algebra by Modeling Motions of the Earth and Shadows of Gnomons to Predict Solar Azimuths and Altitudes April 24, 2018 James Smith [email protected] https://mx.linkedin.com/in/james-smith-1b195047 \Our first step in developing an expression for the orientation of \our" gnomon: Diagramming its location at the instant of the 2016 December solstice." Abstract Because the shortage of worked-out examples at introductory levels is an obstacle to widespread adoption of Geometric Algebra (GA), we use GA to calculate Solar azimuths and altitudes as a function of time via the heliocentric model. We begin by representing the Earth's motions in GA terms. Our representation incorporates an estimate of the time at which the Earth would have reached perihelion in 2017 if not affected by the Moon's gravity. Using the geometry of the December 2016 solstice as a starting 1 point, we then employ GA's capacities for handling rotations to determine the orientation of a gnomon at any given latitude and longitude during the period between the December solstices of 2016 and 2017. Subsequently, we derive equations for two angles: that between the Sun's rays and the gnomon's shaft, and that between the gnomon's shadow and the direction \north" as traced on the ground at the gnomon's location. To validate our equations, we convert those angles to Solar azimuths and altitudes for comparison with simulations made by the program Stellarium. As further validation, we analyze our equations algebraically to predict (for example) the precise timings and locations of sunrises, sunsets, and Solar zeniths on the solstices and equinoxes.
    [Show full text]
  • Schaum's Outline of Linear Algebra (4Th Edition)
    SCHAUM’S SCHAUM’S outlines outlines Linear Algebra Fourth Edition Seymour Lipschutz, Ph.D. Temple University Marc Lars Lipson, Ph.D. University of Virginia Schaum’s Outline Series New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore Sydney Toronto Copyright © 2009, 2001, 1991, 1968 by The McGraw-Hill Companies, Inc. All rights reserved. Except as permitted under the United States Copyright Act of 1976, no part of this publication may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without the prior writ- ten permission of the publisher. ISBN: 978-0-07-154353-8 MHID: 0-07-154353-8 The material in this eBook also appears in the print version of this title: ISBN: 978-0-07-154352-1, MHID: 0-07-154352-X. All trademarks are trademarks of their respective owners. Rather than put a trademark symbol after every occurrence of a trademarked name, we use names in an editorial fashion only, and to the benefit of the trademark owner, with no intention of infringement of the trademark. Where such designations appear in this book, they have been printed with initial caps. McGraw-Hill eBooks are available at special quantity discounts to use as premiums and sales promotions, or for use in corporate training programs. To contact a representative please e-mail us at [email protected]. TERMS OF USE This is a copyrighted work and The McGraw-Hill Companies, Inc. (“McGraw-Hill”) and its licensors reserve all rights in and to the work.
    [Show full text]
  • Exercise 7.5
    IN SUMMARY Key Idea • A projection of one vector onto another can be either a scalar or a vector. The difference is the vector projection has a direction. A A a a u u O O b NB b N B Scalar projection of a on b Vector projection of a on b Need to Know ! ! ! ! a # b ! • The scalar projection of a on b ϭϭ! 0 a 0 cos u, where u is the angle @ b @ ! ! between a and b. ! ! ! ! ! ! a # b ! a # b ! • The vector projection of a on b ϭ ! b ϭ a ! ! b b @ b @ 2 b # b ! • The direction cosines for OP ϭ 1a, b, c2 are a b cos a ϭ , cos b ϭ , 2 2 2 2 2 2 Va ϩ b ϩ c Va ϩ b ϩ c c cos g ϭ , where a, b, and g are the direction angles 2 2 2 Va ϩ b ϩ c ! between the position vector OP and the positive x-axis, y-axis and z-axis, respectively. Exercise 7.5 PART A ! 1. a. The vector a ϭ 12, 32 is projected onto the x-axis. What is the scalar projection? What is the vector projection? ! b. What are the scalar and vector projections when a is projected onto the y-axis? 2. Explain why it is not possible to obtain! either a scalar! projection or a vector projection when a nonzero vector x is projected on 0. 398 7.5 SCALAR AND VECTOR PROJECTIONS NEL ! ! 3. Consider two nonzero vectors,a and b, that are perpendicular! ! to each other.! Explain why the scalar and vector projections of a on b must! be !0 and 0, respectively.
    [Show full text]
  • MATH 304 Linear Algebra Lecture 24: Scalar Product. Vectors: Geometric Approach
    MATH 304 Linear Algebra Lecture 24: Scalar product. Vectors: geometric approach B A B′ A′ A vector is represented by a directed segment. • Directed segment is drawn as an arrow. • Different arrows represent the same vector if • they are of the same length and direction. Vectors: geometric approach v B A v B′ A′ −→AB denotes the vector represented by the arrow with tip at B and tail at A. −→AA is called the zero vector and denoted 0. Vectors: geometric approach v B − A v B′ A′ If v = −→AB then −→BA is called the negative vector of v and denoted v. − Vector addition Given vectors a and b, their sum a + b is defined by the rule −→AB + −→BC = −→AC. That is, choose points A, B, C so that −→AB = a and −→BC = b. Then a + b = −→AC. B b a C a b + B′ b A a C ′ a + b A′ The difference of the two vectors is defined as a b = a + ( b). − − b a b − a Properties of vector addition: a + b = b + a (commutative law) (a + b) + c = a + (b + c) (associative law) a + 0 = 0 + a = a a + ( a) = ( a) + a = 0 − − Let −→AB = a. Then a + 0 = −→AB + −→BB = −→AB = a, a + ( a) = −→AB + −→BA = −→AA = 0. − Let −→AB = a, −→BC = b, and −→CD = c. Then (a + b) + c = (−→AB + −→BC) + −→CD = −→AC + −→CD = −→AD, a + (b + c) = −→AB + (−→BC + −→CD) = −→AB + −→BD = −→AD. Parallelogram rule Let −→AB = a, −→BC = b, −−→AB′ = b, and −−→B′C ′ = a. Then a + b = −→AC, b + a = −−→AC ′.
    [Show full text]
  • Linear Algebra - Part II Projection, Eigendecomposition, SVD
    Linear Algebra - Part II Projection, Eigendecomposition, SVD (Adapted from Punit Shah's slides) 2019 Linear Algebra, Part II 2019 1 / 22 Brief Review from Part 1 Matrix Multiplication is a linear tranformation. Symmetric Matrix: A = AT Orthogonal Matrix: AT A = AAT = I and A−1 = AT L2 Norm: s X 2 jjxjj2 = xi i Linear Algebra, Part II 2019 2 / 22 Angle Between Vectors Dot product of two vectors can be written in terms of their L2 norms and the angle θ between them. T a b = jjajj2jjbjj2 cos(θ) Linear Algebra, Part II 2019 3 / 22 Cosine Similarity Cosine between two vectors is a measure of their similarity: a · b cos(θ) = jjajj jjbjj Orthogonal Vectors: Two vectors a and b are orthogonal to each other if a · b = 0. Linear Algebra, Part II 2019 4 / 22 Vector Projection ^ b Given two vectors a and b, let b = jjbjj be the unit vector in the direction of b. ^ Then a1 = a1 · b is the orthogonal projection of a onto a straight line parallel to b, where b a = jjajj cos(θ) = a · b^ = a · 1 jjbjj Image taken from wikipedia. Linear Algebra, Part II 2019 5 / 22 Diagonal Matrix Diagonal matrix has mostly zeros with non-zero entries only in the diagonal, e.g. identity matrix. A square diagonal matrix with diagonal elements given by entries of vector v is denoted: diag(v) Multiplying vector x by a diagonal matrix is efficient: diag(v)x = v x is the entrywise product. Inverting a square diagonal matrix is efficient: 1 1 diag(v)−1 = diag [ ;:::; ]T v1 vn Linear Algebra, Part II 2019 6 / 22 Determinant Determinant of a square matrix is a mapping to a scalar.
    [Show full text]
  • Basics of Linear Algebra
    Basics of Linear Algebra Jos and Sophia Vectors ● Linear Algebra Definition: A list of numbers with a magnitude and a direction. ○ Magnitude: a = [4,3] |a| =sqrt(4^2+3^2)= 5 ○ Direction: angle vector points ● Computer Science Definition: A list of numbers. ○ Example: Heights = [60, 68, 72, 67] Dot Product of Vectors Formula: a · b = |a| × |b| × cos(θ) ● Definition: Multiplication of two vectors which results in a scalar value ● In the diagram: ○ |a| is the magnitude (length) of vector a ○ |b| is the magnitude of vector b ○ Θ is the angle between a and b Matrix ● Definition: ● Matrix elements: ● a)Matrix is an arrangement of numbers into rows and columns. ● b) A matrix is an m × n array of scalars from a given field F. The individual values in the matrix are called entries. ● Matrix dimensions: the number of rows and columns of the matrix, in that order. Multiplication of Matrices ● The multiplication of two matrices ● Result matrix dimensions ○ Notation: (Row, Column) ○ Columns of the 1st matrix must equal the rows of the 2nd matrix ○ Result matrix is equal to the number of (1, 2, 3) • (7, 9, 11) = 1×7 +2×9 + 3×11 rows in 1st matrix and the number of = 58 columns in the 2nd matrix ○ Ex. 3 x 4 ॱ 5 x 3 ■ Dot product does not work ○ Ex. 5 x 3 ॱ 3 x 4 ■ Dot product does work ■ Result: 5 x 4 Dot Product Application ● Application: Ray tracing program ○ Quickly create an image with lower quality ○ “Refinement rendering pass” occurs ■ Removes the jagged edges ○ Dot product used to calculate ■ Intersection between a ray and a sphere ■ Measure the length to the intersection points ● Application: Forward Propagation ○ Input matrix * weighted matrix = prediction matrix http://immersivemath.com/ila/ch03_dotprodu ct/ch03.html#fig_dp_ray_tracer Projections One important use of dot products is in projections.
    [Show full text]
  • Quantum Flatland and Monolayer Graphene from a Viewpoint of Geometric Algebra A
    Vol. 124 (2013) ACTA PHYSICA POLONICA A No. 4 Quantum Flatland and Monolayer Graphene from a Viewpoint of Geometric Algebra A. Dargys∗ Center for Physical Sciences and Technology, Semiconductor Physics Institute A. Go²tauto 11, LT-01108 Vilnius, Lithuania (Received May 11, 2013) Quantum mechanical properties of the graphene are, as a rule, treated within the Hilbert space formalism. However a dierent approach is possible using the geometric algebra, where quantum mechanics is done in a real space rather than in the abstract Hilbert space. In this article the geometric algebra is applied to a simple quantum system, a single valley of monolayer graphene, to show the advantages and drawbacks of geometric algebra over the Hilbert space approach. In particular, 3D and 2D Euclidean space algebras Cl3;0 and Cl2;0 are applied to analyze relativistic properties of the graphene. It is shown that only three-dimensional Cl3;0 rather than two-dimensional Cl2;0 algebra is compatible with a relativistic atland. DOI: 10.12693/APhysPolA.124.732 PACS: 73.43.Cd, 81.05.U−, 03.65.Pm 1. Introduction mension has been reduced, one is automatically forced to change the type of Cliord algebra and its irreducible Graphene is a two-dimensional crystal made up of car- representation. bon atoms. The intense interest in graphene is stimulated On the other hand, if the problem was formulated in by its potential application in the construction of novel the Hilbert space terms then, generally, the neglect of nanodevices based on relativistic physics, or at least with one of space dimensions does not spoil the Hilbert space.
    [Show full text]
  • Online Homework 2 with Solutions
    Mei Qin Chen citadel-math231 WeBWorK assignment number Homework2 is due : 09/02/2011 at 09:00am EDT. The (* replace with url for the course home page *) for the course contains the syllabus, grading policy and other information. This file is /conf/snippets/setHeader.pg you can use it as a model for creating files which introduce each problem set. The primary purpose of WeBWorK is to let you know that you are getting the correct answer or to alert you if you are making some kind of mistake. Usually you can attempt a problem as many times as you want before the due date. However, if you are having trouble figuring out your error, you should consult the book, or ask a fellow student, one of the TA’s or your professor for help. Don’t spend a lot of time guessing – it’s not very efficient or effective. Give 4 or 5 significant digits for (floating point) numerical answers. For most problems when entering numerical answers, you can if you wish enter elementary expressions such as 2 ^ 3 instead of 8, sin(3 ∗ pi=2)instead of -1, e ^ (ln(2)) instead of 2, (2 +tan(3)) ∗ (4 − sin(5)) ^ 6 − 7=8 instead of 27620.3413, etc. Here’s the list of the functions which WeBWorK understands. You can use the Feedback button on each problem page to send e-mail to the professors. 1. (1 pt) local/Library/Rochester/setVectors2DotProduct- ~u ·~v +~v ·~w = /UR VC 1 11.pg Correct Answers: Find a · b if jjajj = 7, jjbjj = 2, and the angle between a and b is • 1 p − 10 radians.
    [Show full text]
  • J. Phys. A: Math
    Journal of Physics A: Mathematical and Theoretical PAPER SICs and the elements of order three in the Clifford group To cite this article: Len Bos and Shayne Waldron 2019 J. Phys. A: Math. Theor. 52 105301 View the article online for updates and enhancements. This content was downloaded from IP address 130.216.231.21 on 10/02/2019 at 21:05 IOP Journal of Physics A: Mathematical and Theoretical J. Phys. A: Math. Theor. Journal of Physics A: Mathematical and Theoretical J. Phys. A: Math. Theor. 52 (2019) 105301 (31pp) https://doi.org/10.1088/1751-8121/aafff3 52 2019 © 2019 IOP Publishing Ltd SICs and the elements of order three in the Clifford group JPHAC5 Len Bos1 and Shayne Waldron2,3 105301 1 Department of Computer Science, University of Verona, Verona, Italy 2 Department of Mathematics, University of Auckland, Private Bag 92019, Auckland, L Bos and S Waldron New Zealand E-mail: [email protected] SICs and the elements of order three in the Clifford group Received 21 September 2018, revised 23 December 2018 Accepted for publication 18 January 2019 Printed in the UK Published 8 February 2019 Abstract JPA For over a decade, there has been intensive work on the numerical and analytic construction of SICs (d2 equiangular lines in Cd) as an orbit of the Heisenberg 10.1088/1751-8121/aafff3 group. The Clifford group, which consists of the unitary matrices which normalise the Heisenberg group, plays a key role in these constructions. All of the known fiducial (generating) vectors for such SICs are eigenvectors of Paper symplectic operations in the Clifford group with canonical order 3.
    [Show full text]
  • 1 Scalar.Mcd Fundamental Concepts in Vector Analysis: Scalar Product, Magnitude, Angle, Orthogonality, Projection
    1 scalar.mcd Fundamental concepts in vector analysis: scalar product, magnitude, angle, orthogonality, projection. Instructor: Nam Sun Wang In a linear vector space (LVS), there are rules on 1) addition of two vectors and 2) multiplication by a scalar. The resulting vector must also lie in the same LVS. We now impose another rule: multiplication of two vectors to yield a scalar. Real Euclidean Space. Real Euclidean Space is a subspace of LVS where there is a real-valued function (called scalar product) defined on pairs of vectors x and y with the following four properties. 1. Commutative (x, y) (y, x) 2. Associative (.x, y) .(x, y) 3. Distributive (x y, z) (x, z) (y, z) 4. Positive magnitude (x, x)>0 unless x 0 math jargon: (x, x) 0 (x, x) 0 iff x 0 Note that it is up to us to come up with a definition of the scalar product. Any definition that satisfies that above four properties is a valid one. Not only do we define the scalar product accordingly for different types of vectors, we conveniently adopt different definitions of scalar product for different applications even for one type of vectors. A scalar product is also known as an inner product or a dot product. We have vectors in linear vector space if we come up with rules of addition and multiplication by a scalar; furthermore, these vectors are in real Euclidean space if we come up with a rule on multiplication of two vectors. There are two metrics of a vector: magnitude and direction.
    [Show full text]
  • Linear Algebra I: 2017/18 Revision Checklist for the Examination
    Linear Algebra I: 2017/18 Revision Checklist for the Examination The examination tests knowledge of three definitions, one theorem with its proof (in the written part) and a survey question on one topic (in the oral part). Each definition is followed by the request for illustrative examples or a straightforward problem involving the defined terms. Survey questions involve providing definitions, giving theorem statements, examples and relationships between ideas { proofs for this part are not required beyond the key notions, but you will be asked to recall theorem statements. (In the written part you will be given the statement of a theorem, the task being there to prove it). The oral part also involves a discussion of your answers to the written part. The examination consists of at most an hour on the written part and a discussion for up to half an hour. The oral part may come in two parts: as there may be other people taking the examination concurrently, you may be asked to begin with the survey topic discussion before doing the written part, and then return for a short second discussion of the written part once you have completed it. You may need to wait for a period after finishing the written part to be called for the discussion part. Survey topics The following gives an indication of likely topics that you may be asked about during the oral part of the examination (be prepared to give definitions, examples, algorithm descriptions, theorems, notable corollaries etc. { proofs will not be asked for in this part). • elementary row operations
    [Show full text]
  • Math 3A Notes
    5. Orthogonality 5.1. The Scalar Product in Euclidean Space 5.1 The Scalar Product in Rn Thusfar we have restricted ourselves to vector spaces and the operations of addition and scalar multiplication: how else might we combine vectors? You should know about the scalar (dot) and cross products of vectors in R3 The scalar product extends nicely to other vector spaces, while the cross product is another story1 The basic purpose of scalar products is to define and analyze the lengths of and angles between vectors2 1But not for this class! You may see ‘wedge’ products in later classes. 2It is important to note that everything in this chapter, until mentioned, only applies to real vector spaces (where F = R) 5. Orthogonality 5.1. The Scalar Product in Euclidean Space Euclidean Space Definition 5.1.1 Suppose x, y Rn are written with respect to the standard 2 basis e ,..., e f 1 ng 1 The scalar product of x, y is the real numbera (x, y) := xTy = x y + x y + + x y 1 1 2 2 ··· n n 2 x, y are orthogonal or perpendicular if (x, y) = 0 3 n-dimensional Euclidean Space Rn is the vector space of n 1 column vectors R × together with the scalar product aOther notations include x y and x, y · h i Euclidean Space is more than just a collection of co-ordinates vectors: it implicitly comes with notions of angle and length3 Important Fact: (y, x) = yTx = (xTy)T = xTy = (x, y) so the scalar product is symmetric 3To be seen in R2 and R3 shortly 5.
    [Show full text]