rref matrix with an unkown variable

조회 수: 10 (최근 30일)
Nicola
Nicola 2025년 9월 10일
댓글: Paul 2025년 9월 11일
Given the matrix:
M = [1, 2, 3, 5;
2, 3, 4, 8;
3, 4, 5, c;
1, 1, 0, 2];
How does one code this in matlab so that it outputs the proper rref() matrix
I am expecting to get (did this by hand):
rref(M) = [1, 0, 0, 2;
0, 1, 0, 0;
0, 0, 0, c-11;
0, 0, 1, 1];
When solving for rref(M) using my code it always gives me this:
[1, 0, 0, 0]
[0, 1, 0, 0]
[0, 0, 1, 0]
[0, 0, 0, 1]

채택된 답변

Matt J
Matt J 2025년 9월 10일
편집: Matt J 2025년 9월 10일
I am expecting to get (did this by hand):
Your expected result doesn't look right. For both row-echelon and reduced row-echelon form, the result must be triangular. If you just want (non-reduced) row-echelon form, you could use LU, e.g.,
syms c
M = [1, 2, 3, 5;
2, 3, 4, 8;
3, 4, 5, c;
1, 1, 0, 2];
[L,ref]=lu(M);
ref
ref = 
  댓글 수: 6
Paul
Paul 2025년 9월 11일
편집: Paul 2025년 9월 11일
I'm going to guess that rref does not (and possibly cannot) account for all possible values of the symbolic variables. Somewhere along the way it's generating an expression that cancels out the c, even though such cancellation isn't correct for all possible values of c. For example
syms a b c
M = [a b;0 b]
M = 
If I was doing this problem by hand, I might proceed as follows with row operations
R = M;
R(2,:) = R(2,:)/b % 1
R = 
R(1,:) = R(1,:)/a % 2
R = 
R(1,:) = R(1,:) - R(2,:)*b/a % 3
R = 
That happens to be the same result as returned from rref, though I suspect rref got there a different way
rref(M)
ans = 
Of course step 1 is invalid if b = 0, but the SMT is happy to do it. We see the same effect with the example from the rref
A = [a b c; b c a; a + b, b + c, c + a]
A = 
rref(A)
ans = 
That result can't be correct for any combination of (a,b,c) s.t. a*c - b^2 = 0
rref(subs(A,[a,b,c],[1,1,1])) % Case A
ans = 
rref(subs(A,[a,b,c],[2,4,8])) % Case B
ans = 
Interestingly, assumptions do influence rref
assume(a*c == b^2)
rref(A)
ans = 
simplify(ans)
ans = 
But I don't see how that result can recover Case A

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by