特征多项式的Souriau方法

时间:2014-05-29 15:51:42

标签: c++ numerical-methods polynomial-math numerical-analysis

有没有人知道用于找到任何n×n矩阵的特征多项式的Souriau方法?我发现第一个系数很明显,但我怎样才能找到其他系数?我需要反转矩阵但我知道如何。

#include <iostream> 
#include <fstream>
using namespace std;

double trace(double a[5][5],int n){ 
        int i;
        double trace=0;
        for(i=0;i<n;i++) 
            trace+=a[i][i]; 
        return trace;
}
double prod(double a[5][5],double b[5][5],int n) {
    double c[5][5];
    int i,j,k;
    cout << "\nProd:\n"; 
    for(i=0;i<n;++i){ 
        for(j=0;j<n;++j){ 
            c[i][j]=0; 
            for(k=0;k<n;++k) 
                c[i][j]=c[i][j]+(a[i][k]*b[k][j]);
                cout << c[i][j] << " "; 
        } 
        cout << "\n"; 
    } 
    return c[i][j]; 
}
double theta(double a[5][5], int n){
    int i;
    double theta[5];
    theta[1]=-trace(a,n);
    for(i=0;i<n;i++)
        cout << "Theta[" << i+1 << "]=" << theta[i+1] << "\n";
    return theta[i+1];
}

int main(){ 
    ifstream f("a.txt"); 
    ifstream g("b.txt");
    double a[5][5],b[5][5];
    int i,j,n; 
    f >> n; 
    g >> n; 
    for(i=0;i<n;++i) 
        for(j=0;j<n;++j) 
            f >> a[i][j]; 
    cout << "Matrix A:"<<endl;
    for(i=0;i<n;++i){
        for(j=0;j<n;++j) 
            cout << a[i][j] << " ";
            cout << endl;
    }
    cout << endl;
    for(i=0;i<n;++i) 
        for(j=0;j<n;++j) 
            g >> b[i][j]; 
    cout << "Matrix B:" << endl;
    for(i=0;i<n;++i){ 
        for(j=0;j<n;++j) 
            cout << b[i][j] << " ";
            cout << endl;
    }

        cout << endl;
        cout << "Trace = ";
        cout << trace(a,n);
        cout << endl;
        prod(a,b,n);
        cout << endl;
        theta(a,n);
    }

1 个答案:

答案 0 :(得分:0)

取自https://math.stackexchange.com/a/405975/115115 J.微米。

C=A;
for k=1,…,n

    if k>1
        C=A*(C+c[n−k+1]*I);

    c[n−k]=−tr(C)/k;

end for

如果您可以阅读德语,则会在https://de.wikipedia.org/wiki/Algorithmus_von_Faddejew-Leverrier添加带有扩展伪代码algortihm的Wiki页面(添加2017:或同样优秀的英文版https://en.wikipedia.org/wiki/Faddeev%E2%80%93LeVerrier_algorithm

如果你想直接计算逆矩阵,那么你就像在wiki页面中一样,通过C = A B使用与上面的矩阵C相关的矩阵B.从维基页面可以看出,这给出了一个稍微复杂的算法。然而,最后一个矩阵B满足A B = -c [0] * I,因此可以直接计算逆矩阵(如果有的话)。