Polynomial with Specific roots
Is there开发者_StackOverflow中文版 a way to find a polynomial having specific roots i.e., 17, 29, 33 etc. The polynomial should satisfy for all these values. Is there any programming library available to achieve this.
(x-17)(x-29)(x-33) would have the roots you mention. If you need the polynomial for evaluating it at certain points, this form should be enough. If you need all of its coefficients, your best bet is probably using a polynomial library to multiply the binomials.
精彩评论