Example: marketing

Basic Mathematics Notes - Home: Earth and Environment

Basic MathematicsContents1 Basic Questions ..22 Linear and Vectors .. by a scalar .. of two matrices .. for matrix-matrix multiplication .. multiplication .. Matrices .. Scalar products and orthogonality .. Systems .. determinants to invert a2 2matrix .. and Eigenvectors .. 153 Differentiation and .. Results .. rule .. rule .. rule .. points in 1D .. derivatives .. points in 2 dimensions .. Series .. Integrals.

then, A+ B= 2 6 4 a 11 + b 11 a 12 + b 12 a 21 + b 21 a 22 + b 22 3 7 5 (5) 2.1.4 Subtraction Similar to addition, corresponding elements in Aand Bare subtracted from each other: A B=

Tags:

  Notes, Basics, Additions, Subtractions, Mathematics, Basic mathematics notes

Information

Domain:

Source:

Link to this page:

Please notify us if you found a problem with this document:

Other abuse

Transcription of Basic Mathematics Notes - Home: Earth and Environment

1 Basic MathematicsContents1 Basic Questions ..22 Linear and Vectors .. by a scalar .. of two matrices .. for matrix-matrix multiplication .. multiplication .. Matrices .. Scalar products and orthogonality .. Systems .. determinants to invert a2 2matrix .. and Eigenvectors .. 153 Differentiation and .. Results .. rule .. rule .. rule .. points in 1D .. derivatives .. points in 2 dimensions .. Series .. Integrals.

2 294 Complex .. concept .. Plane .. Form .. Notation .. Application to waves .. Amplitude and phase .. Complex solution to the wave equation .. 435 Error Notation .. of errors .. with worst case scenario? .. Distribution .. limit theorem .. Intervals .. 4911 Basic SkillsThis document contains Notes on Basic Mathematics . There are links to the corresponding LeedsUniversity Libraryskills@Leeds page, in which there are subject Notes , videos and you require more in-depth explanations of these concepts, you can visit the Wolfram Math-world website: Wolfram link( ) Algebra (Expanding brackets, Factorising) : Library link( ).

3 Fractions : Library link( ). Indices and Powers : Library link( ). Vectors : Library link( ). Trigonometry and geometry : Library link( ). Differentiation and Integration : Library link( ). Practice QuestionsThere are practice equations available online to accompany these Linear Algebra Wolfram link( ) Matrices and Vectors Library link( ) DefinitionsA matrix is a rectangular array of numbers enclosed in brackets. These numbers are calledentries orelements of the 1360 1 4 (1)MatrixAhas 2 rows and 3 is a matrix with a single [1 3 6](2)Whereas acolumnvector is a matrix with a single 10 (3)The size of a matrix is defined byn mwherenis the number of rows andmis the numberof columns.

4 MatrixA, as defined in equation 1, is a2 element of a matrix can be described by its row position and column position. For ex-3ample: the top left element in matrixA, equal to 1, is in row 1 and column 1 and can belabelled as elementa11; the element in the 2ndcolumn of row 1, equal to 3, is labelled general elementaijis located in rowiand columnj(see equation 4 for a further example). NotationThere are different types of notation for matrices and vectors that you may encounter in textbooks.

5 Below are some examples:MatrixAitalicsAbold, italicsAdouble underline, italicsVectorxitalics~xtop arrow, italicsxsingle underline, Addition Wolfram link( ) Video link( )Two matrices (or vectors) of the same size (n m) may be added together, element byelement. For instance, if we have two matricesAandB:A= a11a12a21a22 B= b11b12b21b22 (4)4then,A+B= a11+b11a12+b12a21+b21a22+b22 (5) SubtractionSimilar to addition, corresponding elements inAandBare subtracted from each other:A B= a11 b11a12 b12a21 b21a22 b22 (6) Multiplication by a scalarIf is a number ( a scalar) andAis a matrix, then Ais also a matrix with entries a11 a12 a21 a22 (7) Multiplication of two matrices Wolfram link( )This is non-trivial and is governed by a special rule.

