Mathematic为何不能运算负数的开3次方?

来源:百度知道 编辑:UC知道 时间:2024/05/22 05:27:25
Mathematic中给y = x^(1/3)作图,结果Mathematic只给出x大于0的情况,为何当x小于0的时候也是成立的,可为何Mathematic缺少负半轴的情况呢?
Mathematic中给y = x^(1/3)作图,结果Mathematic只给出x大于0的情况,当x小于0的时候也是成立的,可为何Mathematic缺少负半轴的情况呢?
输入的是
Plot[{y = x^(1/3)}, {x, -6, 6},
Ticks -> {{-5, -4, -3, -2, -1, 0, 1, 2, 3, 4,
5}, {-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5}}, AspectRatio -> 1/1,
AxesLabel -> {"x", "y"}, PlotRange -> {-5, 6}]
输出图片如下

9.0可以用
Plot[Surd[x, 3], {x, -1, 1}]

9.0以前的版本可以这样
realPower[x_, r_] := Sign[x]*Abs[x]^r;
Plot[realPower[x, 1/3], {x, -1, 1}]

Plot[{函数组},{参数,下限,上限},是不是下限你设置的不对呢