将 Roots[] 的输出收集到列表中

发布于 2024-10-20 14:39:31 字数 258 浏览 1 评论 0原文

如果我执行 Roots[ax^2 + bx + c == 0, x],则输出为

x == (-b - Sqrt[b^2 - 4 ac])/ (2a)|| x == (-b + Sqrt[b^2 - 4 ac])/(2 a)

如何将 Roots 的输出收集到这样的列表 { (-b - Sqrt[b^2 - 4 ac])/(2 a), (-b + Sqrt[b^2 - 4 ac])/(2 a)} 以便我可以绘制它?

If I do Roots[a x^2 + b x + c == 0, x], the output is

x == (-b - Sqrt[b^2 - 4 a c])/(2 a) ||
x == (-b + Sqrt[b^2 - 4 a c])/(2 a)

How do I collect the output of Roots into a list like so {(-b - Sqrt[b^2 - 4 a c])/(2 a), (-b + Sqrt[b^2 - 4 a c])/(2 a)} so that I can plot it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

墨离汐 2024-10-27 14:39:31

另一种(明显?}方法:

List @@ Roots[a x^2 + b x + c == 0, x][[All, 2]]

给出

在此处输入图像描述

An alternative (obvious?} method:

List @@ Roots[a x^2 + b x + c == 0, x][[All, 2]]

giving

enter image description here

心房的律动 2024-10-27 14:39:31
x /. {ToRules[Roots[a x^2 + b x + c == 0, x]]} // Flatten

==> {(-b - Sqrt[b^2 - 4 a c])/(2 a), (-b + Sqrt[b^2 - 4 a c])/(2 a)}
x /. {ToRules[Roots[a x^2 + b x + c == 0, x]]} // Flatten

==> {(-b - Sqrt[b^2 - 4 a c])/(2 a), (-b + Sqrt[b^2 - 4 a c])/(2 a)}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文