#Complex number[code] [br]Z = 1 + ί[br][br]#Modulus of Z[br]r = abs(Z)[br][br]#Angle of Z[br]theta = arg(Z)[br][br]#Number of roots[br]n = Slider(2, 10, 1, 1, 150)[br][br]#Plot n-roots[br]nRoots = Sequence(r^(1 / n) * exp( ί * ( theta / n + 2 * pi * k / n ) ), k, 0, n-1)[br][br][/code]