Quaternions, Octonions, and the Cauchy-Riemann Equations in Higher Dimensions

Size: px
Start display at page:

Download "Quaternions, Octonions, and the Cauchy-Riemann Equations in Higher Dimensions"

Transcription

1 Quaternions, Octonions, and the Cauchy-Riemann Equations in Higher Dimensions James Emery version 5/31/2018 Contents 1 This Document gives some definitions, Simple Properties, and a Bibliography Concerning the Title Subjects. 2 2 The Quaternions 2 3 The Quaternion Group 4 4 Matrix Representation of Quaternions 5 5 The Quaternion Basis Vectors are Linearly Independent 6 6 The Use of Quaternions for Representing Rotations 7 7 Octonions 9 8 Bibliography 10 9 Index 13 1

2 1 This Document gives some definitions, Simple Properties, and a Bibliography Concerning the Title Subjects. I think to make progress in using the paper: Stiefel E., On Cauchy-Riemann Equations in Higher Dimensions, Journal of Research of the National Bureau of Standards, Vol. 48, No. 5, May 1952, Research Paper 2328, for whatever purpose, one must make a rather intense study of several items listed in this bibliography, as well as others. It would be very useful to find out if this paper made a significant contribution to follow on papers that have lead to significant new results and contributions to knowledge either in applied or theoretical fields. If so what are these significant contributions? Because this paper was written so long ago, if no important knowledge has flowed, perhaps the paper is not really very important and thus perhaps extensive new work should not be undertaken. On the other hand if such follow on papers can be located, they would probably serve to clarify this rather obscure and opaque publication. For my part these areas are not of great interest to me, and so I do not plan to spend much, or any more, time on them, because it would take much effort, and take away from practical things in my life that I must do, as well as time I plan to devote to other studies, and interests. I had planned to locate the German references in the above paper and translate these to English. I did find them at Linda Hall Library and started to translate the paper by Adolph Hurwitz. However, I soon realized the limitations of my knowledge of german, and conseqently the great amount of time it would take for me to complete this translation, and so I have given up on it at this time. Please take a look at the bibliography. 2 The Quaternions The quaternions form a four dimensional vector space over the reals, with basis vectors 1,i,j,k. Thus a general element is x = x 0 +x 1 i+x 2 j +x 3 k, 2

3 where x 0,x 1,x 2,x 3 are real numbers. Multiplication is defined by i 2 = 1,j 2 = 1,k 2 = 1,ij = ji = k,jk = kj = i,ki = ik = j If α,β are real numbers, and x,y are quaternions, then define So if and then Define the norm of x as (αx)(βy) = (αβ)(xy). x = x 0 +x 1 i+x 2 j +x 3 k, y = y 0 +y 1 i+y 2 j +y 3 k, xy = x 0 y 0 x 1 y 1 x 2 y 2 x 3 y 3 +(x 0 y 1 +x 1 y 0 +x 2 y 3 x 3 y 2 )i +(x 0 y 2 +x 2 y 0 +x 3 y 1 x 1 y 3 )j +(x 0 y 3 +x 3 y 0 +x 1 y 2 x 2 y 1 )k x = Define the conjugate of x as Then So x 2 0 +x 2 1 +x 2 2 +x 2 3 x = x 0 x 1 i x 2 j x 3 k. xx = x x = x 2. x x 2 is the inverse of x, if x is not zero. Thus every nonzero element has an inverse, that is every nonzero element in the ring is a unit, so the quaternions form a division ring. However it is not a field because multiplication is not commutative, that is in general xy yx. Because it is also a vector space it is an algebra, and hence a division algebra. Complex numbers form a two dimensional vector space over the reals and can be used as vectors in physics for two dimensional problems. Hamilton 3

4 invented quaternions to extend complex numbers to three dimensions to be used for three dimensional vector analysis in physics. They were used widely for this purpose in the nineteenth century until J. Willard Gibbs introduced his simplified vector analysis. Notice that Gibbs took from quaternions the unit i, j, k vectors. The two dimensional subspace of the quaternions generated by bases vectors 1,i is the complex numbers. A pure quaternion is one of the form x = x 1 i+x 2 j +x 3 k. If y also is a pure quaternion, then one finds that the product is xy = x y x y, that is the cross product (outer product, vector product) minus the dot product (inner product). So we can begin to see the connection between Hamilton s quaternions and Gibb s vector analysis. The quaternions are associative, but the vector product is not. For example (i i) j = 0, but i (i j) = i k = j. 3 The Quaternion Group The elements{1, i, j, k, 1, i, j, k}, under quaternion multiplication, form a non-abelian group of order eight. The pairs of products selected from the three quaternions i,j,k behave like the corresponding i,j,k unit vectors of vector analysis under the cross product. And ii = 1, jj = 1, kk = 1. And i is the inverse of i, j is the inverse of j, and k is the inverse of k. Thus the quaternions are not communitive, although they are associative. 4

5 The Quaternion Multiplicative Group Table 1 i j k 1 i j k 1 1 i j k 1 i j k i i 1 k j i 1 k j j j k 1 i j k 1 i k k j i 1 k j i i j k 1 i j k i i 1 k j i 1 k j j j k 1 i j k 1 i k k j i 1 k j i 1 4 Matrix Representation of Quaternions The four basis vectors 1,i,j,k can be represented by 2 2 complex matrices, or by 4 4 real matrices, which gives a way of computing with quaternions. See 1 Hungerford Thomas H., Abstract Algebra: An Introduction, 2nd edition, Saunders College Publishing, Page 54, Exercise = i = i 0 0 i j = k = The set H of real quaternions is 0 i i 0 5

