선형대수학

벡터공간 (1)

재바기 2023. 2. 7. 16:44
728x90

Vector Space

V가 addition과 scalar multiplication이 정의된 집합이라고 할 때, 

 

1. Addition

두 개의 V에 속한 element u,v의 합, 즉 u+v 

 

2. Scalar multiplication

Scalar인 cV의 element u 로 이루어진 rule로써, cu로 나타냄.

이와 같이, 두 operation이 정의되어 있고, 다음의 axiom들을 만족하면 Vector space라고 함.

 


Null space

  • Matrix에서 정의된 subspace이다.
  • m×n matrix A 의 null space는 Ax=0을 만족하는 모든 x (n벡터)로 구성되어 있다.

Null(A)={x|Ax=0,xRn}

  • A의 null space는 Rn의 subspace이다.  

 


Span and Spanning Set

v1,...,vn 이 vector space V 의 vector라고 하면, a1,...,an이 scalar일 때,

a1v1+...+anvnv1,...,vnlinear combination이라고 한다.  

 

v1,...,vn 의 모든 linear combination들을 v1,...,vnspan 이라고 하고,

Span(v1,...,vn) 이라고 표기한다.  

 

W=Span(v1,...,vn) 일 때, v1,...,vnW 를 span한다고 하고,

v1,...,vnWspanning set이라고 부른다.

 

  

💡
만약, v1,...,vn 가 vector space V의 element일 때,  
Span(v1,...,vn)V의 subspace이다.

 


Linearly Independence

💡
v1,...,vnRn 의 n-vector들이고, n×n 인 matrix A=[v1v2...vn] 일 때, 
이 벡터들이 linearly dependent한 것은 A가 singluar 한 것의 필요충분조건이다.  

 

증명)

c1v1+...+cnvn=0 은 matrix equation으로 Ac=0 으로 나타낼 수 있고,

이 식이 nontrivial solution을 가지려면 A가 singular 해야 한다.(det(A)=0)  

 

예제)

Show that the vectors (1,2,4),(2,1,3),(4,1,1) are linearly dependent in R3  

 

위 theory에서처럼, 세 개의 벡터로 이루어진 matrix를 만들어보면,

[124211431][1240390515][124013000]

zero row 가 있기 때문에 이 matrix는 singular하고,

따라서 vector들은 linearly dependent하다.  

 

이 이론은, vector들이 주어졌을 때, minimal spanning set이 되느냐? 하고 물었을 때 사용하기 적합하다.  

 

💡
v1,...,vn 이 vector space V의 vector들일 때, 
vector vSpan(v1,...,vn)v1,...,vn의 linear combination으로 unique하게 쓸 수 있는 건 
v1,...,vn가 linearly independent한 것의 필요충분조건이다.  

Basis and Demension

Basis

💡
Nonzero vector space V의 nonempty subset B 는 아래 두 조건을 만족하면 V의 basis이다.

- B가 linearly independent하고,BV를 span하면,  
- B가 linearly independent하고,BV를 span하면,  

 

예제) Show that B is a basis of R3

위 vector들로 이루어진 matrix를 만들어 보면,

A=[102111120][102013001]=U

각 열이 pivot column이므로, free variable이 없다.

따라서 Blinearly independent하다.

또한, 각 row가 pivot position을 가지고 있으므로, BR3를 span한다.

💡 v1,...,vn 이 vector space V의 vector들일 때, m>nVm개의 벡터들의 집합은 linearly dependent할 수 밖에 없다.
💡 만약 {v1,...,vn}{u1,...,um} 둘 다 vector space V 의 basis라면, n=m 이다.

 

Dimension

💡 Vector space V가 n개의 원소로 이루어진 basis를 갖고 있다면, V는 finite-dimensional이라 부르고, nV의 dimension이라고 한다.
dim(V)=n

 

728x90