Hello, How can I plot exactly intersection point between rootof polynomial degree = 3 with (d): u = 10
tSol = solve(t^3 - t^2 == 10, t)
scatter(real(tSol),imag(tSol),'filled','red')
or
tSol = solve(t^3 - t^2 == 10, t)
digits(100);
plot(vpa(tSol(1)), 10, 'r*')
Thanks for reading!!!
0 Comments
Sign in to comment.