Mathematica - 有理指数不显示根符号

Mathematica - Rational Exponent Not Showing Radical Symbol

提问人:Christopher Austin 提问时间:10/2/2023 最后编辑:NimanthaChristopher Austin 更新时间:11/1/2023 访问量:36

问:

我正在努力让 Mathematica 在计算有理指数时显示根符号。例如,“X^(-1/5)”。目前,输出仅显示带有分数指数的变量,但我正在尝试找到一种方法来使其显示根式符号。

Math Wolfram-Mathematica 代数

评论

2赞 President James K. Polk 10/2/2023
我猜你会在 Mathematica 堆栈交换网站上获得更多相关的观点和更好的答案。
0赞 Chris Degnen 10/3/2023
有显示换行的选项,但它将恢复为小数形式进行计算。查看 reference.wolfram.com/language/ref/RadicalBox.html

答:

0赞 MarkWeiss 10/2/2023 #1

我相信你可以使用 文档非常全面地介绍了如何使用它,所以我会从那里开始: https://reference.wolfram.com/language/ref/SqrtBox.htmlSqrtBox.

0赞 soegaard 10/2/2023 #2

尝试围绕你的表达式的表格。TradionalForm

https://reference.wolfram.com/language/ref/TraditionalForm.html

注意: 当 Mathematica 读取您的输入时,它会以一种通常与输入格式无关的格式将其存储在内部。在这种情况下,您想阅读更多关于“格式化输出”的信息。

https://reference.wolfram.com/language/tutorial/TextualInputAndOutput.html#12368