Please enable JavaScript.
Coggle requires JavaScript to display documents.
matrix
A[e1,e2,...,eN] - Coggle Diagram
matrix
A[e1,e2,...,eN]
-
-
-
-
-
Projection Matrix
-
-
-
-
-
-
-
Ax = b
b not in colspace(Ax) -> no solution
closest vector to b is b's projection on colspace(Ax)
get x when Ax = b-proj onto colspace(Ax)
-
-
-
Rank
rank(A+B)≤rank(A)+rank(B)
rank(A+B)≥max(rank(A),rank(B))−min(rank(A),rank(B))
A MxN, B MxN
rank(A+B) <= min(M, N, rank(A)+rank(B))
-