Sum of vectors, scalar multiples, linear combinations

  • The sum of two vectors is found by adding their corresponding components.
    If and , then:

  • A scalar multiple of a vector means multiplying each component of the vector by a constant:

  • A linear combination of vectors is any expression of the form:

    where are scalars. You’re combining vectors using addition and scalar multiplication.


Write a vector as a linear combination of other vectors

  • Given a set of vectors and a target vector, determine if the target vector can be written as a linear combination of the set.
  • Set up a matrix equation: where is a matrix with the given vectors as columns, and solve for .
  • If a solution exists, then is a linear combination of the columns of .

Describe the zero vector in various vector spaces

  • : The vector with all components zero.
  • : The zero polynomial: .
  • : The matrix where all entries are 0.

Determine if a set is a vector space

To be a vector space, a set must:

  • Contain the zero vector.
  • Be closed under addition and scalar multiplication.
  • Satisfy 10 axioms (like associativity, identity, inverse, distributivity, etc.).
  • Usually, we test whether a subset of a known vector space satisfies the vector space axioms.

Determine if a set is a subspace

A subspace of a vector space must:

  1. Contain the zero vector.
  2. Be closed under vector addition: If are in the set, then is too.
  3. Be closed under scalar multiplication: If is in the set and is any scalar, then is in the set.

Determine if a set spans

  • A set of vectors spans if any vector in can be written as a linear combination of them.
  • Equivalent to: the matrix formed by the vectors has a pivot in every row after row reduction.

Determine if vectors are linearly dependent or independent

  • A set is linearly dependent if:

    has a non-trivial solution (not all ).

  • A set is linearly independent if the only solution is the trivial one: .

  • To test: Form a matrix with the vectors as columns and solve .


Determine if a set is a basis

A set of vectors is a basis if:

  • They span the vector space.
  • They are linearly independent.

If the dimension of the space is , you need exactly linearly independent vectors to form a basis.


Find the rank and nullity of a matrix

  • Rank: The number of pivot columns in the row-reduced form of the matrix. Represents the dimension of the column space.
  • Nullity: The number of free variables in the solution to .
  • Formula:

Basis for a subspace spanned by a set

  • To find a basis for the subspace spanned by a set:
    • Put the vectors as rows or columns of a matrix.
    • Row reduce.
    • The original vectors corresponding to the pivot columns form the basis.

Basis and dimension of solution space to

  • Solve the homogeneous system.
  • Express the solution in parametric vector form.
  • The vectors that multiply the free variables form a basis.
  • The number of these vectors = dimension of the null space.

Determine if a vector is in the column space

  • Given matrix and vector :
    • Form the augmented matrix .
    • If the system is consistent (no contradictions), then is in the column space of .

Transition matrix from to , or to

  • A transition matrix changes coordinates from one basis to another.
  • To find matrix from to :
    • Express each vector of as a linear combination of vectors in .
    • Place these coordinates as columns of the matrix.

Wronskian of a set of functions

  • Given functions , their Wronskian is:
  • If on an interval, the functions are linearly independent on that interval.

Write a proof based on dependence, independence, subsets

  • Use definitions:
    • If one vector is a linear combination of others, the set is dependent.
    • A subset of an independent set is also independent.
    • Adding a vector to a dependent set keeps it dependent.
  • Structure your proof by assuming or proving dependence/independence based on these principles.

Vector operations and notation

  • Length (magnitude):

  • Distance between vectors:

  • Inner product (dot product):


Angle between two vectors

  • Formula:
  • Use this to find the angle or to verify orthogonality ( when vectors are perpendicular).

Orthogonal and orthonormal sets

  • Orthogonal: All pairs of vectors have dot product 0.
  • Orthonormal: Orthogonal set where each vector has length 1.
  • Check:
    • for
    • for all

Unit vector in same direction

  • A unit vector has length 1.
  • To create a unit vector in the same direction as :

Gram-Schmidt Process

  • Converts a set of linearly independent vectors into an orthogonal (or orthonormal) set.

Given :

  1. Let

  2. Subtract the projection of onto :

  3. Normalize to get orthonormal vectors:

Remember to normalize at the end if the problem asks for orthonormal vectors.


linear math