Hello guys! I want to solve a 4th order equation, and to find its solutions. This procedure is straightforward but, after this, I want to select only the last 2 roots, and to store them as variables, say w1 and w2.
sol1 = Solve[equ[t, x, j1] == 0, {t}, Reals];
{{t -> -0.241908}, {t -> -0.173627}, {t -> 0.173627}, {t -> 0.241908}}
If I write
w1 = sol1[[3]];
w2 = sol1[[4]];
Print[w1, w2]
I get this thing
{t->0.173627}{t->0.241908}
But I want only the numerical values, without those useless arrows and letters. HOW CAN I FIX THIS?
Thank you in advance!