6 a1+bi+cj+dk, where a,b,c,d are real numbers. Then each element of H is of the form a+bi c+di c+di a di Exercise. Solve the problems (a),(b),(c),(d) on page 55 of Hungerford. It is easy to verify by doing some multiplications that these four matrices satisfy the defined properties of the quaternions. Here is a script used to load the basis into octave.. % name of script is c:\je\om\quat.m, called an m script % The percentage sign is a comment % quaternion matrices as defined in octave by % 1=q1, i=qi, j= qj, k=qk % q1=1 0; 0 1; q1 qi=i 0; 0 -i; qi qj=0 1 ; -1 0; qj qk=0 i; i 0; qk % First we change the working directory to c:\je\om\quat.m by typing cd \je\om % Typing quat without the extension loads the script into octave. % The m scripts (octave scripts) are located in local directory \je\om % The directory for matlab m scripts is \je\m % These two different directories are used because there is some incompatibility % between matlab and octave scripts, because there can be differences, but not in simple % computations. % Once the quat.m script is loaded into octave, we can proceed to compute with % these basis elements, namely the complex matrix representations of the % quaternions 1,i,j,k 5 The Quaternion Basis Vectors are Linearly Independent Let x,y,z,w satisfy 1 0 x +y 0 1 i 0 0 i +z w 0 i i 0 = 0

7 Then the following four equations must be satisfied, x+yi = 0, z +wi = 0, z +wi = 0, x yi = 0. These have the unique solution x = y = z = w = 0, so the four vectors 1, i, j, k are linearly independent. These four vectors span the quaternions by definition, and so are a basis of the vector space over the real numbers. 6 The Use of Quaternions for Representing Rotations Let x be a unit quaternion, meaning its norm equals 1. We claim that x represents a rotation. Let Let the vector part be then is a unit vector and Then So for some angle θ and So x = x 0 +x 1 i+x 2 j +x 3 k y = x 1 i+x 2 j +x 3 k u = y y x = x 0 + y u 1 = x 2 = x y 2 u 2 = x y 2 x 0 = cos(θ) y = sin(θ). x = cos(θ)+sin(θ)u 7

8 Then given a vector v, the vector v = xvx 1 = xvx, where the multiplication is quaternion multiplication, is the vector obtained by rotating vector v about the u axis by angle 2θ (proof omitted). Conversely, given a rotation axis specified by a unit vector u, and a rotation about this axis by angle 2θ, then the rotation is given by the quaternion x = cos(θ)+sin(θ)u. Rotations specified by matrices are 3 by 3 orthogonal matrices, that is the column vectors are unit vectors and the columns are orthogonal to each other. One can compute the rotation matrix from the quaternion, or the quaternion from the matrix. The quaternion is specified with just four numbers, and a nine number matrix need not be specified to do calculations. 8

9 7 Octonions Theoctonionswere discovered in1843by JohnT. Graves, a friendofwilliam Hamilton, who called them octaves. They were discovered independently by Arthur Cayley (1845). They are sometimes referred to as Cayley numbers or the Cayley algebra. Octonions are not communitive or associative. The octonions are an eight dimensional vector space, with basis vectors 1,i,j,k,l,il,jl,kl with multiplication table: 1 i j k l il jl kl i 1 k j il l kl jl j k 1 i jl kl l il k j i 1 kl jl il l l il jl kl 1 i j k il l kl jl i 1 k j jl kl l il j k 1 i kl jl il l k j i 1 The octonions are the largest of the four normed division algebras, which are, the Real Numbers, the Complex Numbers, the Quaternions, and the Octonions. The Octonians bare a relation to the spinors of quantum mechanics and Pauli s spin matrices. See Penrose in the bibliography. 9

10 8 Bibliography 1 Altmann Simon L., Rotations, Quaternions, and Double Groups, clarendon press, oxford, 1986, (linda hall QC R65A48). 2 Baez, John, The Octonions, 2002, Bulletin of the American Mathematical Society 39: pp 145 to Online HTML versions at Baez s site or see lanl.arxiv.org copy. Theorem 1., p. 150, The real numbers, the complex numbers, the quaternions, and the octonions are the only normed division algebras. See the 1898 paper by Adolf Hurwitz ( ). For a modern proof see Shafer. 3 Birkhoff Garret, Mac Lane Saunders, (Maclane), A Survey of Modern Algebra, 1941, revised edition 1953, Macmillan. 4 Birkhoff Garret, Mac Lane Saunders, (Maclane), A Survey of Modern Algebra, 4th edition, 1977, Macmillan. 5 Cayley, Arthur, On Jacobi s Elliptic Functions and on quaternions, (in reply to... ), Philos. Mag. 26: , reprinted in The Collected Mathematical Papers, 1885 Johnson Reprint Co., New York, 1963, p Conway, John Horton, Smith, Derek A., On Quaternions and Octonions: Their Geometry, Arithmetic, and Symmetry, 2003, A. K. Peters, Ltd., ISBN Dickson L. E., Modern Algebraic Theories, Dover New York, (1936). (Algebraic Theories, 1959). 8 Dickson, Leonard Eugene (1975), Albert, A. Adrian, ed., The collected mathematical papers of Leonard Eugene Dickson, IVI, New York: AMS Chelsea Publishing, ISBN , MR MR Dummit David S., Foote Richard M., Abstract Algebra, Prentice Hall,

