Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

can anyone explain this result ?

1 Ansicht (letzte 30 Tage)
diadalina
diadalina am 23 Okt. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
i have a polynomial p = [ 3 -5 2 ]
i have calculated his roots r = roots(p) r= 1.0000 0.6667
then i wanted to obtain the expression of my polynomial i get:
expression=poly(r)
expression= 1.0000 -1.6667 0.6667
which is not my first polynomial, can anyone explain to me?

Antworten (2)

Cam Salzberger
Cam Salzberger am 23 Okt. 2017
Hello Diadalina,
According to the poly function's documenation, poly and roots are inverses, but allowing for roundoff error, ordering, and scaling. If you notice in your code, expression == p/3, which is just p scaled by its first element. It's still solves the same equation:
3*x^2 - 5*x + 2 = 0
or
x^2 - (5/3)*x + 2/3 = 0
-Cam
  1 Kommentar
Walter Roberson
Walter Roberson am 23 Okt. 2017
Note that this means that given the roots of an polynomial, you can only recreate the equation to within a non-zero constant multiple.

Andrei Bobrov
Andrei Bobrov am 23 Okt. 2017
:)
>> expression= [1.0000 -1.6667 0.6667]
expression =
1.0000 -1.6667 0.6667
>> expression*3
ans =
3.0000 -5.0001 2.0001
>>
  4 Kommentare
diadalina
diadalina am 23 Okt. 2017
that's mean that the found roots are not exacts?
Cam Salzberger
Cam Salzberger am 23 Okt. 2017
If you are asking that because there are multiple possible polynomials with the same roots, then no, they can be exact answers. If you multiple any polynomial by a constant, you will have a new polynomial. However, they will all have the same roots. So while you can't necessarily expect to get the exact same polynomial out of "poly" based solely on the original roots, you can expect to get a multiple of it (at least for vectors).
If you're asking that because the result of "expression*3" was -5.0001 instead of exactly -5, that's simply due to Andrei's example vector including -1.6667 instead of -5/3. Always bear in mind, however, that machine precision is a thing. There is no infinite accuracy, so you may run into precision errors sooner or later.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by