Which vectors we can use to form a basis of the given space

29 Ansichten (letzte 30 Tage)
aliza mustafa
aliza mustafa am 30 Aug. 2022
Beantwortet: Matt J am 30 Aug. 2022
Hi everyone,
I am learning linear algebra in MATLAB. I am having my matrix A:
A = [1,0,2,3; 4,-1,0,2; 0,-1,-8,-10];
I am supposed to find the vectors that form a basis of the given space. As it is clear, the given space will be 3. So, when I converted it to reduce echelon form using rref(A) I got the following matrix:
rref(A)
ans =
1 0 2 3
0 1 8 10
0 0 0 0
Now, I am confused that which vector should I choose to form a basis of the given space? Should it be Basis for col(A) or Basis for row(A)? I am so confused at it. I will highly appreciate any help. Thanks in advance

Akzeptierte Antwort

Matt J
Matt J am 30 Aug. 2022
One solution is to use orth:
A = [1,0,2,3; 4,-1,0,2; 0,-1,-8,-10];
basis=orth(A)
basis = 3×2
-0.2710 -0.1940 -0.1305 -0.9630 0.9537 -0.1869

Weitere Antworten (0)

Kategorien

Mehr zu Linear Algebra finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by