I am solving the following equation:
eqn = x^2 - 2*x + 7 == 0;
Solve[eqn, x]
The answer is:
{{x -> 1 - I Sqrt[6]}, {x -> 1 + I Sqrt[6]}}
How I can make use of the solutions?How I can assing to variable a for example the first solution and to variable b the second? Thank you