11 10 Eckmann B. (Beno), Gruppentheoretischer Beweis des Satzes von Hurwitz-Radon uber die Komposition quatratisher Formen, Comment Math. Helv. 15, (1942), LHL. 11 Herstein I. N., Topics in Algebra, Blaisdell, 1964., (Frobenius Theorem on Division Algebras, Quaternions). 12 Hungerford Thomas H., Abstract Algebra: An Introduction, 2nd edition, Saunders College Publishing, Hurwitz A. (Adolph), Uber die Komposition der Quadratishen Formen, Collected Papers 2, (1933), LHL. 14 Hurwitz Adolph, Uber die Composition der quadratishen Formen von Beliebig vielen Variabeln. Nachr. Ges. Wiss. Göttingen (1898), (On the Composition of Quadratic Forms in Many (any number of) Variables) 15 Murnaghan Francis D., The Theory of Group Representations, 1938, Dover Penrose Roger, The Road to Reality, Alfred A. Knopf, Shafer Richard D., Introduction to Non-Associative Algebras, Dover, New York, 1995, MR 96j: Stiefel E., On Cauchy-Riemann Equations in Higher Dimensions, Journal of Research of the National Bureau of Standards, Vol. 48, No. 5, May 1952, Research Paper Taussky O.(Olga Taussky-Todd), An Algebraic Property of Laplace s Differential Equation, Quart. J. Math. 10, 99, (1939). 20 Ward J. P., Quaternions and Cayley Numbers, 1997, Kluwer Academic Publishers. (linda hall library QA196.w37), (an interesting book, with a good bibliography.) 11

12 21 Weyl Herman, The Classical Groups, their Invarients and Representations, Princeton University Press (1938). 22 Weyl Herman, The Theory of Groups and Quantum Mechanics, E. P. Dutton, New York, (1931), (Dover). 12

13 9 Index Cayley algebra 9 Cayley numbers 9 linear independence 6 pure quaternions 4 quaternion, matrix representation 5 real quaternions 5 13

The Quaternions & Octonions: A Basic introduction to Their Algebras. By: Kyle McAllister. Boise State University

The Quaternions & Octonions: A Basic introduction to Their Algebras. By: Kyle McAllister. Boise State University The Quaternions & Octonions: A Basic introduction to Their Algebras By: Kyle McAllister Boise State University McAllister The Quaternions and Octonions have a storied history, one with a restless supporter,

More information

An Asymptotic Bound on the Composition Number of Integer Sums of Squares Formulas

An Asymptotic Bound on the Composition Number of Integer Sums of Squares Formulas Canad. Math. Bull. Vol. 56 (1), 2013 pp. 70 79 http://dx.doi.org/10.4153/cmb-2011-143-x c Canadian Mathematical Society 2011 An Asymptotic Bound on the Composition Number of Integer Sums of Squares Formulas

More information

Bibliography. Groups and Fields. Matrix Theory. Determinants

Bibliography. Groups and Fields. Matrix Theory. Determinants Bibliography Groups and Fields Alperin, J. L.; Bell, Rowen B. Groups and representations. Graduate Texts in Mathematics, 162. Springer-Verlag, New York, 1995. Artin, Michael Algebra. Prentice Hall, Inc.,

More information

Conway s group and octonions

Conway s group and octonions Conway s group and octonions Robert A. Wilson School of Mathematical Sciences, Queen Mary, University of London, Mile End Road, London E 4NS Submitted 7th March 009 Abstract We give a description of the

More information

Hypercomplex numbers

Hypercomplex numbers Hypercomplex numbers Johanna Rämö Queen Mary, University of London j.ramo@qmul.ac.uk We have gradually expanded the set of numbers we use: first from finger counting to the whole set of positive integers,

More information

Subalgebras of the Split Octonions

Subalgebras of the Split Octonions Subalgebras of the Split Octonions Lida Bentz July 27, 2017 CONTENTS CONTENTS Contents 1 Introduction 3 1.1 Complex numbers......................... 3 1.2 Quaternions............................ 3 1.3

More information

Bott Periodicity and Clifford Algebras

Bott Periodicity and Clifford Algebras Bott Periodicity and Clifford Algebras Kyler Siegel November 27, 2012 Contents 1 Introduction 1 2 Clifford Algebras 3 3 Vector Fields on Spheres 6 4 Division Algebras 7 1 Introduction Recall for that a

More information

Lecture 7. Quaternions

Lecture 7. Quaternions Matthew T. Mason Mechanics of Manipulation Spring 2012 Today s outline Motivation Motivation have nice geometrical interpretation. have advantages in representing rotation. are cool. Even if you don t

More information

Quaternion Algebras. Edgar Elliott. May 1, 2016

Quaternion Algebras. Edgar Elliott. May 1, 2016 Quaternion Algebras Edgar Elliott May 1, 2016 Copyright (C) 2016 Edgar Elliott. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License,

More information

The Eigenvalue Problem over H and O. Quaternionic and Octonionic Matrices

The Eigenvalue Problem over H and O. Quaternionic and Octonionic Matrices The Eigenvalue Problem for Quaternionic and Octonionic Matrices Departments of Mathematics & Physics Oregon State University http://math.oregonstate.edu/~tevian http://physics.oregonstate.edu/~corinne

More information

Section 3.2. Multiplication of Matrices and Multiplication of Vectors and Matrices

Section 3.2. Multiplication of Matrices and Multiplication of Vectors and Matrices 3.2. Multiplication of Matrices and Multiplication of Vectors and Matrices 1 Section 3.2. Multiplication of Matrices and Multiplication of Vectors and Matrices Note. In this section, we define the product

More information

Split Quaternions and Particles in (2+1)-Space

Split Quaternions and Particles in (2+1)-Space Split and Particles in (2+1)-Space Merab GOGBERASHVILI Javakhishvili State University & Andronikashvili Institute of Physics Tbilisi, Georgia Plan of the talk Split Split Usually geometry is thought to

More information

An eightfold path to E 8

An eightfold path to E 8 An eightfold path to E 8 Robert A. Wilson First draft 17th November 2008; this version 29th April 2012 Introduction Finite-dimensional real reflection groups were classified by Coxeter [2]. In two dimensions,

More information

Merging Mathematical Technologies by Applying the Reverse bra-ket Method By J.A.J. van Leunen

