如何解决不一致的系统?

时间:2015-12-15 10:11:19

标签: matlab math linear-algebra linear

我是MATLAB的新手,我想用它来解决Ax = b系统问题。我在纸上做了这个,知道我想知道它是否正确。问题是它是一个不一致的系统。

A=sym([3/sqrt(29) 3/sqrt(29) -1 0 0 0; 
1 -1 0 0 0 0; 
4/sqrt(29) 4/sqrt(29) 0 0 0 0; 
0 0 1 9/sqrt(101) 0 0; 
0 0 0 2/sqrt(101) -1/sqrt(5) 1/sqrt(5);
0 0 0 4/sqrt(101) 2/sqrt(5) 2/sqrt(5)])

c=sym([0 0 -a 0 0 -a])

当我尝试使用以下方法找到解决方案时:

A/c

我明白了:

Warning: The system is inconsistent. Solution does not exist. 

我在互联网上找到了很多关于此主题的主题,但没有解决方案。这是否意味着MATLAB无法处理它或是否有办法获得解决方案?

1 个答案:

答案 0 :(得分:5)

遗憾的是,系统无法正常解决。您需要使用ldivide\)运算符,而不是rdivide/)。执行A/c相当于A*c^{-1},而这不是您想要的。要解决系统解决方案,您必须A^{-1}*c或等效A\c。此外,为了确保您获得正确的解决方案,c需要是列向量,而不是行向量。我还假设a是一个在当前代码中未声明的常量。

因此:

syms a; %// Added

A=sym([3/sqrt(29) 3/sqrt(29) -1 0 0 0; 
1 -1 0 0 0 0; 
4/sqrt(29) 4/sqrt(29) 0 0 0 0; 
0 0 1 9/sqrt(101) 0 0; 
0 0 0 2/sqrt(101) -1/sqrt(5) 1/sqrt(5);
0 0 0 4/sqrt(101) 2/sqrt(5) 2/sqrt(5)]);

c=sym([0 0 -a 0 0 -a]).'; %// Change

out = A\c;

我明白了:

out =

   -(29^(1/2)*a)/8
   -(29^(1/2)*a)/8
          -(3*a)/4
  (101^(1/2)*a)/12
    -(5^(1/2)*a)/4
 -(5*5^(1/2)*a)/12