math Flashcards
degree of polynomial for x^5 + 4x^2
5
in gauss elimination how to determine if inf many solutions exist and no soulutions exist
a row is 0+0+0 = 0 for inf many
a row is 0+0+0 = 12 for no soultions
distance between two points
square root of (x2-x1)^2 + (y2-y1)^+(z2-z1)^2
radius equation for a sphere with centre (a,b,c)
(x-a)^ + (y-b)^2 + (z-c)^2 =r^2
what does number of elements in a vector show
dimension/order
magnitude of a vector or norm
||a|| = square root a1^2 + a2^2 + an^2
how to find dot product between two vectors
Transpose of vector a * vector b
orthogonal vector
dot proudct is 0
showing independent vectors
the subspace cannot be larger then dimension of vector
for example 3 {c,d,e}
show that we cannot express one of them in terms of the other two.
use contradiction that in fact there exist integers m, n such that
c = m × d + n × e
once proved that cannot be express, have to show that d cannot be expressed by e
Angle between vectors
cos0 = a^transpoes * b / ||a|| * ||b||
scalar projection a onto b
a^T *b / ||b||
vector projection a onto b
(a^T * b / ||b||^2) b
unit vector of b
b/||b||
proof for orthagonal
if vectors a and b are ortogonal, the angle is 90 and cos angle = 0
hence
a * b = ||a|| * ||b|| * cos0 = 0
A set of vectors in a vector space V is called a basis if the vectors are linearly
independent and every vector in the vector space is a linear combination of this set
trace of a matrix
sum of main diagonal a11, a22, a nn give us trace
Condition to multiply two matricies
Number of columns in first matrix must equal number of rows in second matrix.
then do row1 of first one x columns of second one
what does it mean for matrxi to be symmetric
A = A^T only for square matrix
how to find determinant of 2x2 matrix
[a11, a12]
[a21, a22]
a11a22 - a12a21
how to find determinant of 3x3 matrix
extend the matrix with the first 2 column
how to find determinant using cofactor method
for nxn matrix
[a11, a12, a13]
[a21, a,22, a23]
[a31, a,32, a33]
a11 * -1^2 * M11 + a21 * -1^3 * M21 + a31 * -1^4 * M31
How to find inverse
determinant must be non zero
First Transpose the matrix.
Then find the Cofactor matrix of that including multipling each by -1^n+1
Multiply it by 1/determinant
inverse of 2x2 trick
say D = [-4, -5]
[7 , -2]
first swap the numbers -4 amd -2
then change the sign of -5 and 7
so the determinant is 43 and the inverse is
1/43 * [-2, 5]
[-7, -4]
A matrix A of dimension m × n has rank(A) ≤ min(m, n).
Proof. For a matrix A we have rank(A) ≤ m (the number of rows). But at the same time,
rank(A) = rank(AT
) ≤ n (the number of rows of AT