Explicit solution not found using solve
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a factor model with only one factor - the market excess return and the returns of fifteen companies. I run a regression and estimate fifteen betas. Then I have to construct a mimicking portfolio of the market factor. I try to solve the question with matrices and write (I pre-specified the 15x1 vector of zeros thetaa,don't know if this is correct):
syms thetaa
solve(thetaa*beta'==1,sum(thetaa)==1)
Then I get the following:
Warning: 16 equations in 1 variables.
> In C:\Program Files (x86)\toolbox\symbolic\symbolic\symengine.p>symengine at 54
In mupadengine.mupadengine>mupadengine.evalin at 97
In mupadengine.mupadengine>mupadengine.feval at 150
In solve at 160
Warning: Explicit solution could not be found.
> In solve at 169
Any suggestions will be appreciated!
0 comentarios
Respuesta aceptada
Brian B
el 2 de Mzo. de 2013
Editada: Brian B
el 2 de Mzo. de 2013
I know nothing about mimicking portfolios, but I do know that anything you assign to thetaa is lost when you call
syms thetaa
That means that mupad (the symbolic solver MATLAB is using) interprets
thetaa*beta'
as a scalar-vector multiplication, instead of matrix multiplication. That causes
thetaa*beta'==1
to be interpreted as a vector of 15 equations in the single (scalar) variable thetaa. You add one more, which effectively says thetaa==1, and voilà! There is no solution unless beta is a vector of ones!
19 comentarios
Brian B
el 2 de Mzo. de 2013
Note that I was wrong with the first formula I wrote. It is a solution, but not the minimum variance solution. The correct formula, noted above and restated here for clarity, is
thetaa = (c*inv(B.'*inv(sigma)*B)*B.'*inv(sigma)).';
Más respuestas (2)
N =B>=>2
el 3 de Mzo. de 2013
1 comentario
Brian B
el 4 de Mzo. de 2013
Your original question referred to warnings and unexpected behavior, which is clearly appropriate for this forum. But I probably got carried away answering some of the later questions. I am a student, too, and I recognize the greater value of struggling with the concepts compared to having the answer given. Your questions indicate that there are some aspects of the subject that you still need to wrestle with. This is a good time to talk with your professor or TA.
You should feel welcome to continue using this forum for help with MATLAB-specific qustions, but it is good practice to follow some basic guidelines when asking about homework.
Ver también
Categorías
Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!