Info

此问题已关闭。 请重新打开它进行编辑或回答。

can anyone explain this result ?

1 次查看(过去 30 天)
diadalina
diadalina 2017-10-23
关闭: MATLAB Answer Bot 2021-8-20
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?

回答(2 个)

Cam Salzberger
Cam Salzberger 2017-10-23
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 个评论
Walter Roberson
Walter Roberson 2017-10-23
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 2017-10-23
:)
>> expression= [1.0000 -1.6667 0.6667]
expression =
1.0000 -1.6667 0.6667
>> expression*3
ans =
3.0000 -5.0001 2.0001
>>
  4 个评论
diadalina
diadalina 2017-10-23
that's mean that the found roots are not exacts?
Cam Salzberger
Cam Salzberger 2017-10-23
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.

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by