strangerRidingCaml

1. Introduction to Vectors and Vector Spaces 본문

Linear algebra

1. Introduction to Vectors and Vector Spaces

woddlwoddl 2024. 5. 4. 13:49
728x90

 

Introduction to Vectors and Vector Spaces

Vectors in Rn

A vector in Rn is an ordered list of n real numbers. It can be represented as:

v=[v1v2vn]

where v1,v2,,vn are the components of the vector v.

Vector Addition and Scalar Multiplication

Vector Addition: If v=[v1,v2,,vn] and w=[w1,w2,,wn] are vectors in Rn, then their sum v+w is given by:

v+w=[v1+w1,v2+w2,,vn+wn]

Scalar Multiplication: If v=[v1,v2,,vn] is a vector in Rn and c is a scalar, then the scalar multiplication cv is given by:

cv=[cv1,cv2,,cvn]

Properties of Vectors

Vectors in Rn satisfy the following properties:

  1. Commutative Law: v+w=w+v for all vectors v and w.
  2. Associative Law: (v+w)+u=v+(w+u) for all vectors v, w, and u.
  3. Distributive Law: c(v+w)=cv+cw for all vectors v and w, and scalar c.
  4. Existence of Zero Vector: There exists a vector 0 such that v+0=v for all vectors v.
  5. Existence of Additive Inverse: For every vector v, there exists a vector v such that v+(v)=0.

Vector Spaces

A vector space is a set V together with two operations, vector addition and scalar multiplication, that satisfy the properties of closure, associativity, commutativity, existence of identity and inverses, and distributivity.

'Linear algebra' 카테고리의 다른 글

6. Eigenvalues and Eigenvectors  0 2024.05.04
5. Linear Transformations  0 2024.05.04
4. Vector Spaces  0 2024.05.04
3. Systems of Linear Equations  0 2024.05.04
2. Matrices and Matrix Operations  0 2024.05.04