๐Ÿ—๏ธ ฮ˜ฯฯตฮทฮ ฮฑฯ„ฯ€๐Ÿšง (under construction)

Vector
A vector is alternate notation for an n tuple, so that [a1a2โ‹ฎan] is the n-tuple (a1,a2,โ€ฆ,an)
The length of a Vector
Given xโˆˆโ„n, then we define the it's length as โ€–xโ€–:=โˆ‘i=1nxi2
Dot Product
Given two sequences of numbers of the same length: a=(a1,โ€ฆ,ak) and b=(b1,โ€ฆ,bk), their dot product denoted and defined by aยทb=โˆ‘i=1kaiยทbi Note that ยท:โ„kร—โ„kโ†’โ„
Dot Product Geometric
aยทb=โ€–aโ€–โ€–bโ€–cos(ฮธ) where ฮธ is the angle between a,b
Norm Squared is the Dot Product
For any xโˆˆRn we have that โ€–xโ€–2=xยทx
Vector Form of a Line
Suppose that d,p are vectors, then we say that the set l:={x:x=td+p,ย forย someย tโˆˆโ„} is a line and say that the vector equation for the line is
x=td+p
We also say that d is the direction vector for l
Cross Product
Given two vectors a,bโˆˆR3 we define their cross-product to be aร—b:=โ€–aโ€–โ€–bโ€–sin(ฮธ)n where ฮธ is the angle between a and b and n is a unit vector such that a,n,b is positively oriented.
Cross Product Vector Component Formula
(a1,a2,a3)ร—(b1,b2,b3)=(a2b3โˆ’a3b2,a3b1โˆ’a1b3,a1b2โˆ’a2b1)

An easy way to remember this is ab 231 where you then get a2b3 - ..., a3b1 - ..., a1b2

Equation for a Line
We say the equation of a line โ„“ is given by ax+by+c=0 where a,b,cโˆˆR where the line is given by the set โ„“={(x,y)โˆˆR2:ax+by+c=0}
Equation of a Line as a 3d Dot Product
Suppose that โ„“ is given by ax+by+c=0 then we have โ„“={(x,y,1)โˆˆR3:(x,y,1)ยท(a,b,c)=0}
Equation of a Line Given by the Cross Product
Suppose that p,qโˆˆR2 and consider L=(a,b,c)=pร—q then the equation of the line that passes through p,q is given by ax+by+c=0
Collinear
Given a vector space (V,F) then we say that two vectors x,yโˆˆV are collinear if there exists an ฮฑโˆˆF such that x=ฮฑy
Parallelogram Law
Suppose x,yโˆˆRn then we have โ€–x+yโ€–2+โ€–xโˆ’yโ€–2=2โ€–xโ€–2+2โ€–yโ€–2
The Norm of The Half of The Sum of Two Unit Vectors is One iff They are Equal
Suppose x,yโˆˆRn such that โ€–xโ€–=โ€–yโ€–=1 then โ€–x+y2โ€–=1โŸบx=y
Cosine Law
Suppose that x,yโˆˆRn and ฮธ is the angle between them, then โ€–x+yโ€–2=โ€–xโ€–2+2โ€–xโ€–โ€–yโ€–cos(ฮธ)+โ€–yโ€–2
Dot Product Is a Sum of Norms
xยทy=โ€–x+yโ€–2โˆ’โ€–xโ€–2โˆ’โ€–yโ€–22