hi there,
I had tried your approach, but when you store the output from the solve command, it stores the entire output as a string rather then as one or more values…
x1:=solve(0=4*x^(2)+20*x+10,x)
Returns
x=((−(√(15)+5))/(2)) or x=((√(15)-5)/(2))
If you try and separate those values using the left command (say) then you get this:
left(x=((−(√(15)+5))/(2)) or x=((√(15)-5)/(2)))
note that the entire value of X1 is within the left paranthesis…
Not sure if I'm missing something there…