Merging Mathematical Technologies by Applying the Reverse bra-ket Method By J.A.J. van Leunen Merging Mathematical Technologies by Applying the Reverse bra-ket Method By J.A.J. van Leunen http://www.e-physics.eu Abstract Last modified: 28 September 2016 Hilbert spaces can store discrete members

More information

Lie Algebra of Unit Tangent Bundle in Minkowski 3-Space

Lie Algebra of Unit Tangent Bundle in Minkowski 3-Space INTERNATIONAL ELECTRONIC JOURNAL OF GEOMETRY VOLUME 12 NO. 1 PAGE 1 (2019) Lie Algebra of Unit Tangent Bundle in Minkowski 3-Space Murat Bekar (Communicated by Levent Kula ) ABSTRACT In this paper, a one-to-one

More information

DOES XY 2 = Z 2 IMPLY X IS A SQUARE?

DOES XY 2 = Z 2 IMPLY X IS A SQUARE? DOES XY 2 = Z 2 IMPLY X IS A SQUARE? JACK S. CALCUT 1. Introduction Ordinary integers have the property that if the product of a number and a square is a square, then the number itself is a square. That

More information

Clifford Algebras and Spin Groups

Clifford Algebras and Spin Groups Clifford Algebras and Spin Groups Math G4344, Spring 2012 We ll now turn from the general theory to examine a specific class class of groups: the orthogonal groups. Recall that O(n, R) is the group of

More information

A Matricial Perpective of Wedderburn s Little Theorem

A Matricial Perpective of Wedderburn s Little Theorem International Journal of Algebra, Vol 5, 2011, no 27, 1305-1311 A Matricial Perpective of Wedderburn s Little Theorem Celino Miguel Instituto de Telecomunucações Pólo de Coimbra Laboratório da Covilhã

More information

Chapter XI Novanion rings

Chapter XI Novanion rings Chapter XI Novanion rings 11.1 Introduction. In this chapter we continue to provide general structures for theories in physics. J. F. Adams proved in 1960 that the only possible division algebras are at

More information

Octonions? A non-associative geometric algebra. Benjamin Prather. October 19, Florida State University Department of Mathematics

Octonions? A non-associative geometric algebra. Benjamin Prather. October 19, Florida State University Department of Mathematics A non-associative geometric algebra Benjamin Florida State University Department of Mathematics October 19, 2017 Let K be a field with 1 1 Let V be a vector space over K. Let, : V V K. Definition V is

More information

Quaternion Algebras. Properties and Applications. Rob Eimerl. May 5th, University of Puget Sound. 1 Department of Mathematics

Quaternion Algebras. Properties and Applications. Rob Eimerl. May 5th, University of Puget Sound. 1 Department of Mathematics Quaternion Algebras Properties and Applications Rob Eimerl 1 Department of Mathematics University of Puget Sound May 5th, 2015 Quaternion Algebra Definition: Let be a field and A be a vector space over

More information

Problem Set 1. Homeworks will graded based on content and clarity. Please show your work clearly for full credit.

Problem Set 1. Homeworks will graded based on content and clarity. Please show your work clearly for full credit. CSE 151: Introduction to Machine Learning Winter 2017 Problem Set 1 Instructor: Kamalika Chaudhuri Due on: Jan 28 Instructions This is a 40 point homework Homeworks will graded based on content and clarity

More information

Special Lecture - The Octionions

Special Lecture - The Octionions Special Lecture - The Octionions March 15, 2013 1 R 1.1 Definition Not much needs to be said here. From the God given natural numbers, we algebraically build Z and Q. Then create a topology from the distance

More information

Tensor Analysis in Euclidean Space

Tensor Analysis in Euclidean Space Tensor Analysis in Euclidean Space James Emery Edited: 8/5/2016 Contents 1 Classical Tensor Notation 2 2 Multilinear Functionals 4 3 Operations With Tensors 5 4 The Directional Derivative 5 5 Curvilinear

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

Class Equation & Conjugacy in Groups

Class Equation & Conjugacy in Groups Subject: ALEBRA - V Lesson: Class Equation & Conjugacy in roups Lesson Developer: Shweta andhi Department / College: Department of Mathematics, Miranda House, University of Delhi Institute of Lifelong

More information

Complex Numbers and Quaternions for Calc III

Complex Numbers and Quaternions for Calc III Complex Numbers and Quaternions for Calc III Taylor Dupuy September, 009 Contents 1 Introduction 1 Two Ways of Looking at Complex Numbers 1 3 Geometry of Complex Numbers 4 Quaternions 5 4.1 Connection

More information

QUATERNIONS AND ROTATIONS

QUATERNIONS AND ROTATIONS QUATERNIONS AND ROTATIONS SVANTE JANSON 1. Introduction The purpose of this note is to show some well-known relations between quaternions and the Lie groups SO(3) and SO(4) (rotations in R 3 and R 4 )

More information

Quaternions and Groups

Quaternions and Groups Quaternions and Groups Rich Schwartz October 16, 2014 1 What is a Quaternion? A quaternion is a symbol of the form a+bi+cj +dk, where a,b,c,d are real numbers and i,j,k are special symbols that obey the

More information

Math Problem set # 7

Math Problem set # 7 Math 128 - Problem set # 7 Clifford algebras. April 8, 2004 due April 22 Because of disruptions due the the Jewish holidays and surgery on my knee there will be no class next week (April 13 or 15). (Doctor

More information

Introduction to Modern Quantum Field Theory

Introduction to Modern Quantum Field Theory Department of Mathematics University of Texas at Arlington Arlington, TX USA Febuary, 2016 Recall Einstein s famous equation, E 2 = (Mc 2 ) 2 + (c p) 2, where c is the speed of light, M is the classical

More information

Lecture 10: A (Brief) Introduction to Group Theory (See Chapter 3.13 in Boas, 3rd Edition)

