Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version
LA(x) = x - (x^3.0-1.0)/(3.0*x^2.0) 
S = solve(LA==0,x) 
n=0
for s in S: 
    a=solve(LA == s.rhs(),x)
    n=n+1
point([a[i].rhs().n().real(),a[i].rhs().n().imag()] for i in range(n))

Does this help?