Using solve on this example:
restart; eq:=x^3 - 3*x^2 + 3*x - 1=0; solve(eq,x);
gives solution x=1, with multiplicty 3
1, 1, 1
When using PDEtools:-Solve
restart; eq:=x^3 - 3*x^2 + 3*x - 1=0; solve(eq,x); PDEtools:-Solve(eq,x);
it gives
x = 1
How can one make it show x=1, x=1, x=1 ?
Found that only when using PDEtools:-Solve(eq,x,numeric) it gives
x = 1., x = 1., x = 1.
How to make it do the same without using numeric?
Maple 2020.1.1