solve quadratic set of equations
Show older comments
I have a system of equation which i would like to solven this systme can be expressed as :
w=(w1,...,wn)' and let consider a symmetric matrix n*n Σ(s), i would like to solve a system as :
ω(s) ω(s)’= inverse (Σ(s)).
can someone give a program/command to solve this kind of systems
4 Comments
Torsten
on 21 Aug 2018
In my opinion, left and right hand side can never be equal since the matrix on the left has rank 1 whereas the matrix on the right has rank n.
Walter Roberson
on 21 Aug 2018
Since w is defined as the transpose of a row vector, it follows that w is n x 1. w * w' would then be (n x 1) * (1 * n) which would be n x n.
However, the amount of information in w * w' would be n, where-as the amount of information in the inverse of a symmetric matrix is the same as the amount of information in the symmetric matrix, which is potentially n * (n-1) / 2. It therefore seems likely that there will not usually be a solution.
tilfani oussama
on 21 Aug 2018
Torsten
on 21 Aug 2018
Using w*w' for a vector w, you can only generate symmetric matrices of rank 1.
Your right-hand side is a matrix of rank n.
Believe us: Your system can't be solved for s unless n=1.
Best wishes
Torsten.
Accepted Answer
More Answers (0)
Categories
Find more on Choose a Solver in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!