CubeRoot[x]
给出 x 的立方根.
CubeRoot
CubeRoot[x]
给出 x 的立方根.
更多信息
- x 为实数时,CubeRoot[x] 返回实立方根.
- 对于 CubeRoot[x] 中的符号式 x,假定 x 是实数.
- CubeRoot 可以计算到任意数值精度.
- CubeRoot 自动逐项作用于列表的各个元素.
- 在 StandardForm 中,CubeRoot[x] 格式化为

- 可以通过
cbrt
输入
. - ∛z 也可用作输入. 可以通过
cbrti
或 \[CubeRoot]输入符号 ∛.
范例
打开所有单元 关闭所有单元基本范例 (5)
CubeRoot 给出实根:
CubeRoot[-27]Plot[CubeRoot[x], {x, -2, 2}]Surd[-4.5, 3]注意它与
不同, 后者是 Power[x,1/3]:
-4.5^(1/(3))ReImPlot[{x^(1/(3)), Surd[x, 3]}, {x, -4, 4}, PlotLegends -> Automatic]Series[CubeRoot[x], {x, -1, 5}]范围 (36)
数值计算 (6)
CubeRoot[128.]N[CubeRoot[18], 100]CubeRoot[0.2111111555555555555111111111111111]CubeRoot[12`100]//TimingCubeRoot[181`1000000];//TimingCubeRoot 按元素遍历列表和矩阵:
CubeRoot[{0, 1.5, 8, Infinity}]CubeRoot[(| | |
| :- | :---- |
| 1 | u |
| v | 3.375 |)]//MatrixForm或用 Around 计算一般情况下的统计区间:
CubeRoot[ Around[2 / 3, 0.001]]CubeRoot[{{1 / 2, -1}, {-5 / 3, 1 / 2}}]或用 MatrixFunction 计算矩阵形式的 CubeRoot 函数:
MatrixFunction[CubeRoot, {{1 / 2, -1}, {-5 / 3, 1 / 2}}]特殊值 (4)
在固定点的 CubeRoot 的值:
Table[CubeRoot[n ], {n, {-27, -8, -1, 1, 8, 27}}]CubeRoot[0]CubeRoot[Infinity]CubeRoot[-Infinity]用 Solve 求满足
的
值:
Solve[CubeRoot[x] == 3 / 2]xval = x /. First[%]Plot[CubeRoot[x], {x, -10, 10}, Epilog -> Style[Point[{xval, CubeRoot[xval]}], PointSize[Large], Red]]可视化 (3)
绘制 CubeRoot 的函数:
Plot[CubeRoot[x], {x, -3, 3}]AbsArgPlot[Surd[x, 3], {x, -4, 4}, PlotLegends -> Automatic]AbsArgPlot[x^(1/(3)), {x, -4, 4}, PlotLegends -> Automatic]PolarPlot[CubeRoot[ϕ], {ϕ, 0, 8π}, Frame -> True]函数属性 (9)
CubeRoot 对实数有定义:
FunctionDomain[CubeRoot[x], x]FunctionDomain[CubeRoot[x], x, Complexes]CubeRoot 的值域是全部实数:
FunctionRange[CubeRoot[x], x, y]FunctionRange[CubeRoot[x], x, y, Complexes]//Reduce通过 \[CubeRoot]输入 ∛,后面跟一个数字:
∛-1000FunctionAnalytic[Surd[``x``, 3], x]FunctionMeromorphic[Surd[``x``, 3], x]FunctionMonotonicity[Surd[``x``, 3], x]FunctionInjective[Surd[``x``, 3], x]Plot[{Surd[``x``, 3], 1}, {x, -5, 5}]FunctionSurjective[Surd[``x``, 3], x]Plot[{Surd[``x``, 3], -2}, {x, -10, 5}]FunctionSign[Surd[``x``, 3], x]FunctionContinuous[Surd[``x``, 3], x]FunctionSingularities[Surd[``x``, 3], x]Limit[(CubeRoot[h] - CubeRoot[0]/h), h -> 0]FunctionConvexity[Surd[``x``, 3], x]微分 (3)
D[CubeRoot[x], x]Table[D[CubeRoot[x], {x, k}], {k, 1, 3}]//FullSimplifyPlot[%, {x, -7, 7}, PlotLegends -> {"First Derivative", "Second Derivative", "Third Derivative"}]D[CubeRoot[x], {x, k}]// FullSimplify积分 (4)
使用 Integrate 计算不定积分:
Integrate[CubeRoot[x], x]FullSimplify[D[Integrate[CubeRoot[x], x], x] == CubeRoot[x]]FullSimplify[D[%, x] == CubeRoot[x]]Integrate[CubeRoot[x], {x, 0, 4}]CubeRoot 在对称区间上的定积分为 0:
Integrate[CubeRoot[x], {x, -4, 4}]Integrate[Exp[x]CubeRoot[x], x]//FullSimplifyIntegrate[Sin[x]CubeRoot[x], {x, 0, 5}]//FullSimplify级数展开 (4)
使用 Series 求泰勒展开:
Series[CubeRoot[x], {x, 1, 4}]terms = Normal@Table[Series[CubeRoot[x], {x, 1, m}], {m, 1, 5, 2}];
Plot[{CubeRoot[x], terms}, {x, -1, 3}]用 SeriesCoefficient 获取计算展开式的通项:
SeriesCoefficient[CubeRoot[x], {x, 1, n}]FourierSeries[CubeRoot[x], x, 1]// FullSimplifySeries[CubeRoot[x], {x, x0, 2}]// FullSimplify函数恒等式与简化 (3)
CubeRoot[x] == Surd[x, 3]乘积可以使用 FullSimplify 合并:
CubeRoot[x]CubeRoot[y] == CubeRoot[x y]CubeRoot 与整数取幂互换:
Reduce[Table[CubeRoot[x ^ n] == CubeRoot[x] ^ n, {n, 10}], Reals]应用 (1)
使用 CubeRoot 求解微分方程:
DSolve[3 x y'[x] - y[x] == 0, y[x], x]DSolve[{CubeRoot[y[x]] - y'[x] == 0, y[0] == 1}, y[x], x]//Quiet属性和关系 (5)
CubeRoot 只对实数有定义:
FunctionDomain[CubeRoot[x], x, ℂ]CubeRoot 在实数上是双射函数:
FunctionBijective[CubeRoot[x], x]用 CubeRoot 求实立方根:
CubeRoot[-8.]用 Power[x,1/3] 或
求复主立方根:
-8.^(1/(3))CubeRoot 的母函数:
GeneratingFunction[CubeRoot[n], n, x]Series[%, {x, 0, 5}]求解包含 CubeRoot 的函数的积分:
Integrate[(1 + x^3) CubeRoot[x], {x, -1, 1}]Plot[(1 + x^3) CubeRoot[x], {x, -1, 1}, Filling -> Axis, FillingStyle -> {RGBColor[0.880722, 0.611041, 0.142051, 0.5], RGBColor[0.368417, 0.506779, 0.709798, 0.5]}]相关指南
-
▪
- 初等函数 ▪
- GPU 计算 ▪
- NVIDIA GPU 计算 ▪
- Apple GPU 计算
相关链接
文本
Wolfram Research (2012),CubeRoot,Wolfram 语言函数,https://reference.wolfram.com/language/ref/CubeRoot.html (更新于 2020 年).
CMS
Wolfram 语言. 2012. "CubeRoot." Wolfram 语言与系统参考资料中心. Wolfram Research. 最新版本 2020. https://reference.wolfram.com/language/ref/CubeRoot.html.
APA
Wolfram 语言. (2012). CubeRoot. Wolfram 语言与系统参考资料中心. 追溯自 https://reference.wolfram.com/language/ref/CubeRoot.html 年
BibTeX
@misc{reference.wolfram_2026_cuberoot, author="Wolfram Research", title="{CubeRoot}", year="2020", howpublished="\url{https://reference.wolfram.com/language/ref/CubeRoot.html}", note=[Accessed: 13-September-2026]}
BibLaTeX
@online{reference.wolfram_2026_cuberoot, organization={Wolfram Research}, title={CubeRoot}, year={2020}, url={https://reference.wolfram.com/language/ref/CubeRoot.html}, note=[Accessed: 13-September-2026]}