2025. 8. 22. 11:10ㆍMath/Linear_Algebra
In this post, we are going to talk about the Vector space.
Vector space
A vector space is a set of vectors. A vector space must satisfy 3 conditions as follows:
Let x, y be elements in V.
- x + y is in V (closed under addition)
- kx is in V for any scalar k (closed under scalar multiplication)
- the origin vector (0) is in V
Conclusion: if k1x + k2y is in V for any scalars k1, k2, then we call V a vector space.
Example: R3 is a vector space of vectors [x, y, z]. The set of all m×n matrices, written as A^m×n, is also a vector space.
Subspace
A subspace is a subset of a vector space that satisfies the same 3 conditions.
Example: In R3,
- A plane passing through the origin (ax + by + cz = 0) is a subspace of R3.
- A line passing through the origin (ax + by = 0) is a subspace of R3.
Column Space of Matrix
Let A; A consists of column vectors.
So if we think about the equation: Ax = b ; where x = [x1, x2, ..., xn].
Ax = b → a1x1 + a2x2 + ... + anxn = b.
This form is a linear combination of the column vectors of A. If the result equals b, then we say that b is in the Column space of A (C(A)).
Example: A = [[1,5,2],[0,4,4]]. The column space of A is a plane in R^2.
Example: If A is a non-singular (invertible) n×n matrix, then C(A) = R^n.
Another example: A = [[100],[010],[110]]. When Gaussian elimination is applied, this matrix has two pivots. So the column space of A is R^2.
Conclusion: In Gaussian elimination of A, the number of pivots equals the dimension of C(A).
'Math > Linear_Algebra' 카테고리의 다른 글
| [Linear_Algebra] Null space of Matrix and Linear system equations (0) | 2025.08.22 |
|---|---|
| [Linear_Algebra] 3 types of Linear system equations (0) | 2025.08.21 |
| [Linear_Algebra] Gauss Elimination & Gauss-Jordan Elimination (0) | 2025.08.21 |
| [Linear_Algebra] Gaussian elimination and LU factorization (7) | 2025.08.20 |
| [Linear_algebra] Linearlity (0) | 2025.08.20 |