6 Two matricesA, whereAis of sizen m, andBof sizep q, can only be multiplied ifm=p, the number of columns inAmust match the number of rows inB. The matrix produced has sizen q, with each entrybeing the dot (or scalar) product (see section ) of a whole row inAby a whole column ifA= 1360 1 4 andB= 1 235 679 10 11 (8)thenAB= (1 1)(1 2)(1 3)+ (3 5)+ (3 6)+ (3 7)+ (6 9)+ (6 10)+ (6 11)(0 1)(0 2)(0 3)+ ( 1 5)+ ( 1 6)+ ( 1 7)+ (4 9)+ (4 10)+ (4 11) = 70 80 9031 34 37 Formally, ifAB=Cthencij=m k=1aikbkj(9)AsideWhen using Matlab (or octave), two matrices can be multiplied in an element-wise sense.

7 Thisis NOTthe same as described Motivation for matrix-matrix multiplicationTo understand why we may need to perform matrix-matrix multiplication, consider two cus-tomers of a repair garage, Peter and Alex, who require a number of car parts for each of theirvehicles. Peter requires1 3litre engine and 2 doors, whereas Alex requires1 5litre engineand 4 doors. All the parts require a certain number of screws and bolts. But how many totalscrews and bolts do Peter and Alex need?We can present the quantity of each car part that Peter and Alex need in a table:3 litre engine 5 litre engine DoorsPeter102 Alex014or as the matrix,A:A= 1 0 20 1 4.

8 (10)The number of screws and bolts for each car part are expressed in the table:bolts screws3 litre345 litre18doors21or can be expressed as matrix,B:A= 3 41 82 1 .(11)Using simple addition we can find out how many screws and bolts are How many bolts are needed for Peter s car parts?(1 3) + (0 1) + (2 2) = How many bolts are needed for Alex s car parts?(0 3) + (1 1) + (4 2) = How many screws are needed for Peter s car parts?(1 4) + (0 8) + (2 4) = we can use matrix multiplication to get all four scenarios:AB= 1 0 20 1 4 3 41 82 1 = 7 69 12 Matrix-vector multiplicationSince a vector is a special case of a matrix, this is simply a special case of the matrix-matrixmultiplication we have already discussed.

9 Consider multiplying a column vector of lengthmby a matrix of sizen m, 1360 1 4 213 = 2311 which results in a column vector of lengthnand in this casen= Special MatricesIdentity Matrix,I:The identity matrix,I, of sizen n, is defined in equation 1ifi=j0ifi6=j(12) ifn= 2I= 1 00 1 (13)This is a special case of a diagonal matrix possessing non-zero entries only on its diagonal 2 000 300 0 1 IfAis a squaren nmatrix, then the identity matrixIn nhas the special property that:AI=IA=A(14)NB:Iis the equivalent of 1 in scalar arithmetic 2 = 2 1 = ,AT:IfAis an mmatrix then the transpose ofA, denotedAT, is am nmatrix found by swapping rows and columns ofA, 1360 1 4 AT= 103 164 Inverse matrix,A 1 IfAis ann nmatrix, sometimes (see later) there exists another matrixcalled the inverse ofA, writtenA 1, such thatAA 1=A 1A=I(15)NB.

10 For scalar numbers,x 1is the inverse ofxwhen considering multiplication, sincexx 1=x 1x= 1(16)9 Clearly whenx= 0this breaks down andxhas no inverse this is also true when dealingwith some Scalar products and orthogonalityThe scalar product (or dot product, or inner product) of two column vectors of lengthn, wherex= (x1,x2,x3,..xn)andy= (y1,y2,y3,..,yn), isx y=n i= can also be written asxTy; that is, the product of a row vector of lengthnwith a columnvector of lengthn. Two vectors are said to be orthogonal if their scalar product is Linear Systems Wolfram link( ) Video link( )A linear system of equations such as5x+ 3y+z= 32x 10y 3z= 14y+ 5z= 7(17)can be written as 5312 10 3045 xyz = 3 17 as can be verified by multiplying out the left hand side.


Related search queries