solve symbolic eigenvalue problem

조회 수: 12 (최근 30일)
liad
liad 2025년 2월 3일
편집: Torsten 2025년 2월 15일
Hello everyone,
I have a system of linear equations in the following form: AX=BX
where matrix A is constructed from values of the parameter a,
and matrix B consists of eigenvalues.
Each eigenvalue solution should be dependent on a.
I want to find, for each eigenvalue, the smallest value and the corresponding aaa that satisfies it.
I attempted to solve this using the syms and eigs functions but was unsuccessful.
My main difficulty lies in defining symbolic parameters and then using them after solving for the eigenvalues.

답변 (1개)

Torsten
Torsten 2025년 2월 3일
편집: Torsten 2025년 2월 3일
If you want an analytical expression for the eigenvalues dependent on the parameter a, your matrix A must have dimension <= 4.
syms a
A = [a a^2;2 exp(a)];
eig(A)
ans = 
  댓글 수: 6
liad
liad 2025년 2월 15일
Thank you for your response.
So I have a problem because I have a sixth order differential equation that looks in matrix form Ax=Bx. When matrix A depends on some parameter. And matrix B can be defined as the matrix of the eigenvalues. I solve the equation using finite elements so I need about 100 equations to get good accuracy. The thought was to solve it like an eigenvalue problem, but my matlab only manages to calculate 20 x 20 at most. Is there any way to solve the system? Maybe not through eigenvalues?
Torsten
Torsten 2025년 2월 15일
편집: Torsten 2025년 2월 15일
Just out of curiosity:
Why do you get a matrix A depending on a parameter if you discretize a differential equation ?

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

카테고리

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