有特定根的多项式
有没有办法找到具有特定根(即 17、29、33 等)的多项式。多项式应满足所有这些值。 有没有可用的编程库来实现这一点。
Is there 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(x-17)(x-29)(x-33) 将具有您提到的根。如果您需要多项式在某些点对其进行评估,这种形式应该足够了。如果您需要其所有系数,最好的选择可能是使用多项式库来乘以二项式。
(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.