

2d graph. Powers of a variable.
Why do these two programs give me different outputs even though they are the same? The second one gives me a wrong graph.
x=[-5:0.01:5] a=4 y1=sqrt(a^(2/3)-(x^2)^(1/3))^3 y2=-sqrt(a^(2/3)-(x^2)^(1/3))^3 plot2d(x,y1) plot2d(x,y2)
x=[-5:0.01:5] a=4 y1=sqrt(a^(2/3)-(x^(2/3)))^3 y2=-sqrt(a^(2/3)-(x^(2/3)))^3 plot2d(x,y1) plot2d(x,y2)
Scilab


Hi Abbas, following code will clear your doubt
(-8)^(2/3) (-8^2)^(1/3) (-8^1/3)^2
18-12-17, 8:50 p.m. Abbas
18-12-17, 9 p.m. ashutumho
Login to add comment