Lecture 10: A (Brief) Introduction to Group Theory (See Chapter 3.13 in Boas, 3rd Edition) Lecture 0: A (Brief) Introduction to Group heory (See Chapter 3.3 in Boas, 3rd Edition) Having gained some new experience with matrices, which provide us with representations of groups, and because symmetries

More information

OCTONION ALGEBRA AND ITS MATRIX REPRESENTATIONS

OCTONION ALGEBRA AND ITS MATRIX REPRESENTATIONS Palestine Journal of Mathematics Vol 6(1)(2017) 307 313 Palestine Polytechnic University-PPU 2017 O/Z p OCTONION ALGEBRA AND ITS MATRIX REPRESENTATIONS Serpil HALICI and Adnan KARATAŞ Communicated by Ayman

More information

Chapter 2. Vectors and Vector Spaces

Chapter 2. Vectors and Vector Spaces 2.1. Operations on Vectors 1 Chapter 2. Vectors and Vector Spaces Section 2.1. Operations on Vectors Note. In this section, we define several arithmetic operations on vectors (especially, vector addition

More information

Real Composition Algebras by Steven Clanton

Real Composition Algebras by Steven Clanton Real Composition Algebras by Steven Clanton A Thesis Submitted to the Faculty of The Wilkes Honors College in Partial Fulfillment of the Requirements for the Degree of Bachelor of Arts in Liberal Arts

More information

A Brief History of Ring Theory. by Kristen Pollock Abstract Algebra II, Math 442 Loyola College, Spring 2005

A Brief History of Ring Theory. by Kristen Pollock Abstract Algebra II, Math 442 Loyola College, Spring 2005 A Brief History of Ring Theory by Kristen Pollock Abstract Algebra II, Math 442 Loyola College, Spring 2005 A Brief History of Ring Theory Kristen Pollock 2 1. Introduction In order to fully define and

More information

MODEL ANSWERS TO HWK #7. 1. Suppose that F is a field and that a and b are in F. Suppose that. Thus a = 0. It follows that F is an integral domain.

MODEL ANSWERS TO HWK #7. 1. Suppose that F is a field and that a and b are in F. Suppose that. Thus a = 0. It follows that F is an integral domain. MODEL ANSWERS TO HWK #7 1. Suppose that F is a field and that a and b are in F. Suppose that a b = 0, and that b 0. Let c be the inverse of b. Multiplying the equation above by c on the left, we get 0

More information

msqm 2011/8/14 21:35 page 189 #197

msqm 2011/8/14 21:35 page 189 #197 msqm 2011/8/14 21:35 page 189 #197 Bibliography Dirac, P. A. M., The Principles of Quantum Mechanics, 4th Edition, (Oxford University Press, London, 1958). Feynman, R. P. and A. P. Hibbs, Quantum Mechanics

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

REPRESENTATION THEORY NOTES FOR MATH 4108 SPRING 2012

REPRESENTATION THEORY NOTES FOR MATH 4108 SPRING 2012 REPRESENTATION THEORY NOTES FOR MATH 4108 SPRING 2012 JOSEPHINE YU This note will cover introductory material on representation theory, mostly of finite groups. The main references are the books of Serre

More information

over a field F with char F 2: we define

over a field F with char F 2: we define Chapter 3 Involutions In this chapter, we define the standard involution (also called conjugation) on a quaternion algebra. In this way, we characterize division quaternion algebras as noncommutative division

More information

Linear algebra. 1.1 Numbers. d n x = 10 n (1.1) n=m x

Linear algebra. 1.1 Numbers. d n x = 10 n (1.1) n=m x 1 Linear algebra 1.1 Numbers The natural numbers are the positive integers and zero. Rational numbers are ratios of integers. Irrational numbers have decimal digits d n d n x = 10 n (1.1 n=m x that do

More information

MODEL ANSWERS TO THE FIRST HOMEWORK

MODEL ANSWERS TO THE FIRST HOMEWORK MODEL ANSWERS TO THE FIRST HOMEWORK 1. Chapter 4, 1: 2. Suppose that F is a field and that a and b are in F. Suppose that a b = 0, and that b 0. Let c be the inverse of b. Multiplying the equation above

More information

4.6. Linear Operators on Hilbert Spaces

4.6. Linear Operators on Hilbert Spaces 4.6. Linear Operators on Hilbert Spaces 1 4.6. Linear Operators on Hilbert Spaces Note. This section explores a number of different kinds of bounded linear transformations (or, equivalently, operators

More information

Remarks on the Cayley Representation of Orthogonal Matrices and on Perturbing the Diagonal of a Matrix to Make it Invertible

Remarks on the Cayley Representation of Orthogonal Matrices and on Perturbing the Diagonal of a Matrix to Make it Invertible Remarks on the Cayley Representation of Orthogonal Matrices and on Perturbing the Diagonal of a Matrix to Make it Invertible Jean Gallier Department of Computer and Information Science University of Pennsylvania

More information

Chapter 2. Vectors and Vector Spaces

Chapter 2. Vectors and Vector Spaces 2.2. Cartesian Coordinates and Geometrical Properties of Vectors 1 Chapter 2. Vectors and Vector Spaces Section 2.2. Cartesian Coordinates and Geometrical Properties of Vectors Note. There is a natural

More information

e j = Ad(f i ) 1 2a ij/a ii

e j = Ad(f i ) 1 2a ij/a ii A characterization of generalized Kac-Moody algebras. J. Algebra 174, 1073-1079 (1995). Richard E. Borcherds, D.P.M.M.S., 16 Mill Lane, Cambridge CB2 1SB, England. Generalized Kac-Moody algebras can be

More information

Group, Rings, and Fields Rahul Pandharipande. I. Sets Let S be a set. The Cartesian product S S is the set of ordered pairs of elements of S,

Group, Rings, and Fields Rahul Pandharipande. I. Sets Let S be a set. The Cartesian product S S is the set of ordered pairs of elements of S, Group, Rings, and Fields Rahul Pandharipande I. Sets Let S be a set. The Cartesian product S S is the set of ordered pairs of elements of S, A binary operation φ is a function, S S = {(x, y) x, y S}. φ

More information

Multiplication on R n

Multiplication on R n Multiplication on R n 1. Division Algebra and Vector Product Basudeb Datta Basudeb Datta received his Ph D degree from the Indian Statistical Institute in 1988. Since July 1992 he has been at the Indian

More information

A primer on matrices

A primer on matrices A primer on matrices Stephen Boyd August 4, 2007 These notes describe the notation of matrices, the mechanics of matrix manipulation, and how to use matrices to formulate and solve sets of simultaneous

More information

Introduction to Group Theory

Introduction to Group Theory Chapter 10 Introduction to Group Theory Since symmetries described by groups play such an important role in modern physics, we will take a little time to introduce the basic structure (as seen by a physicist)

More information

arxiv: v4 [quant-ph] 9 Jun 2016

arxiv: v4 [quant-ph] 9 Jun 2016 Applying Classical Geometry Intuition to Quantum arxiv:101.030v4 [quant-ph] 9 Jun 016 Spin Dallin S. Durfee and James L. Archibald Department of Physics and Astronomy, Brigham Young University, Provo,

More information

Introduction. Semi-historical motivation

Introduction. Semi-historical motivation Introduction Semi-historical motivation The algebraic theory of fields is intimately connected with the theory of numbers, and the study of this connection forms the basis of algebraic number theory. To

More information

Hopf Fibrations. Consider a classical magnetization field in R 3 which is longitidinally stiff and transversally soft.

Hopf Fibrations. Consider a classical magnetization field in R 3 which is longitidinally stiff and transversally soft. Helmut Eschrig Leibniz-Institut für Festkörper- und Werkstofforschung Dresden Leibniz-Institute for Solid State and Materials Research Dresden Hopf Fibrations Consider a classical magnetization field in

More information

PHYS 705: Classical Mechanics. Rigid Body Motion Introduction + Math Review

PHYS 705: Classical Mechanics. Rigid Body Motion Introduction + Math Review 1 PHYS 705: Classical Mechanics Rigid Body Motion Introduction + Math Review 2 How to describe a rigid body? Rigid Body - a system of point particles fixed in space i r ij j subject to a holonomic constraint:

More information

Section V.2. The Fundamental Theorem (of Galois Theory)

Section V.2. The Fundamental Theorem (of Galois Theory) V.2. The Fundamental Theorem (of Galois Theory) 1 Section V.2. The Fundamental Theorem (of Galois Theory) Note. In this section, we define the Galois group of an arbitrary field extension. We prove (after

More information

Division Algebras and Physics

Division Algebras and Physics Division Algebras and Physics Francesco Toppan CBPF - CCP Rua Dr. Xavier Sigaud 150, cep 22290-180 Rio de Janeiro (RJ), Brazil Abstract A quick and condensed review of the basic properties of the division

More information

Umbral groups. Robert A. Wilson. LMS EPSRC Durham Symposium, 4th August 2015

Umbral groups. Robert A. Wilson. LMS EPSRC Durham Symposium, 4th August 2015 Umbral groups Robert A. Wilson LMS EPSRC Durham Symposium, 4th August 2015 1 Introduction Background When I was first asked to give a talk about umbral groups, I declined, on the grounds that I did not

More information

Chapter 2. Linear Algebra. rather simple and learning them will eventually allow us to explain the strange results of

Chapter 2. Linear Algebra. rather simple and learning them will eventually allow us to explain the strange results of Chapter 2 Linear Algebra In this chapter, we study the formal structure that provides the background for quantum mechanics. The basic ideas of the mathematical machinery, linear algebra, are rather simple

More information

arxiv:math/ v3 [math.mg] 11 Dec 2004

arxiv:math/ v3 [math.mg] 11 Dec 2004 arxiv:math/0212098v3 [math.mg] 11 Dec 2004 CIRCLES AND QUADRATIC MAPS BETWEEN SPHERES VLADLEN TIMORIN Abstract. Consider an analytic map of a neighborhood of 0 in a vector space to a Euclidean space. Suppose

More information

A linear algebra proof of the fundamental theorem of algebra

A linear algebra proof of the fundamental theorem of algebra A linear algebra proof of the fundamental theorem of algebra Andrés E. Caicedo May 18, 2010 Abstract We present a recent proof due to Harm Derksen, that any linear operator in a complex finite dimensional

More information

EXERCISES IN MODULAR FORMS I (MATH 726) (2) Prove that a lattice L is integral if and only if its Gram matrix has integer coefficients.

EXERCISES IN MODULAR FORMS I (MATH 726) (2) Prove that a lattice L is integral if and only if its Gram matrix has integer coefficients. EXERCISES IN MODULAR FORMS I (MATH 726) EYAL GOREN, MCGILL UNIVERSITY, FALL 2007 (1) We define a (full) lattice L in R n to be a discrete subgroup of R n that contains a basis for R n. Prove that L is

More information

Understanding Quaternions. Ron Goldman Department of Computer Science Rice University

Understanding Quaternions. Ron Goldman Department of Computer Science Rice University Understanding Quaternions Ron Goldman Department of Computer Science Rice University The invention of the calculus of quaternions is a step towards the knowledge of quantities related to space which can

More information

A linear algebra proof of the fundamental theorem of algebra

A linear algebra proof of the fundamental theorem of algebra A linear algebra proof of the fundamental theorem of algebra Andrés E. Caicedo May 18, 2010 Abstract We present a recent proof due to Harm Derksen, that any linear operator in a complex finite dimensional

More information

HURWITZ THEOREM BRUCE W. WESTBURY

HURWITZ THEOREM BRUCE W. WESTBURY HURWITZ THEOREM BRUCE W. WESTBURY 1. Introduction In this article we describe several results based on the paper [Hur98] and which we will refer to as Hurwitz theorem. There are several related results:

More information

Sums of squares, the octonions, and (7, 3, 1)

Sums of squares, the octonions, and (7, 3, 1) Sums of squares, the octonions, and (7, 3, 1) Ezra Virginia Tech MD/DC/VA Spring Section Meeting Stevenson University April 14, 2012 What To Expect Sums of squares Normed algebras (7, 3, 1) 1-, 2- and

More information

On families of anticommuting matrices

On families of anticommuting matrices On families of anticommuting matrices Pavel Hrubeš December 18, 214 Abstract Let e 1,..., e k be complex n n matrices such that e ie j = e je i whenever i j. We conjecture that rk(e 2 1) + rk(e 2 2) +

More information

The GEOMETRY of the OCTONIONS

The GEOMETRY of the OCTONIONS The GEOMETRY of the OCTONIONS Tevian Dray I: Octonions II: Rotations III: Lorentz Transformations IV: Dirac Equation V: Exceptional Groups VI: Eigenvectors DIVISION ALGEBRAS Real Numbers: R Quaternions:

More information

Physics 557 Lecture 5

Physics 557 Lecture 5 Physics 557 Lecture 5 Group heory: Since symmetries and the use of group theory is so much a part of recent progress in particle physics we will take a small detour to introduce the basic structure (as

More information

On the Universal Enveloping Algebra: Including the Poincaré-Birkhoff-Witt Theorem

On the Universal Enveloping Algebra: Including the Poincaré-Birkhoff-Witt Theorem On the Universal Enveloping Algebra: Including the Poincaré-Birkhoff-Witt Theorem Tessa B. McMullen Ethan A. Smith December 2013 1 Contents 1 Universal Enveloping Algebra 4 1.1 Construction of the Universal

More information

The Fourth Dimension

The Fourth Dimension The Fourth Dimension Mary Jaskowak Mercyhurst University May 2017 Mary Jaskowak (Mercyhurst University) The Fourth Dimension May 2017 1 / 16 How do you move in one dimension? -5-4 -3-2 -1 0 1 2 3 4 5 How

More information

REFLECTIONS IN A EUCLIDEAN SPACE

REFLECTIONS IN A EUCLIDEAN SPACE REFLECTIONS IN A EUCLIDEAN SPACE PHILIP BROCOUM Let V be a finite dimensional real linear space. Definition 1. A function, : V V R is a bilinear form in V if for all x 1, x, x, y 1, y, y V and all k R,

More information

Linear Algebra. Workbook

Linear Algebra. Workbook Linear Algebra Workbook Paul Yiu Department of Mathematics Florida Atlantic University Last Update: November 21 Student: Fall 2011 Checklist Name: A B C D E F F G H I J 1 2 3 4 5 6 7 8 9 10 xxx xxx xxx

More information

Quantum Information & Quantum Computing

Quantum Information & Quantum Computing Math 478, Phys 478, CS4803, February 9, 006 1 Georgia Tech Math, Physics & Computing Math 478, Phys 478, CS4803 Quantum Information & Quantum Computing Problems Set 1 Due February 9, 006 Part I : 1. Read

More information

A primer on matrices

A primer on matrices A primer on matrices Stephen Boyd August 4, 2007 These notes describe the notation of matrices, the mechanics of matrix manipulation, and how to use matrices to formulate and solve sets of simultaneous

More information

Matrix Algebra: Vectors

Matrix Algebra: Vectors A Matrix Algebra: Vectors A Appendix A: MATRIX ALGEBRA: VECTORS A 2 A MOTIVATION Matrix notation was invented primarily to express linear algebra relations in compact form Compactness enhances visualization

More information

Quantum Mechanics- I Prof. Dr. S. Lakshmi Bala Department of Physics Indian Institute of Technology, Madras

Quantum Mechanics- I Prof. Dr. S. Lakshmi Bala Department of Physics Indian Institute of Technology, Madras Quantum Mechanics- I Prof. Dr. S. Lakshmi Bala Department of Physics Indian Institute of Technology, Madras Lecture - 6 Postulates of Quantum Mechanics II (Refer Slide Time: 00:07) In my last lecture,

More information

Functional Analysis. James Emery. Edit: 8/7/15

Functional Analysis. James Emery. Edit: 8/7/15 Functional Analysis James Emery Edit: 8/7/15 Contents 0.1 Green s functions in Ordinary Differential Equations...... 2 0.2 Integral Equations........................ 2 0.2.1 Fredholm Equations...................

More information

Definition 1. A set V is a vector space over the scalar field F {R, C} iff. there are two operations defined on V, called vector addition

Definition 1. A set V is a vector space over the scalar field F {R, C} iff. there are two operations defined on V, called vector addition 6 Vector Spaces with Inned Product Basis and Dimension Section Objective(s): Vector Spaces and Subspaces Linear (In)dependence Basis and Dimension Inner Product 6 Vector Spaces and Subspaces Definition

More information

Division Algebras: Family Replication. Geoffrey Dixon 4 April 2004

Division Algebras: Family Replication. Geoffrey Dixon 4 April 2004 Division Algebras Family Replication Geoffrey Dixon gdixon@7stones.com April 00 The link of the Division Algebras to 0-dimensional spacetime and one leptoquark family is extended to encompass three leptoquark

More information

ON MATRICES WHOSE REAL LINEAR COMBINATIONS ARE NONSINGULAR

ON MATRICES WHOSE REAL LINEAR COMBINATIONS ARE NONSINGULAR ON MATRICES WHOSE REAL LINEAR COMBINATIONS ARE NONSINGULAR J. F. ADAMS, PETER D. LAX1 AND RALPH S. PHILLIPS2 Let A be either the real field R, or the complex field C, or the skew field Q of quaternions.

More information

Mathematical Methods wk 1: Vectors

Mathematical Methods wk 1: Vectors Mathematical Methods wk : Vectors John Magorrian, magog@thphysoxacuk These are work-in-progress notes for the second-year course on mathematical methods The most up-to-date version is available from http://www-thphysphysicsoxacuk/people/johnmagorrian/mm

More information

Mathematical Methods wk 1: Vectors

Mathematical Methods wk 1: Vectors Mathematical Methods wk : Vectors John Magorrian, magog@thphysoxacuk These are work-in-progress notes for the second-year course on mathematical methods The most up-to-date version is available from http://www-thphysphysicsoxacuk/people/johnmagorrian/mm

More information

Vector Spaces for Quantum Mechanics J. P. Leahy January 30, 2012

Vector Spaces for Quantum Mechanics J. P. Leahy January 30, 2012 PHYS 20602 Handout 1 Vector Spaces for Quantum Mechanics J. P. Leahy January 30, 2012 Handout Contents Examples Classes Examples for Lectures 1 to 4 (with hints at end) Definitions of groups and vector

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

Quaternion. Hoon Kwon. March 13, 2010

Quaternion. Hoon Kwon. March 13, 2010 Quaternion Hoon Kwon March 13, 2010 1 Abstract The concept of Quaternion is introduced here through the group and ring theory. The relationship between complex numbers (Gaussian Integers) and Quaternions

More information

Black Holes & Qubits

Black Holes & Qubits Black Holes & Qubits Duminda Dahanayake Imperial College London Supervised by Mike Duff Working with: Leron Borsten & Hajar Ebrahim Essential Message Stringy Black Hole Entropy = Quantum Information Theory

More information

On complexified quantum mechanics and space-time

On complexified quantum mechanics and space-time On complexified quantum mechanics and space-time Dorje C. Brody Mathematical Sciences Brunel University, Uxbridge UB8 3PH dorje.brody@brunel.ac.uk Quantum Physics with Non-Hermitian Operators Dresden:

More information

Numerical Methods I Solving Square Linear Systems: GEM and LU factorization

Numerical Methods I Solving Square Linear Systems: GEM and LU factorization Numerical Methods I Solving Square Linear Systems: GEM and LU factorization Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 MATH-GA 2011.003 / CSCI-GA 2945.003, Fall 2014 September 18th,

More information

sin(α + θ) = sin α cos θ + cos α sin θ cos(α + θ) = cos α cos θ sin α sin θ

sin(α + θ) = sin α cos θ + cos α sin θ cos(α + θ) = cos α cos θ sin α sin θ Rotations in the 2D Plane Trigonometric addition formulas: sin(α + θ) = sin α cos θ + cos α sin θ cos(α + θ) = cos α cos θ sin α sin θ Rotate coordinates by angle θ: 1. Start with x = r cos α y = r sin

More information

Linear Algebra and Eigenproblems

Linear Algebra and Eigenproblems Appendix A A Linear Algebra and Eigenproblems A working knowledge of linear algebra is key to understanding many of the issues raised in this work. In particular, many of the discussions of the details

More information

Disclaimer. [disclaimer]

Disclaimer. [disclaimer] Disclaimer This is a problem set (as turned in) for the module physics755. This problem set is not reviewed by a tutor. This is just what I have turned in. All problem sets for this module can be found

More information

References for M647. General Modeling MATLAB

References for M647. General Modeling MATLAB References for M647 During the course of the semester we will discuss the role of modeling in a wide range of disciplines, and so it s fairly natural that we will have quite a few references. The idea

More information

TWISTORS AND THE OCTONIONS Penrose 80. Nigel Hitchin. Oxford July 21st 2011

TWISTORS AND THE OCTONIONS Penrose 80. Nigel Hitchin. Oxford July 21st 2011 TWISTORS AND THE OCTONIONS Penrose 80 Nigel Hitchin Oxford July 21st 2011 8th August 1931 8th August 1931 1851... an oblong arrangement of terms consisting, suppose, of lines and columns. This will not

More information

Linear Algebra Review

Linear Algebra Review Chapter 1 Linear Algebra Review It is assumed that you have had a course in linear algebra, and are familiar with matrix multiplication, eigenvectors, etc. I will review some of these terms here, but quite

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

(Refer Slide Time: 2:04)

(Refer Slide Time: 2:04) Linear Algebra By Professor K. C. Sivakumar Department of Mathematics Indian Institute of Technology, Madras Module 1 Lecture 1 Introduction to the Course Contents Good morning, let me welcome you to this

More information

1 Vectors. Notes for Bindel, Spring 2017 Numerical Analysis (CS 4220)

1 Vectors. Notes for Bindel, Spring 2017 Numerical Analysis (CS 4220) Notes for 2017-01-30 Most of mathematics is best learned by doing. Linear algebra is no exception. You have had a previous class in which you learned the basics of linear algebra, and you will have plenty

More information

Contents. Preface for the Instructor. Preface for the Student. xvii. Acknowledgments. 1 Vector Spaces 1 1.A R n and C n 2

Contents. Preface for the Instructor. Preface for the Student. xvii. Acknowledgments. 1 Vector Spaces 1 1.A R n and C n 2 Contents Preface for the Instructor xi Preface for the Student xv Acknowledgments xvii 1 Vector Spaces 1 1.A R n and C n 2 Complex Numbers 2 Lists 5 F n 6 Digression on Fields 10 Exercises 1.A 11 1.B Definition

More information

Real Division Algebras

Real Division Algebras Real Division Algebras Let me rst put up some properties for an algebra: Denition (Algebra over R) together with a multiplication An algebra over R is a vector space A over R A A R which satises Bilinearly:

More information