Conjugate of Symbolic Root doesn't change anything

1 visualizzazione (ultimi 30 giorni)
Reference question first asked here:
Basically, the Symbolic Toolbox is making a simplification that, while it can be considered correct in the big picture, is nevertheless annoying. Take this code:
syms z
ex = z^5 + z^4 + z^3 + z^2 + z^1 + 1 == 0;
s = root(ex,z,1)
s = 
c = conj(s)
c = 
vpa(s)
ans = 
vpa(c)
ans = 
You can see that the conj( ) had no effect, and seems to have been ignored since both vpa values are the same.
In the big picture, it seems the Symbolic Toolbox knows that roots come in complex conjugate pairs when the coefficients of a polynomial are real. And since there is no published preferred order of returning the roots, it has apparently implicitly changed the order in the background as reasoning for doing away with the conjugate. It is as if root(ex,z,1) is interpreted as "one of the roots of ex given a changeable background ordering depending on how you use it", and not "the first root of ex given some fixed order in the background". At least that is my take on what is happening.
If you ask for all the roots and convert them you get this:
vpa(root(ex,z))
ans = 
which of course gives you all the roots. Taking the conj( ) of this gives the expected results. It seems to me a description of this type of behavior in the doc is in order, but I see no mention of it in either the root( ) or conj( ) doc. Is there a mention of this somewhere that I missed? Is there a way to have conj( ) treat symbolic root( ) (and maybe other related functions) differently?
  4 Commenti
kajin
kajin il 14 Ott 2024
Spostato: Voss il 14 Ott 2024
give me conjugate of exp(ix)

Accedi per commentare.

Risposte (1)

Sufiyan
Sufiyan il 26 Feb 2024
root() is used to represent roots of the polynomial. If you refer to this link root documentation, you can see that solve() is recommended to find the roots.
syms z
ex = z^5 + z^4 + z^3 + z^2 + z + 1;
s = (solve(ex, z));
% consider the second root
sroot = s(2);
product = vpa(sroot * conj(sroot))
product = 
1.0
I believe this would resolve your query.
  1 Commento
James Tursa
James Tursa il 26 Feb 2024
Modificato: James Tursa il 26 Feb 2024
Except when it doesn't. E.g., when solve() can't find explicit roots, it punts to root():
syms z
ex = 3*z^5 + z^4 + z^3 + z^2 + z + 1;
s = (solve(ex, z))
s = 
vpa(s(2)*conj(s(2)))
ans = 
So, same problem.

Accedi per commentare.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by