The quiz will be on the following text — learn it for the best chance to win.
Section 1: Vector Definition and Operations
Vectors are fundamental objects in linear algebra, representing quantities possessing both magnitude and direction. In an algebraic context, a vector in Rn (n-dimensional real space) is defined as an ordered list of n real numbers, called its components or coordinates. We typically denote a vector as a column:
v=v1v2⋮vn
or equivalently as a row: v=[v1,v2,…,vn]T. The integer n is the dimension of the vector. Geometrically in 2D (R2) or 3D (R3), a vector is visualized as an arrow from the origin (0,0) or (0,0,0) to the point (v1,v2) or (v1,v2,v3). This arrow representation captures direction (the orientation) and magnitude (the length).
Core Vector Operations
Vector Addition:
Given vectors u=[u1,u2,…,un]T and v=[v1,v2,…,vn]T of the same dimension, their sum u+v is computed component-wise:
u+v=u1+v1u2+v2⋮un+vn
Geometrically, this corresponds to placing the tail of v at the head of u and drawing the arrow from the tail of u to the head of v (the parallelogram rule).
Scalar Multiplication:
Given a vector v=[v1,v2,…,vn]T and a real number c (a scalar), the product cv is:
cv=cv1cv2⋮cvn
Geometrically, this scales the vector's length by ∣c∣ and reverses its direction if c<0.
Vector Subtraction:
Subtraction is defined using addition and scalar multiplication: u−v=u+(−1)v. Component-wise:
u−v=u1−v1u2−v2⋮un−vn
Geometrically, u−v points from the head of v to the head of u when both tails are placed at the origin.
Essential Properties
These operations satisfy key algebraic properties for any vectors u,v,w in Rn and scalars c,d:
Commutativity of Addition:u+v=v+u
Associativity of Addition:(u+v)+w=u+(v+w)
Additive Identity: The zero vector0=[0,0,…,0]T satisfies v+0=v
Additive Inverse: For every v, there exists −v=(−1)v such that v+(−v)=0