作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用 Sagemath 求解联立方程:
x^2 +y^2 +6z^2 = 3
6x^2 +6y^2 +z^2 = 2
x +y+z = 0
最佳答案
使用户8408080的答案more explicit :
sage: var('y,z')
sage: solve([x^2 +y^2 +6*z^2 == 3, 6*x^2 +6*y^2 +z^2 == 2,x+y+z == 0],x,y,z)
[[x == -1/70*sqrt(70) + 2/35*sqrt(35), y == 1/70*sqrt(70) + 2/35*sqrt(35), z == -4/35*sqrt(35)], [x == 1/70*sqrt(70) - 2/35*sqrt(35), y == -1/70*sqrt(70) - 2/35*sqrt(35), z == 4/35*sqrt(35)], [x == 1/70*sqrt(70) + 2/35*sqrt(35), y == -1/70*sqrt(70) + 2/35*sqrt(35), z == -4/35*sqrt(35)], [x == -1/70*sqrt(70) - 2/35*sqrt(35), y == 1/70*sqrt(70) - 2/35*sqrt(35), z == 4/35*sqrt(35)]]
关于python - SageMath 中的联立方程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54972120/
我想用 Java 应用程序求解这个方程。 看起来像这样 y*n-1 = y*n-2 + 1035 + [(n-1)^2 + (n-3)] * y y*n = y*n-1 + (n^2 * y) 所
我是一名优秀的程序员,十分优秀!