I have the following code which works fine untill the second to last instruction.
(%i17) M_A;
(%o17) [500.0,-0.22*F_Bz-750.0,0.22*F_By-105.0]
(%i18) solve(M_A[2]);
rat: replaced -750.0 by -750/1 = -750.0
rat: replaced -0.22 by -11/50 = -0.22
(%o18) [F_Bz=-37500/11]
(%i19) solve(M_A[3]);
rat: replaced -105.0 by -105/1 = -105.0
rat: replaced 0.22 by 11/50 = 0.22
(%o19) [F_By=5250/11]
(%i20) F_Br : sqrt(F_By^2+F_Bz^2);
(%o20) sqrt(F_Bz^2+F_By^2)
(%i21) float(%);
(%o21) sqrt(F_Bz^2+F_By^2)
how can I obtain a numerical answer for the %i20.